aboutsummaryrefslogtreecommitdiffstats
path: root/t/t9147-git-svn-include-paths.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-09-23 08:31:04 -0700
committerJunio C Hamano <gitster@pobox.com>2022-09-23 08:31:04 -0700
commit75fc96d57e1262fe4b6bf87b5887e9103bcca7fb (patch)
tree4450e029e7429879269b18f0937854211b73f719 /t/t9147-git-svn-include-paths.sh
parent4b79ee4b0cd1130ba8907029cdc5f6a1632aca26 (diff)
parent37eb90f79a97cfeb216c7afe7bb0f129edfc10e4 (diff)
downloadgit-75fc96d57e1262fe4b6bf87b5887e9103bcca7fb.tar.gz
Merge branch 'dd/retire-efgrep' into es/retire-efgrep
* dd/retire-efgrep: t: convert fgrep usage to "grep -F" t: convert egrep usage to "grep -E" t: remove \{m,n\} from BRE grep usage CodingGuidelines: allow grep -E
Diffstat (limited to 't/t9147-git-svn-include-paths.sh')
-rwxr-xr-xt/t9147-git-svn-include-paths.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t9147-git-svn-include-paths.sh b/t/t9147-git-svn-include-paths.sh
index 257fc8f2f8..63fa0b6732 100755
--- a/t/t9147-git-svn-include-paths.sh
+++ b/t/t9147-git-svn-include-paths.sh
@@ -45,7 +45,7 @@ test_expect_success 'init+fetch an SVN repository with included qqq directory' '
test_expect_success 'verify include-paths config saved by clone' '
(
cd g &&
- git config --get svn-remote.svn.include-paths | fgrep "qqq"
+ git config --get svn-remote.svn.include-paths | grep qqq
)
'
@@ -55,7 +55,7 @@ test_expect_success 'SVN-side change outside of www' '
echo b >> qqq/test_qqq.txt &&
svn_cmd commit -m "SVN-side change outside of www" &&
svn_cmd up &&
- svn_cmd log -v | fgrep "SVN-side change outside of www"
+ svn_cmd log -v | grep "SVN-side change outside of www"
)
'
@@ -87,7 +87,7 @@ test_expect_success 'SVN-side change inside of ignored www' '
echo zaq >> www/test_www.txt &&
svn_cmd commit -m "SVN-side change inside of www/test_www.txt" &&
svn_cmd up &&
- svn_cmd log -v | fgrep "SVN-side change inside of www/test_www.txt"
+ svn_cmd log -v | grep "SVN-side change inside of www/test_www.txt"
)
'
@@ -120,7 +120,7 @@ test_expect_success 'SVN-side change in and out of included qqq' '
echo ygg >> qqq/test_qqq.txt &&
svn_cmd commit -m "SVN-side change in and out of ignored www" &&
svn_cmd up &&
- svn_cmd log -v | fgrep "SVN-side change in and out of ignored www"
+ svn_cmd log -v | grep "SVN-side change in and out of ignored www"
)
'