[PATCH 1 of 2 STABLE] test-bundle2-exchange: make hooks compatible with Windows

Matt Harbison mharbison72 at gmail.com
Sun Apr 26 19:19:30 UTC 2015


# HG changeset patch
# User Matt Harbison <matt_harbison at yahoo.com>
# Date 1430075409 14400
#      Sun Apr 26 15:10:09 2015 -0400
# Branch stable
# Node ID a56be8be80625bdef140c7cf4f0cce77ad5a9ec3
# Parent  8e43965a82153d2327e345d5694aa3465ed7057a
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 @@
   > [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 @@
 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


More information about the Mercurial-devel mailing list