mo/run-tests

20 lines
241 B
Plaintext
Raw Normal View History

2015-10-02 14:46:41 +00:00
#!/usr/bin/env bash
2015-01-23 17:43:08 +00:00
cd "$(dirname "$0")" || exit 1
2015-01-23 17:43:08 +00:00
# shellcheck disable=SC1091
. ./mo
2015-01-23 17:43:08 +00:00
PASS=0
FAIL=0
2022-01-24 22:01:38 +00:00
source ./run-basic-tests
2015-01-23 17:43:08 +00:00
source ./run-meta-tests
2015-01-23 17:43:08 +00:00
echo ""
echo "Pass: $PASS"
2015-01-23 17:43:08 +00:00
echo "Fail: $FAIL"
if [[ $FAIL -gt 0 ]]; then
exit 1
fi