20 lines
338 B
Bash
Executable file
20 lines
338 B
Bash
Executable file
#!/bin/bash
|
|
|
|
failures=0
|
|
|
|
source ./localize.sh
|
|
|
|
echo "*** Running visual tests..."
|
|
python tests/visual_tests/test.py -q
|
|
failures=$((failures+$?))
|
|
|
|
echo "*** Running C++ tests..."
|
|
./tests/cpp_tests/run
|
|
failures=$((failures+$?))
|
|
echo
|
|
|
|
echo "*** Running python tests..."
|
|
python tests/run_tests.py -q
|
|
failures=$((failures+$?))
|
|
|
|
exit $failures
|