t5516: drop ok=sigpipe from unreachable-want tests
We annotated our test_must_fail calls in8bf4becf0c
(add "ok=sigpipe" to test_must_fail and use it to fix flaky tests, 2015-11-27) because the abrupt hangup of the server meant that we'd sometimes fail on read() and sometimes get SIGPIPE on write(). But since143588949c
(fetch: ignore SIGPIPE during network operation, 2019-03-03), we make sure that we end up with a real die(), and our tests no longer need to work around the race. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e35b8cb8e2
commit
98024d1cb6
@ -1232,15 +1232,15 @@ do
|
||||
mk_empty shallow &&
|
||||
(
|
||||
cd shallow &&
|
||||
test_must_fail ok=sigpipe git fetch ../testrepo/.git $SHA1_3 &&
|
||||
test_must_fail ok=sigpipe git fetch ../testrepo/.git $SHA1_1 &&
|
||||
test_must_fail git fetch ../testrepo/.git $SHA1_3 &&
|
||||
test_must_fail git fetch ../testrepo/.git $SHA1_1 &&
|
||||
git --git-dir=../testrepo/.git config uploadpack.allowreachablesha1inwant true &&
|
||||
git fetch ../testrepo/.git $SHA1_1 &&
|
||||
git cat-file commit $SHA1_1 &&
|
||||
test_must_fail git cat-file commit $SHA1_2 &&
|
||||
git fetch ../testrepo/.git $SHA1_2 &&
|
||||
git cat-file commit $SHA1_2 &&
|
||||
test_must_fail ok=sigpipe git fetch ../testrepo/.git $SHA1_3
|
||||
test_must_fail git fetch ../testrepo/.git $SHA1_3
|
||||
)
|
||||
'
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user