diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-06-20 14:49:44 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-20 14:49:44 -0700 |
commit | 13b70d2ad96a79fb439c6b4fc0e8058b1762bae2 (patch) | |
tree | a3f7708ea1875ace01b23cb4047ccb3cfd43cd18 /t | |
parent | plug a few coverity-spotted leaks (diff) | |
parent | t7810: avoid unportable use of "echo" (diff) | |
download | tgif-13b70d2ad96a79fb439c6b4fc0e8058b1762bae2.tar.xz |
Merge branch 'mk/grep-pcre'
* mk/grep-pcre:
t7810: avoid unportable use of "echo"
Diffstat (limited to 't')
-rwxr-xr-x | t/t7810-grep.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t7810-grep.sh b/t/t7810-grep.sh index 69bd576d1c..6379ad60bc 100755 --- a/t/t7810-grep.sh +++ b/t/t7810-grep.sh @@ -658,9 +658,9 @@ test_expect_success LIBPCRE 'grep -P -v pattern' ' ' test_expect_success LIBPCRE 'grep -P -i pattern' ' - { - echo "hello.c: printf(\"Hello world.\n\");" - } >expected && + cat >expected <<-EOF && + hello.c: printf("Hello world.\n"); + EOF git grep -P -i "PRINTF\([^\d]+\)" hello.c >actual && test_cmp expected actual ' |