]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4062-diff-pickaxe.sh
The third batch
[thirdparty/git.git] / t / t4062-diff-pickaxe.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2016 Johannes Schindelin
4 #
5
6 test_description='Pickaxe options'
7
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./test-lib.sh
10
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"
17 '
18
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)"
23 '
24
25 test_expect_success '-S --pickaxe-regex' '
26 git diff --name-only -S0 --pickaxe-regex HEAD^ >out &&
27 test 4096-zeroes.txt = "$(cat out)"
28 '
29
30 test_done