vote up 9 vote down star
2

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.

flag

57% accept rate

8 Answers

vote up 2 vote down

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|flag
vote up 2 vote down

I'm having the same problem. I can't believe just how crappy MS Test is compared to any other testing framework I've used.

My colleague Mike has a nice write-up on it.

link|flag
vote up 2 vote down

I also have the exact same problem and generally kill VSTestHost.exe.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

When I say lock up I mean the screen to execute tests opens, every test goes into a "pending" run status, and nothing ever happens; everything just sits in a pending mode unless I close visual studio or manually kill the VSTestHost process.

After I kill the VSTestHost process and run my batch of tests again, everything usually works as it should. Very random, usually 5-ish times a day does this happen out of about 15 or so test runs.

Still hoping to hear that someone running Visual Studio Team System Testing has experienced the same behavior...

link|flag
vote up 1 vote down

I'm having the same problem, but only when I try to debug a test, and it happens every time. Looks like I'll have to read up on WinDBG and SOS before I can do anything to fix it.

link|flag
These are my exact symptoms as well. – Nicholas Piasecki Dec 16 '08 at 20:41
vote up 1 vote down

Every 3rd run or so. It seems to happen more often if I don't rebuild the whole solution before running the tests, but I have really analyzed it rigorously.

It always hangs in the Pending state so that the Stop button in the Test Results windows is disabled, which is why I have to go kill VSTestHost. This tells me that it's "thinking really hard" in preparation for tests, not while iterating through the tests themselves.

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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