# HG changeset patch # User Adrian Buehlmann # Date 1339779376 -7200 # Node ID d2fe9aaedcaf46ca6e90969c03e6edb946117925 # Parent cdbb53a640c11262f5cd2f535cba5f4e8b99b494 test-clone-pull-corruption: adapt for Windows diff -r cdbb53a640c1 -r d2fe9aaedcaf tests/test-clone-pull-corruption.t --- a/tests/test-clone-pull-corruption.t Fri Jun 15 15:10:19 2012 +0200 +++ b/tests/test-clone-pull-corruption.t Fri Jun 15 18:56:16 2012 +0200 @@ -1,5 +1,3 @@ - $ "$TESTDIR/hghave" system-sh || exit 80 - Corrupt an hg repo with a pull started during an aborted commit Create two repos, so that one of them can pull from the other one. @@ -17,8 +15,8 @@ Add a hook to wait 5 seconds and then abort the commit $ cd ../corrupted - $ echo '[hooks]' >> .hg/hgrc - $ echo 'pretxncommit = sleep 5; exit 1' >> .hg/hgrc + $ echo "[hooks]" >> .hg/hgrc + $ echo "pretxncommit = sh -c 'sleep 5; exit 1'" >> .hg/hgrc start a commit...