Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-03-24 23:07:35 +0300
committerJunio C Hamano <gitster@pobox.com>2017-03-24 23:07:35 +0300
commit0efeb5ca12f070ca3a8cec48761af863e9a7f6fe (patch)
treefa2c09fec0d3ffadedf45fe037902028ee8905f9 /t
parent6756b58ebc213a786adaccf3f0f07c56c8a2744a (diff)
parentf53c5de29cec68e3294a008052251631eaffcf07 (diff)
Merge branch 'js/regexec-buf'
Fix for potential segv introduced in v2.11.0 and later (also v2.10.2). * js/regexec-buf: pickaxe: fix segfault with '-S<...> --pickaxe-regex'
Diffstat (limited to 't')
-rwxr-xr-xt/t4062-diff-pickaxe.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t4062-diff-pickaxe.sh b/t/t4062-diff-pickaxe.sh
index f0bf50bda7..7c4903f497 100755
--- a/t/t4062-diff-pickaxe.sh
+++ b/t/t4062-diff-pickaxe.sh
@@ -19,4 +19,9 @@ test_expect_success '-G matches' '
test 4096-zeroes.txt = "$(cat out)"
'
+test_expect_success '-S --pickaxe-regex' '
+ git diff --name-only -S0 --pickaxe-regex HEAD^ >out &&
+ verbose test 4096-zeroes.txt = "$(cat out)"
+'
+
test_done