mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 10:23:50 +01:00
cb4a94da7d
* updated for travis OSX + Ubuntu. Simplified setup * more robust script for test
17 lines
321 B
Bash
Executable File
17 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -v
|
|
|
|
# test_execs=`find ./test_* -perm /u=x`
|
|
test_execs=`find ./test_* -perm -u+x -type f`
|
|
|
|
echo "Tests to run: $test_execs"
|
|
while read -r testsuite; do
|
|
./"$testsuite"
|
|
if [ "$?" -ne 0 ]; then
|
|
echo "Aborting. \"$testsuite\" had failing test(s)"
|
|
exit 1
|
|
fi
|
|
done <<< "$test_execs"
|
|
|