From 5ecff56dbf1b60b6b5c814b3450bf4ec37ed26d6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 11 Jul 2015 13:41:57 +0100 Subject: [PATCH] Test suite: Break out t-grep-mpat (nfc) --- tests/lib | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/tests/lib b/tests/lib index 7cd8062c..118c4971 100644 --- a/tests/lib +++ b/tests/lib @@ -58,6 +58,13 @@ t-expect-fail () { *) fail "tee failed" ;; esac + t-grep-mpat "$mpat" $tmp/t.output +} + +t-grep-mpat () { + local mpat="$1" + local file="$2" + local grepper=fgrep case "$mpat" in [A-Z]:*) @@ -70,8 +77,8 @@ t-expect-fail () { ;; esac - $grepper -e "$mpat" $tmp/t.output || - fail "error message not found" + $grepper -e "$mpat" "$file" || + fail "message not found" } t-expect-push-fail () { -- 2.30.2