3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

dotnet deps hack for test

This commit is contained in:
Yatao Li 2019-01-15 03:06:36 +09:00
parent 58e8b2b8d5
commit 43ee345f01
5 changed files with 29 additions and 5 deletions

View file

@ -89,7 +89,13 @@ fi
if [ "X${DOTNET_BINDINGS}" = "X1" ]; then
# Run .NET example
run_quiet run_non_native_binding dotnet ${Z3_BUILD_DIR}/dotnet/netcoreapp2.0/dotnet.dll
if [ "X${ASAN_BUILD}" = "X1" ]; then
# The dotnet test get stuck on ASAN
# so don't run it for now.
echo "Skipping .NET example under ASan build"
else
run_quiet run_non_native_binding dotnet ${Z3_BUILD_DIR}/dotnet/netcoreapp2.0/dotnet.dll
fi
fi
if [ "X${JAVA_BINDINGS}" = "X1" ]; then