Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

prevent vstest discovery engine locking DLLs

Tags:

I have some C# unit tests for a VS2012 project which calls a VS2010 c++ DLL using DllImport pinvoke.

As a pre-build event for the test project, I copy the latest version of the DLL to the binary project for the test.

This repeatedly fails if vstest.discoveryengine is running. It appears that the 'discovery engine' is loading the tests and holding the lock on the DLL.

If I kill vstest discovery engine, then I can build and run the tests. otherwise the build fails, and VS2012 offers to run a previous version ( with a model dialog which doesn't have a 'don't show this message again' option)

Is there something I can do to either force the test project to unload the DLL when not actually running the tests, or to disable the background discovery executable?

I've hacked a workaround by creating an executable called Kealakekua which kills vstest.discoveryengine.x86, vstest.executionengine.x86, and with that as the first part of the pre-build event it can copy the files and build, but would prefer not to be fighting visual studio for my file.

like image 549
Pete Kirkham Avatar asked May 22 '13 16:05

Pete Kirkham


1 Answers

I recently also had this issue and the problem was caused by my own user code.

During test discovery all the test classes are instantiated and in one of our test class constructors, a quite complex business classes was initialized. The problem is that during initialization of it a background thread was created, that did the following:

socket.Read(...)

This thread kept running forever waiting for some socket data to arrive and as a result locked our assembly.

So the solution for me was to make sure this code won't get called during test discovery.

You can check, if you are affected by this issue, by attaching Visual Studio to the test discovery engine when it has locked some assembly. After pressing pause you normally will see, that the current executing line is somewhere in your own user code (also check the Threads window).

like image 123
paiden Avatar answered Sep 27 '22 21:09

paiden