summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-10-09 04:53:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-10-09 04:53:25 (GMT)
commitf491ce954b4b317b70705b1670f233f16ea36e12 (patch)
tree2c27ef96d13ada2d2d72b5fb2bf430626e8c80b8 /t
parentd98273ba77e1ab9ec755576bc86c716a97bf59d7 (diff)
parent2cd6e1d552e0f8d00c79821084f4b407a8b59f69 (diff)
downloadgit-f491ce954b4b317b70705b1670f233f16ea36e12.zip
git-f491ce954b4b317b70705b1670f233f16ea36e12.tar.gz
git-f491ce954b4b317b70705b1670f233f16ea36e12.tar.bz2
Merge branch 'hx/push-atomic-with-cert'
Hotfix to a recently added test script. * hx/push-atomic-with-cert: t5534: split stdout and stderr redirection
Diffstat (limited to 't')
-rwxr-xr-xt/t5534-push-signed.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/t/t5534-push-signed.sh b/t/t5534-push-signed.sh
index 7e928af..af0385f 100755
--- a/t/t5534-push-signed.sh
+++ b/t/t5534-push-signed.sh
@@ -282,10 +282,9 @@ test_expect_success GPG 'failed atomic push does not execute GPG' '
EOF
test_must_fail env PATH="$TRASH_DIRECTORY:$PATH" git push \
--signed --atomic --porcelain \
- dst noop ff noff >out 2>&1 &&
+ dst noop ff noff >out 2>err &&
- test_i18ngrep ! "gpg failed to sign" out &&
- sed -n -e "/^To dst/,$ p" out >actual &&
+ test_i18ngrep ! "gpg failed to sign" err &&
cat >expect <<-EOF &&
To dst
= refs/heads/noop:refs/heads/noop [up to date]
@@ -293,7 +292,7 @@ test_expect_success GPG 'failed atomic push does not execute GPG' '
! refs/heads/noff:refs/heads/noff [rejected] (non-fast-forward)
Done
EOF
- test_i18ncmp expect actual
+ test_cmp expect out
'
test_done