Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenton Liu <liu.denton@gmail.com>2020-07-07 09:04:37 +0300
committerJunio C Hamano <gitster@pobox.com>2020-07-07 23:07:27 +0300
commit6e7b0ea864c61288bd5276f3e3cd9250e7a3802d (patch)
treed9670f2eeffc2c96e3f3e9c989d4569bc2df58e7 /t/t9834-git-p4-file-dir-bug.sh
parentc96050ff3442067e5848501f25f44a51606f0634 (diff)
t9834: remove use of `test_might_fail p4`
The test_must_fail() family of functions (including test_might_fail()) should only be used on git commands. Replace test_might_fail() with a compound command wrapping the old p4 invocation that always returns 0. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9834-git-p4-file-dir-bug.sh')
-rwxr-xr-xt/t9834-git-p4-file-dir-bug.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9834-git-p4-file-dir-bug.sh b/t/t9834-git-p4-file-dir-bug.sh
index 031e1f8668..dac67e89d7 100755
--- a/t/t9834-git-p4-file-dir-bug.sh
+++ b/t/t9834-git-p4-file-dir-bug.sh
@@ -10,7 +10,7 @@ repository.'
test_expect_success 'start p4d' '
start_p4d &&
- test_might_fail p4 configure set submit.collision.check=0
+ { p4 configure set submit.collision.check=0 || :; }
'
test_expect_success 'init depot' '