"Johannes Schindelin via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Johannes Schindelin <johannes.schindelin@xxxxxx> > > It does not make much sense that running a test with > --stress-limit=<N> seemingly ignores that option because it does not > stress test at all. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > --- > t/test-lib.sh | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/t/test-lib.sh b/t/test-lib.sh > index 4e7cb52b57..ab7f27ec6a 100644 > --- a/t/test-lib.sh > +++ b/t/test-lib.sh > @@ -153,6 +153,7 @@ do > esac > ;; > --stress-limit=*) > + stress=t; > stress_limit=${opt#--*=} Good thinking. > case "$stress_limit" in > *[!0-9]*|0*|"")