Skip to content
Snippets Groups Projects
Commit 901277dd authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #3073 from jtattermusch/appdomain_unloaded_exception

Prevent occasional AppDomainUnloadedException from nunit
parents 9a26584b 940caa2d
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ cd /d %~dp0\..\..\src\csharp ...@@ -8,7 +8,7 @@ cd /d %~dp0\..\..\src\csharp
@rem set UUID variable to a random GUID, we will use it to put TestResults.xml to a dedicated directory, so that parallel test runs don't collide @rem set UUID variable to a random GUID, we will use it to put TestResults.xml to a dedicated directory, so that parallel test runs don't collide
for /F %%i in ('powershell -Command "[guid]::NewGuid().ToString()"') do (set UUID=%%i) for /F %%i in ('powershell -Command "[guid]::NewGuid().ToString()"') do (set UUID=%%i)
packages\NUnit.Runners.2.6.4\tools\nunit-console-x86.exe -labels "%1/bin/Debug/%1.dll" -work test-results/%UUID% || goto :error packages\NUnit.Runners.2.6.4\tools\nunit-console-x86.exe /domain:None -labels "%1/bin/Debug/%1.dll" -work test-results/%UUID% || goto :error
endlocal endlocal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment