For identical reasons as in the previous commit, apply the same treatment to expected-to-fail `index-pack` invocations in t5302 with `--threads=1`. (Note that this treatment only needs to be applied in tests which are expected to pass when built with the leak-checker enabled). Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> --- t/t5302-pack-index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t5302-pack-index.sh b/t/t5302-pack-index.sh index d88e6f1691..fdbcd80f89 100755 --- a/t/t5302-pack-index.sh +++ b/t/t5302-pack-index.sh @@ -290,7 +290,7 @@ test_expect_success 'too-large packs report the breach' ' pack=$(git pack-objects --all pack </dev/null) && sz="$(test_file_size pack-$pack.pack)" && test "$sz" -gt 20 && - test_must_fail git index-pack --max-input-size=20 pack-$pack.pack 2>err && + test_must_fail git index-pack --threads=1 --max-input-size=20 pack-$pack.pack 2>err && grep "maximum allowed size (20 bytes)" err ' -- 2.43.0.288.g906e6a084d