1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Everywhere: Move tests to /home/anon/Tests

This commit is contained in:
Brian Gianforcaro 2022-03-20 11:55:50 -07:00 committed by Andreas Kling
parent 16bee0ba79
commit 95b295971d
4 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,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