]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t4051-diff-function-context: read the right file
authorSZEDER Gábor <szeder.dev@gmail.com>
Wed, 22 Aug 2018 12:44:37 +0000 (14:44 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Aug 2018 16:14:24 +0000 (09:14 -0700)
The test ' context does not include preceding empty lines' in the
block of tests 'change with long common tail and no context' in
't4051-diff-function-context.sh' tries to read the file
'long_common_tail.diff.diff', but that file doesn't exist as its name
contains one more '.diff' suffixes than necessary.

Despite this error the test still succeeded without checking what it's
supposed to, because this erroneous read is done on the line:

  test "$(first_context_line <long_common_tail.diff.diff)" != " "

which means that:

  - the command substitution hides the error, so it won't fail the
    test, and

  - the result of the command substitution is the empty string, which
    is, of course, not equal to a single space character, so the
    condition is fulfilled, and the test succeeds.

As a minimal fix, fix the name of the file to be read.

In the future we might want to reorganize this test script (1) to use
'test_cmp' instead of 'test's and command substitutions to catch
failing commands and to provide helpful error messages, and (2) to
specify what the expected result actually _is_ instead of what it
isn't.

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4051-diff-function-context.sh

index ca017255ba498c6a5d31375d58416367dfda6cc4..3df24f2ef28a3af98ed703fc2cb0fdcb35ff8a91 100755 (executable)
@@ -154,7 +154,7 @@ test_expect_success ' context does not include other functions' '
 '
 
 test_expect_success ' context does not include preceding empty lines' '
-       test "$(first_context_line <long_common_tail.diff.diff)" != " "
+       test "$(first_context_line <long_common_tail.diff)" != " "
 '
 
 test_done