mapnik/run_tests
2013-11-22 12:01:02 -08:00

20 lines
336 B
Bash
Executable file

#!/bin/sh
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