diff options
author | Brandon Casey <drafnel@gmail.com> | 2010-09-10 11:13:38 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-10 09:30:14 -0700 |
commit | 99f55ebc6757ec8777627142e7f8e1dc50f68d2c (patch) | |
tree | 91e8be65b408eae61e60009b47399c0f40adaf91 /t/t4018-diff-funcname.sh | |
parent | 8ac8cf5bc17ef11a9c5d51ab128ad010cb37c464 (diff) | |
download | git-99f55ebc6757ec8777627142e7f8e1dc50f68d2c.tar.gz |
t/t4018: avoid two unnecessary sub-shell invocations
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018-diff-funcname.sh')
-rwxr-xr-x | t/t4018-diff-funcname.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t4018-diff-funcname.sh b/t/t4018-diff-funcname.sh index 620cd02798..c8e19372b0 100755 --- a/t/t4018-diff-funcname.sh +++ b/t/t4018-diff-funcname.sh @@ -37,13 +37,13 @@ for p in $builtin_patterns do test_expect_success "builtin $p pattern compiles" ' echo "*.java diff=$p" > .gitattributes && - ! ( git diff --no-index Beer.java Beer-correct.java 2>&1 | - grep "fatal" > /dev/null ) + ! { git diff --no-index Beer.java Beer-correct.java 2>&1 | + grep "fatal" > /dev/null; } ' test_expect_success "builtin $p wordRegex pattern compiles" ' - ! ( git diff --no-index --word-diff \ + ! { git diff --no-index --word-diff \ Beer.java Beer-correct.java 2>&1 | - grep "fatal" > /dev/null ) + grep "fatal" > /dev/null; } ' done |