mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
20 lines
343 B
Bash
Executable File
20 lines
343 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};
|
|
failures=$((failures+$?))
|
|
done
|
|
|
|
echo "*** Running python tests..."
|
|
python tests/run_tests.py -q
|
|
failures=$((failures+$?))
|
|
|
|
exit $failures
|