mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
21 lines
338 B
Bash
Executable File
21 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
|