diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-29 11:19:36 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-29 11:19:36 +0200 |
| commit | 1bef51d87860f782f687533012167bebb43c093d (patch) | |
| tree | 3c1e8160eadd3b7e5d314d9b1759486783544531 /tests/run.sh | |
| parent | be6d819080fc6c4dccd5b7e56d1da6a1ab930d4f (diff) | |
Debug event processing
Diffstat (limited to 'tests/run.sh')
| -rwxr-xr-x | tests/run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh index 8720736..ba51e28 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -10,6 +10,7 @@ wai=$(dirname $(readlink -f "$0")) # Current script directory tests=$(find ${wai}/ -maxdepth 1 -mindepth 1 -type d) # Find tests out=$(mktemp) test_timeout=20 +abort=1 for test in ${tests} do @@ -38,7 +39,7 @@ do echo "------------- Got -------------" cat "$out"; rm "$out" - exit 1 + [ $abort -eq 1 ] && exit 1 fi # Prepare for next test |
