From 2588af486f3810ea694e4e6ab0edeed1ff9373a8 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Tue, 6 Mar 2018 14:34:12 -0800 Subject: [PATCH] Skipping emit on Unix --- build/scripts/tests.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/scripts/tests.sh b/build/scripts/tests.sh index 56337a8b30b..5c818317c32 100755 --- a/build/scripts/tests.sh +++ b/build/scripts/tests.sh @@ -69,6 +69,11 @@ do echo Running "${runtime} ${file_name[@]}" if [[ "${runtime}" == "dotnet" ]]; then runner="dotnet exec --depsfile ${deps_json} --runtimeconfig ${runtimeconfig_json}" + if [[ "${file_name[@]}" == *'Roslyn.Compilers.CSharp.Emit.UnitTests.dll' ]] + then + echo "Skipping ${file_name[@]}" + continue + fi elif [[ "${runtime}" == "mono" ]]; then runner=mono fi -- GitLab