Message ID | fd79ade3527e6be6b97f07d798a0ea38507f24c0.1587372771.git.liu.denton@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | t: replace incorrect test_must_fail usage (part 4) | expand |
Am 20.04.20 um 10:54 schrieb Denton Liu: > --- a/t/t7508-status.sh > +++ b/t/t7508-status.sh > @@ -1471,7 +1471,7 @@ test_expect_success '"status.branch=true" same as "-b"' ' > test_expect_success '"status.branch=true" different from "--no-branch"' ' > git status -s --no-branch >expected_nobranch && > git -c status.branch=true status -s >actual && > - test_must_fail test_cmp expected_nobranch actual > + ! test_cmp expected_nobranch actual > ' Not your fault, but this is, of course, a very weak test case. Check that some output that the program generates is _not_ equal to something else? That condition should be very easy to satisfy. -- Hannes
diff --git a/t/t7508-status.sh b/t/t7508-status.sh index 482ce3510e..8e969f3e36 100755 --- a/t/t7508-status.sh +++ b/t/t7508-status.sh @@ -1471,7 +1471,7 @@ test_expect_success '"status.branch=true" same as "-b"' ' test_expect_success '"status.branch=true" different from "--no-branch"' ' git status -s --no-branch >expected_nobranch && git -c status.branch=true status -s >actual && - test_must_fail test_cmp expected_nobranch actual + ! test_cmp expected_nobranch actual ' test_expect_success '"status.branch=true" weaker than "--no-branch"' '
The test_must_fail function should only be used for git commands since we assume that external commands work sanely. Since test_cmp() just wraps an external command, replace `test_must_fail test_cmp` with `! test_cmp`. Signed-off-by: Denton Liu <liu.denton@gmail.com> --- t/t7508-status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)