1
0
mirror of https://github.com/git/git synced 2024-07-07 19:39:27 +00:00

t9141: use test_path_is_missing()

The test_must_fail() function should only be used for git commands since
we assume that external commands work sanely. Since, not only should
these directories not exist, but there shouldn't exist _any_ filesystem
entity in these paths, replace `test_must_fail test -d` with
`test_path_is_missing`.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Denton Liu 2020-04-20 04:54:42 -04:00 committed by Junio C Hamano
parent e8a5f07d51
commit 5935ae3ee9

View File

@ -90,10 +90,10 @@ test_expect_success 'Multiple branch or tag paths require -d' '
) &&
( cd svn_project &&
svn_cmd up &&
test_must_fail test -d b_one/Nope &&
test_must_fail test -d b_two/Nope &&
test_must_fail test -d tags_A/Tagless &&
test_must_fail test -d tags_B/Tagless
test_path_is_missing b_one/Nope &&
test_path_is_missing b_two/Nope &&
test_path_is_missing tags_A/Tagless &&
test_path_is_missing tags_B/Tagless
)
'