19 lines
340 B
Bash
Executable File
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 |