up vote 17 down vote favorite
7
share [g+] share [fb]

We are using VS 2008 Team System with the automated test suite, and upon running tests the test host "randomly" locks up. I actually have to kill the VSTestHost process and re-run the tests to get something to happen, otherwise all tests sit in a "pending" state.

Has anyone experience similar behavior and know of a fix? We have 3 developers here experiencing the same behavior.

link|improve this question

62% accept rate
Did you ever find a fix for this brocc? – Burt Feb 24 '10 at 16:35
I also ran in that issue today. If VSTestHost.exe hangs with 100% try this BugFix: stackoverflow.com/questions/1417021/… – Chris U Feb 25 '10 at 12:33
It went away with a new desktop – user5289 Mar 15 '10 at 20:10
feedback

3 Answers

This may be related to an obscure bug that causes unit tests to hang unless the computer name is UPPERCASE. Crazy, I know - but I had this problem and the fix worked for me.

Bug report on MS Connect
Workaround on MS Connect
TFS Blog Article about this issue
HowTo edit the registry to change your computer name

The easiest approach is to tweak the registry. You need to edit two keys:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName

Change value ComputerName to be upper case in both keys, and restart. Tests then magically work.

link|improve this answer
WTF? That is terrible. – IainMH Jan 31 '10 at 18:11
1  
That's what we call Epic Fail :D – Stephane Feb 25 '10 at 12:39
Hmm they are both in uppercase with me, but the test still hangs :( – Zidad Mar 26 '10 at 17:17
feedback

When you say lock up, do you mean VS is actually hung, or do the tests not run?

The easiest way to track down what is going on would be to look at a dump of the hung process. If you are on Vista, just right-click on the process and choose to create a memory dump. If you are on Windows XP, and don't have the Debugging Tools for Windows installed, you can get a memory dump using ntsd.exe. You'll need the process ID, which you can get from Task Manager by adding the PID column to the Processes tab display.

Once you have that, run the following commands:

ntsd -p <PID>
.dump C:\mydump.dmp

You can then either inspect that dump using WinDBG and SOS or if you can post the dump somewhere I'd be happy to take a look at it.

In any case, you'll want to likely take two dumps about a minute apart. That way if you do things like !runaway you can see which threads are working which will help you track down why it is hanging.

One other question - are you on VS2008 SP1?

link|improve this answer
feedback

I would try running the tests from the command line using MSTest.exe. This might help isolate the problem to Visual Studio, and at least give you some method of running the tests successfully.

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.