Rory Primrose

Learn from my mistakes, you don't have time to make them yourself

View project on GitHub

Performance Testing a Load Test

Posted on November 9, 2011

Running a load test in Visual Studio is a great way to put your code under stress. The problem is that once you have identified that there is a potential performance issue, how do you then narrow it down to particular methods in your code base. Using a Performance Session is great for this.

The problem is that Visual Studio does not provide out of the box support for running a performance session against a load test. There is a reasonably easy workaround though. Any other profiling tool will also work using the same technique. The trick is to get the performance session to manually profile mstest.exe as it runs the load test.

The way to set this up is as follows:

  1. Set the application to profile as C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe
  2. Set the command line arguments to /testcontainer:YourLoadTest.loadtest /noisolation /noresults(replacing the filename in red with your loadtest file name)
  3. Set the working directory to the $(TargetDir) of the project that contains the load test
  4. Ensure you that you have compiled the project

image

The /noisolation switch is critical otherwise the profiler is going to profile mstest.exe as it manages the execution of the load test using different process. This means you won’t be profiling the load test, just the harness.

The /noresults switch just makes it easy to work with because otherwise you need to configure a unique results file name for each run.

When you start the profiler, it will then kick of mstest which in turn will run your load test.image

At the end of it, you then have your data.

image