From 3483d775fe353a566c52d357586b74473a97289e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Tue, 17 Nov 2020 17:43:05 +0100 Subject: [PATCH] [TMP] Add missing error disabling --- test/stopAfterParseTests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/stopAfterParseTests.sh b/test/stopAfterParseTests.sh index 9c9738ea9..fd18f7f46 100755 --- a/test/stopAfterParseTests.sh +++ b/test/stopAfterParseTests.sh @@ -41,7 +41,9 @@ while read -r file; do # NOTE: The command returns the name of the input file if it's not a multi-source file OUTPUT="$($SPLITSOURCES "$file")" + set +e testFile "$OUTPUT" + set -e FAILED=$? rm -r "${FILETMP:?}"/* 2> /dev/null || true