21 lines
357 B
Bash
Executable file
21 lines
357 B
Bash
Executable file
#!/bin/sh
|
|
|
|
failures=0
|
|
|
|
echo "*** Running visual tests..."
|
|
python tests/visual_tests/test.py -q
|
|
failures=$((failures+$?))
|
|
|
|
echo "*** Running C++ tests..."
|
|
for FILE in tests/cpp_tests/*-bin; do
|
|
${FILE} -q -d .;
|
|
failures=$((failures+$?))
|
|
done
|
|
|
|
echo
|
|
|
|
echo "*** Running python tests..."
|
|
python tests/run_tests.py -q
|
|
failures=$((failures+$?))
|
|
|
|
exit $failures
|