12 lines
142 B
Bash
Executable file
12 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
|