Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-22 20:29:13 +0300
committerJunio C Hamano <gitster@pobox.com>2017-08-22 20:29:13 +0300
commit2893137b0d967ea1a5282aeb9874aea0aa49ec8d (patch)
tree56d85046bd3efa9d13bb7cf1b65f762cd0a5ed0b /t/t4062-diff-pickaxe.sh
parent3717f91c5a1afd45b15e255d6dc38431b020f8bf (diff)
parent4c7fda8fc1d67481100b8d4e39f9ff6ff878639e (diff)
Merge branch 'rs/t4062-obsd'
Test portability fix. * rs/t4062-obsd: t4062: use less than 256 repetitions in regex
Diffstat (limited to 't/t4062-diff-pickaxe.sh')
-rwxr-xr-xt/t4062-diff-pickaxe.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/t4062-diff-pickaxe.sh b/t/t4062-diff-pickaxe.sh
index 7c4903f497..1130c8019b 100755
--- a/t/t4062-diff-pickaxe.sh
+++ b/t/t4062-diff-pickaxe.sh
@@ -14,8 +14,10 @@ test_expect_success setup '
test_tick &&
git commit -m "A 4k file"
'
+
+# OpenBSD only supports up to 255 repetitions, so repeat twice for 64*64=4096.
test_expect_success '-G matches' '
- git diff --name-only -G "^0{4096}$" HEAD^ >out &&
+ git diff --name-only -G "^(0{64}){64}$" HEAD^ >out &&
test 4096-zeroes.txt = "$(cat out)"
'