summaryrefslogtreecommitdiff
path: root/Base/home/anon/tests/run-tests-and-shutdown.sh
blob: 5800946fffc2b9ee03e221ea54e3cff28c51e22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

echo
echo "==== Running Tests on SerenityOS ===="

run-tests --show-progress=false
fail_count=$?

echo "Failed: $fail_count" > ./test-results.log

if test $DO_SHUTDOWN_AFTER_TESTS {
    shutdown -n
}

exit $fail_count