summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lib22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/lib b/tests/lib
index 046d362..7cd8062 100644
--- a/tests/lib
+++ b/tests/lib
@@ -47,6 +47,17 @@ END
t-expect-fail () {
local mpat="$1"; shift
+ set +o pipefail
+ LC_MESSAGES=C "$@" 2>&1 | tee $tmp/t.output
+ local ps="${PIPESTATUS[*]}"
+ set -o pipefail
+
+ case $ps in
+ "0 0") fail "command unexpectedly succeeded (instead of: $mpat)" ;;
+ *" 0") ;;
+ *) fail "tee failed" ;;
+ esac
+
local grepper=fgrep
case "$mpat" in
[A-Z]:*)
@@ -59,17 +70,6 @@ t-expect-fail () {
;;
esac
- set +o pipefail
- LC_MESSAGES=C "$@" 2>&1 | tee $tmp/t.output
- local ps="${PIPESTATUS[*]}"
- set -o pipefail
-
- case $ps in
- "0 0") fail "command unexpectedly succeeded (instead of: $mpat)" ;;
- *" 0") ;;
- *) fail "tee failed" ;;
- esac
-
$grepper -e "$mpat" $tmp/t.output ||
fail "error message not found"
}