2013-11-22 22:46:05 +01:00
|
|
|
#!/bin/bash
|
2012-12-03 09:07:02 +01:00
|
|
|
|
|
|
|
failures=0
|
|
|
|
|
2013-11-22 21:01:02 +01:00
|
|
|
source ./localize.sh
|
|
|
|
|
2012-12-03 09:07:02 +01:00
|
|
|
echo "*** Running visual tests..."
|
|
|
|
python tests/visual_tests/test.py -q
|
|
|
|
failures=$((failures+$?))
|
|
|
|
|
|
|
|
echo "*** Running C++ tests..."
|
2013-11-22 21:01:02 +01:00
|
|
|
./tests/cpp_tests/run
|
|
|
|
failures=$((failures+$?))
|
2013-05-25 02:22:28 +02:00
|
|
|
echo
|
|
|
|
|
2012-12-03 09:07:02 +01:00
|
|
|
echo "*** Running python tests..."
|
|
|
|
python tests/run_tests.py -q
|
|
|
|
failures=$((failures+$?))
|
|
|
|
|
|
|
|
exit $failures
|