From de69e6f6c98e92f89b4fdbb91087e85f4af7afab Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sun, 3 Mar 2019 06:44:54 -0800 Subject: tests: let --stress-limit= imply --stress It does not make much sense that running a test with --stress-limit= seemingly ignores that option because it does not stress test at all. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- t/test-lib.sh | 1 + 1 file changed, 1 insertion(+) (limited to 't/test-lib.sh') diff --git a/t/test-lib.sh b/t/test-lib.sh index 8665b0a9b6..8553c1ff87 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -158,6 +158,7 @@ do esac ;; --stress-limit=*) + stress=t; stress_limit=${opt#--*=} case "$stress_limit" in *[!0-9]*|0*|"") -- cgit v1.3-5-g9baa