vote up 11 vote down star
4

I just added xUnit to our test project (for the Asserts, we're still using MSTest as the framework) and immediately the test runs refused to execute any of the tests. This is the error message:

Failed to queue test run '{ .... }' Test run deployment issue: The location of the file or directory '...xUnit.dll' is not trusted.

flag

In VS2008 the built in test framework simply reports "Not Executed". What a lot of help that was! – Peter Morris Feb 9 at 10:17
Jeez - whoever in MS decided that a location needed to be "trusted" just to run a fricken test needs shooting! – Calanus Mar 20 at 13:03

4 Answers

vote up 18 vote down check

It took me a few tries to find the answer in Google, so I'm putting it here in case anyone else runs into the same problem. A detailed description can be found at this blog posting.

Basically, the fix invovles right-clicking on the assembly (xunit.dll for example), going to Properties, and clicking "Unblock" at the bottom of the tab next to the 'Security' text. It seems that Vista / Windows 2008 will automatically mark assemblies that come from other machines or the internet as unsafe.

link|flag
Thank you so much!! Thank you for the time that you took to post this, you resolved my problem in < 5 minutes. – Rihan Meij May 26 at 10:03
1  
For some wierd reason I don't have the option to "UnBlock". There is no button. And I have the latest and greatest installed on my XP machine. – irperez May 27 at 20:49
vote up 4 vote down

In my team we had the same problem.

Your solution didn't work, but this post by Charles Sterling did help.

We used the following line:

caspol -machine -addgroup 1 -url file://\\server/share/* FullTrust -name DevShare
link|flag
This is not needed any more after you install .Net 3.5 SP1, as this release changes the default trust level of network shares. Until you do install 3.5SP1 this is probably the best workaround. – Bert Huijben Apr 8 at 22:55
1  
@Bert Huijben, that's correct (stackoverflow.com/questions/148879/…). But we kept having the problem even after 3.5SP1, but only when run via MSTest the error's would show up, just running the app, no problems. – Davy Landman Apr 9 at 6:56
This one totally worked for me as well. Good show! – Mike Caron Aug 14 at 16:01
vote up 2 vote down

After having this issue and burning hours trying to get "Unblock" to stick longer than a few minutes and/or figuring out caspol to no avail, I finally found a little tidbit via Google that the assemblies will be blocked again the next time you build or rebuild the project, since they're re-copied from their original source location. (I guess I never noticed that this happened before with references assemblies, but anyway...)

My fix for this was the following:

  1. Copy all the needed DLLs to another spot for safe-keeping

  2. Remove the references in Visual Studio

  3. Physically delete the DLLs in the bin folder

  4. Unblock the DLLs individually in the spot where they were copied off

  5. Add the references back in Visual Studio from the holding spot

Every subsequent build or rebuild worked fine afterward.

link|flag
vote up 0 vote down

I had the same problem with downloaded DLLs blocked by Vista. You need Administrator rights to get the "Unblock" button on the file's Properties. I simply replaced the DLLs with the latest version from source control (TFS) where I had committed them before.

link|flag

Your Answer

Get an OpenID
or

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