From 0aa39e9d295b6b692aca765b6e20e6cedc372803 Mon Sep 17 00:00:00 2001 From: moozzyk Date: Tue, 23 Feb 2016 09:30:58 -0800 Subject: [PATCH] Adding -noappdomain option to work aroun a Mono issue --- KoreBuild-dotnet/build/_xunit-test.shade | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/KoreBuild-dotnet/build/_xunit-test.shade b/KoreBuild-dotnet/build/_xunit-test.shade index 0e43836435..159ac0e810 100644 --- a/KoreBuild-dotnet/build/_xunit-test.shade +++ b/KoreBuild-dotnet/build/_xunit-test.shade @@ -37,8 +37,9 @@ configuration='' if (IsLinux) { - // Work around issue with testing in parallel on Mono. - testArgs = " -parallel none"; + // Work around issue with testing in parallel on Mono + // and issue https://github.com/xunit/xunit/issues/158 + testArgs = " -parallel none -noappdomain"; } var publishFolder = Path.Combine(projectFolder, "obj", "testPublish-" + framework);