You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Running all tests (check test-log.txt for details) ..."
echo > tests-log.txt; for t in $$(ls test*.sh); do echo -n "Running test $$t... "; if /bin/bash $$t >> tests-log.txt 2>&1; then echo "\033[0;32mPASSED\033[0;0m"; else echo "\033[0;31mFAILED\033[0;0m"; fi; done