]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t7519-status-fsmonitor: improve comments
authorWilliam Baker <William.Baker@microsoft.com>
Wed, 16 Oct 2019 19:35:47 +0000 (19:35 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Oct 2019 02:52:18 +0000 (11:52 +0900)
The comments for the staging/unstaging test did not accurately
describe the scenario being tested.  It is not essential that
the test files being staged/unstaged appear at the end of the
index.  All that is required is that the test files are not
flagged with CE_FSMONITOR_VALID and have a position in the
index greater than the number of entries in the index after
unstaging.

The comment for this test has been updated to be more
accurate with respect to the scenario that's being tested.

Signed-off-by: William Baker <William.Baker@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7519-status-fsmonitor.sh

index d8df99097237b970cb6643fd77bb32ef80d4ffc6..997d5fb349dfd7e5ee068d2c34b3e091f678f891 100755 (executable)
@@ -354,9 +354,11 @@ test_expect_success 'discard_index() also discards fsmonitor info' '
        test_cmp expect actual
 '
 
-# Test staging/unstaging files that appear at the end of the index.  Test
-# file names begin with 'z' so that they are sorted to the end of the index.
-test_expect_success 'status succeeds after staging/unstaging ' '
+# Test unstaging entries that:
+#  - Are not flagged with CE_FSMONITOR_VALID
+#  - Have a position in the index >= the number of entries present in the index
+#    after unstaging.
+test_expect_success 'status succeeds after staging/unstaging' '
        test_create_repo fsmonitor-stage-unstage &&
        (
                cd fsmonitor-stage-unstage &&