diff --git a/build/scripts/tests.sh b/build/scripts/tests.sh index ee33e360fe7027f56bb36a4cc0062e031ac51cf0..14e5066bac5e5550c4b699f5a44a6ed789497c1f 100755 --- a/build/scripts/tests.sh +++ b/build/scripts/tests.sh @@ -66,6 +66,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 if [[ "${file_name[@]}" == *'Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.dll' || "${file_name[@]}" == *'Roslyn.Compilers.CompilerServer.UnitTests.dll' || "${file_name[@]}" == *'Roslyn.Compilers.CSharp.Emit.UnitTests.dll' ]]