mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
13 lines
142 B
Bash
Executable File
13 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
failures=0
|
|
|
|
source ./localize.sh
|
|
|
|
echo "*** Running C++ tests..."
|
|
./tests/cxx/run
|
|
failures=$((failures+$?))
|
|
echo
|
|
|
|
exit $failures
|