提交 2588af48 编写于 作者: J Jared Parsons 提交者: Tomas Matousek

Skipping emit on Unix

上级 dd547e3c
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册