I have been having some problems with the test debugger in VS10. All tests are running without error, but when debugging it aborts itself when I try to read the object data. Afterwards this error is displayed in the summary: Test host process exited unexpectedly.

I'm not able to see anymore details about the error. How do I access/generate test-log files?

OR even better... Has anyone experienced a simular problem? and found a solution...?

Additional information:

The runtime-test-data is available on objects from same libary assemblie, it's just one class I can't get access to in runtime mode.

If I use breakpoints at:

  • every line that affects the object: - I can see the runtime-data and the test passes
  • only one place: - the test will abort and no data is visible
  • no breakpoints: - the test runs and passes.

The test used to work fine until reasonly. Just before the problem accoured I made some solution changes, with dividing the projects into solution folders. I didn't make any changes that should effect the code. Moving the projects back to their original placed don't solve the problem, So i'm thinking this might be a visual studio bug?

This is what I've tried so far:

Rebuildning and cleaning the solution. closing visual studio + reboot system installed VS10 Service Pack 1 reinstalled Visual Studio 10 tested on VS10 Ultimate and Premium Removing and regenerating solutions files Removing all break points TraceAndTestImpact/Local.testsettings: Test Timeout > timeout and abort set to 30 minuts. TraceAndTestImpact/Local.testsettings: Unit Test >assemblie folders defined TraceAndTestImpact/Local.testsettings: Deployment > Enable deplyment - directories and files

ANY suggestions are welcome!

Thanks for your time :)

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

What's most likely happening here is that a property, local which is being evaluated in the locals or autos window is causing a side effect in the running process which leads to the failure. To verify this you should turn off automatic property evaluation

  • Tools -> Options
  • Go to the Debugger menu
  • Uncheck "Enable Property evaluation and other implicit function calls"
link|improve this answer
Thanks! That certainly stops the error from accouring. :) But it makes it impossible for me to debug the test, since I can't see any data. – Tinia Jul 26 '11 at 16:23
@Tinia, you can still debug here by explicitly evaluating the properties / functions which you need in the watch window. Simply type in the expression you care about and it will evaluate – JaredPar Jul 26 '11 at 16:24
The class in question is a class only containing data and data objects, no functions should be called to see the properties. Do you have eny suggestions to how I can locate this side-effect? – Tinia Jul 26 '11 at 16:27
2  
The check box I had you disable will both auto execute properties and custom .ToString methods. There's no automatic way to figure out what's going on here. It basically comes down to evaluating them one at a time and seeing which one causes the problem. – JaredPar Jul 26 '11 at 16:28
1  
And this is why debugger devs generally consider func eval evil: blogs.msdn.com/b/jmstall/archive/2005/03/23/400794.aspx I'm sure it drives them crazy to have to implement functionality in the debugger that can cause the process to become unstable (a reverse heisenbug?) – Michael Burr Jul 26 '11 at 18:37
show 1 more comment
feedback

Solution: It had overridden ToString, and as it showed out, there was a loop i forgot to close. After altering ToSting everything works fine.

Thank you very much for the answers :)

link|improve this answer
feedback

I was getting a similar issue, however in my case ALL tests were being skipped, and the error was reproducible on an empty test project, so code was ruled out.

Checking the EventViewer led me to the cause in my case; somehow the C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\QTAgent32.exe.config file had been removed from my machine?!? I copied one from another machine here and I'm back in action.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.