summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>2020-05-20 23:26:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-05-24 16:00:11 (GMT)
commit4d9005ff5d1de0b4e82402320aab4ff27aa23b43 (patch)
treed76bc2579b537194f01503ca9c759817e11a0485 /t
parent06f5608c14e6972748b84649d5b8ffd335bbd209 (diff)
downloadgit-4d9005ff5d1de0b4e82402320aab4ff27aa23b43.zip
git-4d9005ff5d1de0b4e82402320aab4ff27aa23b43.tar.gz
git-4d9005ff5d1de0b4e82402320aab4ff27aa23b43.tar.bz2
bisect--helper: avoid segfault with bad syntax in `start --term-*`
06f5608c14 (bisect--helper: `bisect_start` shell function partially in C, 2019-01-02) adds a lax parser for `git bisect start` which could result in a segfault under a bad syntax call for start with custom terms. Detect if there are enough arguments left in the command line to use for --term-{old,good,new,bad} and abort with the same syntax error the original implementation will show if not. While at it, remove an unnecessary (and incomplete) check for unknown arguments and make sure to add a test to avoid regressions. Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com> Acked-by: Christian Couder <christian.couder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t6030-bisect-porcelain.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh
index 55835ee..1ebf530 100755
--- a/t/t6030-bisect-porcelain.sh
+++ b/t/t6030-bisect-porcelain.sh
@@ -858,7 +858,9 @@ test_expect_success 'bisect cannot mix terms' '
test_expect_success 'bisect terms rejects invalid terms' '
git bisect reset &&
+ test_must_fail git bisect start --term-good &&
test_must_fail git bisect start --term-good invalid..term &&
+ test_must_fail git bisect start --term-bad &&
test_must_fail git bisect terms --term-bad invalid..term &&
test_must_fail git bisect terms --term-good bad &&
test_must_fail git bisect terms --term-good old &&