Re: [PATCH 3/3] ls-tree: disable negative pathspec because it's not supported
From: Junio C Hamano <hidden>
Date: 2016-06-15 23:03:09
Nguyễn Thái Ngọc Duy [off-list ref] writes:
Signed-off-by: Nguyễn Thái Ngọc Duy <redacted>
Hmph, that's sad. Should the below say "test_expect_failure" without "test_must_fail", anticipating a fix later? t/t3102-ls-tree-wildcards.sh | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/t/t3102-ls-tree-wildcards.sh b/t/t3102-ls-tree-wildcards.sh
index 83fca8d..93127a0 100755
--- a/t/t3102-ls-tree-wildcards.sh
+++ b/t/t3102-ls-tree-wildcards.sh@@ -27,4 +27,8 @@ EOF test_cmp expected actual ' +test_expect_success 'ls-tree rejects negated pathspec' ' + test_must_fail git ls-tree -r HEAD ":(exclude)a" "a*" +' + test_done