Skip to content

Commit c74b3cb

Browse files
andreas-schwabgitster
authored andcommitted
t7812: add missing redirects
Two tests in t7812, added in 8a59998 ("grep: stess test PCRE v2 on invalid UTF-8 data", 2019-07-26), were missing redirects, failing to actually test the produced output. Signed-off-by: Andreas Schwab <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c581e4a commit c74b3cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t7812-grep-icase-non-ascii.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep ASCII from invalid UT
7070
test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep non-ASCII from invalid UTF-8 data' '
7171
git grep -h "æ" invalid-0x80 >actual &&
7272
test_cmp expected actual &&
73-
git grep -h "(*NO_JIT)æ" invalid-0x80 &&
73+
git grep -h "(*NO_JIT)æ" invalid-0x80 >actual &&
7474
test_cmp expected actual
7575
'
7676

7777
test_expect_success GETTEXT_LOCALE,LIBPCRE2 'PCRE v2: grep non-ASCII from invalid UTF-8 data with -i' '
7878
test_might_fail git grep -hi "Æ" invalid-0x80 >actual &&
7979
test_cmp expected actual &&
80-
test_must_fail git grep -hi "(*NO_JIT)Æ" invalid-0x80 &&
80+
test_must_fail git grep -hi "(*NO_JIT)Æ" invalid-0x80 >actual &&
8181
test_cmp expected actual
8282
'
8383

0 commit comments

Comments
 (0)