Message ID | 7d0017342d4f9f81a1ec74ab02aac0d3d44d38ff.1704909216.git.me@ttaylorr.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/5] t5309: run expected-to-fail `index-pack`s with `--threads=1` | expand |
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 '
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@ttaylorr.com> --- t/t5325-reverse-index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)