# HG changeset patch # User Matt Harbison # Date 1502764008 14400 # Node ID 4f8c241b2bfa3ea6e4d8c29d3a480a05791f5c2a # Parent cf300c1ad7bfe0306ba349e672c2d04f9336e575 test-pushvars: invoke shell script hook via `sh` for Windows Invoking *.sh on Windows leads to the "what program should open this?" prompt, which stalls the test and led to the recent series of exceptions on the Windows test machine as the runner times out. diff -r cf300c1ad7bf -r 4f8c241b2bfa tests/test-pushvars.t --- a/tests/test-pushvars.t Mon Aug 14 22:20:53 2017 -0400 +++ b/tests/test-pushvars.t Mon Aug 14 22:26:48 2017 -0400 @@ -8,10 +8,9 @@ > env | egrep "^HG_USERVAR_(DEBUG|BYPASS_REVIEW)" | sort > exit 0 > EOF - $ chmod +x $TESTTMP/pretxnchangegroup.sh $ cat >> $HGRCPATH << EOF > [hooks] - > pretxnchangegroup = $TESTTMP/pretxnchangegroup.sh + > pretxnchangegroup = sh $TESTTMP/pretxnchangegroup.sh > [experimental] > bundle2-exp = true > EOF