summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2010-09-10 16:13:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-09-10 16:30:14 (GMT)
commit99f55ebc6757ec8777627142e7f8e1dc50f68d2c (patch)
tree91e8be65b408eae61e60009b47399c0f40adaf91 /t
parent8ac8cf5bc17ef11a9c5d51ab128ad010cb37c464 (diff)
downloadgit-99f55ebc6757ec8777627142e7f8e1dc50f68d2c.zip
git-99f55ebc6757ec8777627142e7f8e1dc50f68d2c.tar.gz
git-99f55ebc6757ec8777627142e7f8e1dc50f68d2c.tar.bz2
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')
-rwxr-xr-xt/t4018-diff-funcname.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t4018-diff-funcname.sh b/t/t4018-diff-funcname.sh
index 620cd02..c8e1937 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