]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4062-diff-pickaxe.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t4062-diff-pickaxe.sh
CommitLineData
db5dfa33
JS
1#!/bin/sh
2#
3# Copyright (c) 2016 Johannes Schindelin
4#
5
6test_description='Pickaxe options'
7
8. ./test-lib.sh
9
10test_expect_success setup '
11 test_commit initial &&
12 printf "%04096d" 0 >4096-zeroes.txt &&
13 git add 4096-zeroes.txt &&
14 test_tick &&
15 git commit -m "A 4k file"
16'
4c7fda8f
RS
17
18# OpenBSD only supports up to 255 repetitions, so repeat twice for 64*64=4096.
b7d36ffc 19test_expect_success '-G matches' '
4c7fda8f 20 git diff --name-only -G "^(0{64}){64}$" HEAD^ >out &&
db5dfa33
JS
21 test 4096-zeroes.txt = "$(cat out)"
22'
23
f53c5de2
SG
24test_expect_success '-S --pickaxe-regex' '
25 git diff --name-only -S0 --pickaxe-regex HEAD^ >out &&
26 verbose test 4096-zeroes.txt = "$(cat out)"
27'
28
db5dfa33 29test_done