Change run_wml_tests failure exit code from 1 to 2

xvfb-run returns 1 when it fails, so this way we can differentiate.
This commit is contained in:
Alexander van Gessel 2014-06-17 23:40:41 +02:00
parent 1536aa1021
commit 3fe799a091

View file

@ -295,7 +295,7 @@ if [ "$AllPassed" -eq 0 ]; then
fi
echo "Not all tests gave the correct result."
echo "Check errors.log for error reports."
exit 1
exit 2
else
echo "All tests gave the correct result."
exit 0