]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5520: replace `! git` with `test_must_fail git`
authorDenton Liu <liu.denton@gmail.com>
Tue, 12 Nov 2019 23:08:16 +0000 (15:08 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 21 Nov 2019 00:41:51 +0000 (09:41 +0900)
Currently, if a git command fails in an unexpected way, such as a
segfault, it will be masked and ignored. Replace the ! with
test_must_fail so that only expected failures pass.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5520-pull.sh

index ef3dbc201ab28cc0a650cf965823f19c07de9bd0..602d996a33b74a4d877a5f31acdf452fa46e1734 100755 (executable)
@@ -537,7 +537,7 @@ test_expect_success 'pull --rebase=i' '
 test_expect_success 'pull.rebase=invalid fails' '
        git reset --hard before-preserve-rebase &&
        test_config pull.rebase invalid &&
-       ! git pull . copy
+       test_must_fail git pull . copy
 '
 
 test_expect_success '--rebase=false create a new merge commit' '
@@ -572,7 +572,7 @@ test_expect_success REBASE_P \
 
 test_expect_success '--rebase=invalid fails' '
        git reset --hard before-preserve-rebase &&
-       ! git pull --rebase=invalid . copy
+       test_must_fail git pull --rebase=invalid . copy
 '
 
 test_expect_success '--rebase overrides pull.rebase=preserve and flattens keep-merge' '