Git 2.45
[git/gitster.git] / t / t4062-diff-pickaxe.sh
bloba90b46b678ca35a6af71769149bcfa7cc2317a39
1 #!/bin/sh
3 # Copyright (c) 2016 Johannes Schindelin
6 test_description='Pickaxe options'
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./test-lib.sh
11 test_expect_success setup '
12 test_commit initial &&
13 printf "%04096d" 0 >4096-zeroes.txt &&
14 git add 4096-zeroes.txt &&
15 test_tick &&
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)"
30 test_done