Thread (3 messages) flat view 3 messages, 3 authors, 2018-08-01

Re: [PATCH 1/1] Add the `p4-pre-submit` hook

From: Junio C Hamano <hidden>
Date: 2018-07-31 14:40:41
Subsystem: the rest · Maintainer: Linus Torvalds

Possibly related (same subject, not in this thread)

Luke Diamand [off-list ref] writes:
I think there is an error in the test harness.

On 31 July 2018 at 10:46, SZEDER Gábor [off-list ref] wrote:
quoted
quoted
+             test_must_fail git-p4 submit --dry-run >errs 2>&1 &&>
+             ! grep "Would apply" err
It writes to the file "errs" but then looks for the message in "err".

Luke
Sigh. Thanks for spotting, both of you.

Here is what I'd locally squash in.  If there is anything else, I'd
rather see a refreshed final one sent by the author.

Thanks.

 t/t9800-git-p4-basic.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/t/t9800-git-p4-basic.sh b/t/t9800-git-p4-basic.sh
index 2b7baa95d2..729cd25770 100755
--- a/t/t9800-git-p4-basic.sh
+++ b/t/t9800-git-p4-basic.sh
@@ -274,19 +274,19 @@ test_expect_success 'run hook p4-pre-submit before submit' '
 		git add hello.txt &&
 		git commit -m "add hello.txt" &&
 		git config git-p4.skipSubmitEdit true &&
-		git-p4 submit --dry-run >out &&
+		git p4 submit --dry-run >out &&
 		grep "Would apply" out &&
 		mkdir -p .git/hooks &&
 		write_script .git/hooks/p4-pre-submit <<-\EOF &&
 		exit 0
 		EOF
-		git-p4 submit --dry-run >out &&
+		git p4 submit --dry-run >out &&
 		grep "Would apply" out &&
 		write_script .git/hooks/p4-pre-submit <<-\EOF &&
 		exit 1
 		EOF
-		test_must_fail git-p4 submit --dry-run >errs 2>&1 &&
-		! grep "Would apply" err
+		test_must_fail git p4 submit --dry-run >errs 2>&1 &&
+		! grep "Would apply" errs
 	)
 '
 
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help