From 809b364958fffd5fd9e081838504c5bf304d8749 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Thu, 8 Aug 2024 20:34:09 +0200 Subject: [PATCH] Be stricter in test scripts Omitting parameters is not a good idea, but even worse if it fails mysteriously without any error messages --- test/fetch-test-deps.sh | 2 +- test/run-tests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fetch-test-deps.sh b/test/fetch-test-deps.sh index 2ea72a16..f9ec1da0 100755 --- a/test/fetch-test-deps.sh +++ b/test/fetch-test-deps.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -set -e +set -euo pipefail cd "$(dirname "$0")" diff --git a/test/run-tests.sh b/test/run-tests.sh index 8689c7ab..04be0ecb 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -set -e +set -euo pipefail cd "$(dirname "$0")"