Files
scm_breeze/run_tests.sh
2012-10-23 12:25:28 +13:00

19 lines
340 B
Bash
Executable File

#!/bin/sh
# Run SCM Breeze shUnit2 tests
failed=false
for test in $(find test/lib -name *_test.sh); do
for shell in bash zsh; do
echo "== Running tests with [$shell]: $test"
$shell $test || failed=true
done
done
if [ "$failed" = "true" ]; then
echo "Tests failed!"
return 1;
else
echo "All tests passed!"
return 0;
fi