|
|
@ -54,7 +54,7 @@ if [ "$platform" == "linux" ] |
|
|
|
then |
|
|
|
then |
|
|
|
echo "building $language on Linux" |
|
|
|
echo "building $language on Linux" |
|
|
|
|
|
|
|
|
|
|
|
./tools/run_tests/run_tests.py --use_docker -t -l $language -c $config -x report.xml $@ || TESTS_FAILED="true" |
|
|
|
./tools/run_tests/run_tests.py --use_docker -t -l $language -c $config -x report.xml -j 3 $@ || TESTS_FAILED="true" |
|
|
|
|
|
|
|
|
|
|
|
elif [ "$platform" == "windows" ] |
|
|
|
elif [ "$platform" == "windows" ] |
|
|
|
then |
|
|
|
then |
|
|
@ -63,19 +63,19 @@ then |
|
|
|
# Prevent msbuild from picking up "platform" env variable, which would break the build |
|
|
|
# Prevent msbuild from picking up "platform" env variable, which would break the build |
|
|
|
unset platform |
|
|
|
unset platform |
|
|
|
|
|
|
|
|
|
|
|
python tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml $@ || TESTS_FAILED="true" |
|
|
|
python tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml -j 3 $@ || TESTS_FAILED="true" |
|
|
|
|
|
|
|
|
|
|
|
elif [ "$platform" == "macos" ] |
|
|
|
elif [ "$platform" == "macos" ] |
|
|
|
then |
|
|
|
then |
|
|
|
echo "building $language on MacOS" |
|
|
|
echo "building $language on MacOS" |
|
|
|
|
|
|
|
|
|
|
|
./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml $@ || TESTS_FAILED="true" |
|
|
|
./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml -j 3 $@ || TESTS_FAILED="true" |
|
|
|
|
|
|
|
|
|
|
|
elif [ "$platform" == "freebsd" ] |
|
|
|
elif [ "$platform" == "freebsd" ] |
|
|
|
then |
|
|
|
then |
|
|
|
echo "building $language on FreeBSD" |
|
|
|
echo "building $language on FreeBSD" |
|
|
|
|
|
|
|
|
|
|
|
MAKE=gmake ./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml $@ || TESTS_FAILED="true" |
|
|
|
MAKE=gmake ./tools/run_tests/run_tests.py -t -l $language -c $config -x report.xml -j 3 $@ || TESTS_FAILED="true" |
|
|
|
|
|
|
|
|
|
|
|
else |
|
|
|
else |
|
|
|
echo "Unknown platform $platform" |
|
|
|
echo "Unknown platform $platform" |
|
|
|