Comments
Sort by recent activity
Yes, I did a new snapshot after vstest.executionengine.x86.exe. But it didn't appear in the drop-down list. / comments
Yes, I did a new snapshot after vstest.executionengine.x86.exe. But it didn't appear in the drop-down list.
I have already did this. But for some reason Profile does not make this. It does not show memory increase on the graphic. Does it mean that it still profiles the other process? / comments
I have already did this. But for some reason Profile does not make this. It does not show memory increase on the graphic. Does it mean that it still profiles the other process?
Oh, I see. I have to press "Take memory snapshot" before drop-down will appear. Sadly it shows only vstest.discoveryengine.x86.exe. This process is used to discover which tests are there in assemblies. Then the vstest.executionengine.x86.exe is started as a child process of vstest.console.exe (It appears as a child in Process Explorer). But it does not shown in drop-down. / comments
Oh, I see. I have to press "Take memory snapshot" before drop-down will appear. Sadly it shows only vstest.discoveryengine.x86.exe. This process is used to discover which tests are there in assembl...
This doesn't work because vstest.console starts child process vstest.executeengine.exe that runs the tests. But memory profile just profiles the vstest.console and not the vstest.executeengine. Mstest runs the tests itself. / comments
This doesn't work because vstest.console starts child process vstest.executeengine.exe that runs the tests. But memory profile just profiles the vstest.console and not the vstest.executeengine. Mst...
If you measure the time that it takes to new the data context, you will see that it takes longer on the first time. Following creations of data context will take much less time. That is because Entity Framework caches the database model that is being build on the first time you create data context. / comments
If you measure the time that it takes to new the data context, you will see that it takes longer on the first time. Following creations of data context will take much less time. That is because Ent...