For identical reasons as in the previous commit, apply the same treatment to expected-to-fail `index-pack` invocations in t5325 with `--threads=1`. Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> --- t/t5325-reverse-index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t5325-reverse-index.sh b/t/t5325-reverse-index.sh index 431a603ca0..dc3d2235e8 100755 --- a/t/t5325-reverse-index.sh +++ b/t/t5325-reverse-index.sh @@ -64,7 +64,7 @@ test_expect_success 'index-pack can verify reverse indexes' ' chmod u+w $rev && printf "xxxx" | dd of=$rev bs=1 count=4 conv=notrunc && - test_must_fail git index-pack --rev-index --verify \ + test_must_fail git index-pack --threads=1 --rev-index --verify \ $packdir/pack-$pack.pack 2>err && grep "validation error" err ' -- 2.43.0.288.g906e6a084d