X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftests%2Fdrs-push-rejects;h=13567c3f3a7b771ca235af9589fdb5f8524310aa;hb=5d8e32854c1d89e337bc606d423634a667f9b0ff;hp=640aeae6914cbe8630488b21d3e4be68ad7b3de0;hpb=9f377842120dd8d6206a3f3f2eb297b3e4907fa8;p=dgit.git diff --git a/tests/tests/drs-push-rejects b/tests/tests/drs-push-rejects index 640aeae6..13567c3f 100755 --- a/tests/tests/drs-push-rejects +++ b/tests/tests/drs-push-rejects @@ -11,20 +11,12 @@ t-worktree drs cd $p mustfail () { - local wantmsg="$1"; shift + local mpat="$1"; shift t-reporefs pre-push - set +o pipefail + + t-expect-fail "$mpat" \ git push origin "$@" 2>&1 |tee $tmp/mustfail.txt - ps="${PIPESTATUS[*]}" - set -o pipefail - case $ps in - "0 0") fail "push unexpectedly succeeded (instead of: $wantmsg)" ;; - *" 0") ;; - *) fail "tee failed" ;; - esac - if ! fgrep "$wantmsg" $tmp/mustfail.txt >/dev/null; then - fail "error message not found" - fi + t-reporefs post-push diff $tmp/show-refs.{pre,post}-push }