diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:51 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:02:51 +0900 |
commit | b3a19e060cdc81b83ab9f10dc5817deff858e0a6 (patch) | |
tree | 726b7b574eb0b498a5baa733afeab8ed35fe4b2c | |
parent | Merge branch 'rs/obsd-getcwd-workaround' into maint (diff) | |
parent | t4062: use less than 256 repetitions in regex (diff) | |
download | tgif-b3a19e060cdc81b83ab9f10dc5817deff858e0a6.tar.xz |
Merge branch 'rs/t4062-obsd' into maint
Test portability fix.
* rs/t4062-obsd:
t4062: use less than 256 repetitions in regex
-rwxr-xr-x | t/t4062-diff-pickaxe.sh | 4 |
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)" ' |