git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH 0/1] t7519-status-fsmonitor: improve comments
@ 2019-10-16 19:35 William Baker via GitGitGadget
  2019-10-16 19:35 ` [PATCH 1/1] " William Baker via GitGitGadget
  0 siblings, 1 reply; 4+ messages in thread
From: William Baker via GitGitGadget @ 2019-10-16 19:35 UTC (permalink / raw)
  To: git
  Cc: williamtbakeremail, stolee, Johannes.Schindelin, jeffhost,
	Junio C Hamano

This patch series is based on the 'wb/fsmonitor-bitmap-fix' branch and
addresses feedback on the new test that was added there. 

I've updated the comments for the new test to more accurately describe the
scenario being tested.

Thanks,

William

William Baker (1):
  t7519-status-fsmonitor: improve comments

 t/t7519-status-fsmonitor.sh | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)


base-commit: 3444ec2eb2be58c285d2bf04f39e6e9ea5eda9a2
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-404%2Fwilbaker%2Ffsmonitor_test_cleanup-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-404/wilbaker/fsmonitor_test_cleanup-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/404
-- 
gitgitgadget

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] t7519-status-fsmonitor: improve comments
  2019-10-16 19:35 [PATCH 0/1] t7519-status-fsmonitor: improve comments William Baker via GitGitGadget
@ 2019-10-16 19:35 ` William Baker via GitGitGadget
  2019-10-29 20:07   ` William Baker
  0 siblings, 1 reply; 4+ messages in thread
From: William Baker via GitGitGadget @ 2019-10-16 19:35 UTC (permalink / raw)
  To: git
  Cc: williamtbakeremail, stolee, Johannes.Schindelin, jeffhost,
	Junio C Hamano, William Baker

From: William Baker <William.Baker@microsoft.com>

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>
---
 t/t7519-status-fsmonitor.sh | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/t/t7519-status-fsmonitor.sh b/t/t7519-status-fsmonitor.sh
index d8df990972..997d5fb349 100755
--- a/t/t7519-status-fsmonitor.sh
+++ b/t/t7519-status-fsmonitor.sh
@@ -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 &&
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] t7519-status-fsmonitor: improve comments
  2019-10-16 19:35 ` [PATCH 1/1] " William Baker via GitGitGadget
@ 2019-10-29 20:07   ` William Baker
  2019-10-30  2:52     ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: William Baker @ 2019-10-29 20:07 UTC (permalink / raw)
  To: William Baker via GitGitGadget, git
  Cc: williamtbakeremail, Junio C Hamano, William Baker, stolee,
	Johannes.Schindelin, jeffhost

On 10/16/19 12:35 PM, William Baker via GitGitGadget wrote:
> From: William Baker <William.Baker@microsoft.com>
> 
> 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>
> ---
>  t/t7519-status-fsmonitor.sh | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/t/t7519-status-fsmonitor.sh b/t/t7519-status-fsmonitor.sh
> index d8df990972..997d5fb349 100755
> --- a/t/t7519-status-fsmonitor.sh
> +++ b/t/t7519-status-fsmonitor.sh
> @@ -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 &&
> 

Gentle ping on this patch.  It's just a small update to the comments
for an fsmonitor related test based on feedback I received in the
segfault fix patch series [1].

Thanks,
William

[1] https://public-inbox.org/git/3d3b290c-bc15-4bd5-e0c0-1377c9ec3ff9@gmail.com/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] t7519-status-fsmonitor: improve comments
  2019-10-29 20:07   ` William Baker
@ 2019-10-30  2:52     ` Junio C Hamano
  0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2019-10-30  2:52 UTC (permalink / raw)
  To: William Baker
  Cc: William Baker via GitGitGadget, git, William Baker, stolee,
	Johannes.Schindelin, jeffhost

William Baker <williamtbakeremail@gmail.com> writes:

> Gentle ping on this patch.  It's just a small update to the comments
> for an fsmonitor related test based on feedback I received in the
> segfault fix patch series [1].

Thanks for a reminder.  Queued.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-30  2:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-16 19:35 [PATCH 0/1] t7519-status-fsmonitor: improve comments William Baker via GitGitGadget
2019-10-16 19:35 ` [PATCH 1/1] " William Baker via GitGitGadget
2019-10-29 20:07   ` William Baker
2019-10-30  2:52     ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).