2013-11-22 22:46:05 +01:00
|
|
|
#!/bin/bash
|
2012-12-03 09:07:02 +01:00
|
|
|
|
|
|
|
failures=0
|
|
|
|
|
2013-11-22 21:01:02 +01:00
|
|
|
source ./localize.sh
|
|
|
|
|
2015-04-24 12:39:27 +02:00
|
|
|
echo "*** Running C++ tests..."
|
2014-12-08 20:52:52 +01:00
|
|
|
./tests/cxx/run
|
2012-12-03 09:07:02 +01:00
|
|
|
failures=$((failures+$?))
|
2014-12-08 20:52:52 +01:00
|
|
|
echo
|
2012-12-03 09:07:02 +01:00
|
|
|
|
|
|
|
exit $failures
|