From: Junio C Hamano Date: Tue, 22 Aug 2017 17:29:13 +0000 (-0700) Subject: Merge branch 'rs/t4062-obsd' X-Git-Tag: v2.15.0-rc0~163 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/2893137b0d967ea1a5282aeb9874aea0aa49ec8d?hp=-c Merge branch 'rs/t4062-obsd' Test portability fix. * rs/t4062-obsd: t4062: use less than 256 repetitions in regex --- 2893137b0d967ea1a5282aeb9874aea0aa49ec8d diff --combined t/t4062-diff-pickaxe.sh index 7c4903f497,9f3ce4bc69..1130c8019b --- a/t/t4062-diff-pickaxe.sh +++ b/t/t4062-diff-pickaxe.sh @@@ -14,14 -14,11 +14,16 @@@ 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)" ' +test_expect_success '-S --pickaxe-regex' ' + git diff --name-only -S0 --pickaxe-regex HEAD^ >out && + verbose test 4096-zeroes.txt = "$(cat out)" +' + test_done