3 # Copyright (c) 2016 Johannes Schindelin
6 test_description
='Pickaxe options'
8 TEST_PASSES_SANITIZE_LEAK
=true
11 test_expect_success setup
'
12 test_commit initial &&
13 printf "%04096d" 0 >4096-zeroes.txt &&
14 git add 4096-zeroes.txt &&
16 git commit -m "A 4k file"
19 # OpenBSD only supports up to 255 repetitions, so repeat twice for 64*64=4096.
20 test_expect_success
'-G matches' '
21 git diff --name-only -G "^(0{64}){64}$" HEAD^ >out &&
22 test 4096-zeroes.txt = "$(cat out)"
25 test_expect_success
'-S --pickaxe-regex' '
26 git diff --name-only -S0 --pickaxe-regex HEAD^ >out &&
27 test 4096-zeroes.txt = "$(cat out)"