# HG changeset patch # User Matt Harbison # Date 2015-04-26 19:10:09 # Node ID 263ec70769cb084ec8786378bd114e56d293b7a8 # Parent 64e3f97bdf08498768929379f10383309753e1cd test-bundle2-exchange: make hooks compatible with Windows The cmd.exe process doesn't fail the hook when "; false" is appended, and its echo command prints out the quote characters. diff --git a/tests/test-bundle2-exchange.t b/tests/test-bundle2-exchange.t --- a/tests/test-bundle2-exchange.t +++ b/tests/test-bundle2-exchange.t @@ -557,8 +557,8 @@ Doing the actual push: hook abort > [failpush] > reason = > [hooks] - > pretxnclose.failpush = echo "You shall not pass!"; false - > txnabort.failpush = echo 'Cleaning up the mess...' + > pretxnclose.failpush = sh -c "echo 'You shall not pass!'; false" + > txnabort.failpush = sh -c "echo 'Cleaning up the mess...'" > EOF $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS @@ -622,7 +622,7 @@ Doing the actual push: hook abort Check error from hook during the unbundling process itself $ cat << EOF >> $HGRCPATH - > pretxnchangegroup = echo "Fail early!"; false + > pretxnchangegroup = sh -c "echo 'Fail early!'; false" > EOF $ "$TESTDIR/killdaemons.py" $DAEMON_PIDS # reload http config $ hg -R other serve -p $HGPORT2 -d --pid-file=other.pid -E other-error.log