# HG changeset patch # User Matt Harbison # Date 1494125286 14400 # Node ID 98bb992bef19c4a8a70089a09ec2eb42196bd75d # Parent f41cc3dd73d6ea2e9f6963e7da5c38dab5a127a4 test-extdiff: enable a previously failing test on Windows diff -r f41cc3dd73d6 -r 98bb992bef19 tests/test-extdiff.t --- a/tests/test-extdiff.t Sat May 06 19:11:59 2017 -0400 +++ b/tests/test-extdiff.t Sat May 06 22:48:06 2017 -0400 @@ -331,11 +331,19 @@ #if execbit $ chmod +x dir/tool.sh #endif - $ tool=`pwd`/dir/tool.sh -TODO: Fix this on Windows. It currently tries to run 'tl a.* a', instead of -falling back to tool.sh -#if no-windows +Windows can't run *.sh directly, so create a shim executable that can be. +Without something executable, the next hg command will try to run `tl` instead +of $tool (and fail). +#if windows + $ cat > dir/tool.bat < @sh -c "`pwd`/dir/tool.sh %1 %2" + > EOF + $ tool=`pwd`/dir/tool.bat +#else + $ tool=`pwd`/dir/tool.sh +#endif + $ hg --debug tl --config extdiff.tl= --config merge-tools.tl.executable=$tool making snapshot of 2 files from rev * (glob) a @@ -343,11 +351,11 @@ making snapshot of 2 files from working directory a b - running '$TESTTMP/a/dir/tool.sh a.* a' in */extdiff.* (glob) + running '$TESTTMP/a/dir/tool.bat a.* a' in */extdiff.* (glob) (windows !) + running '$TESTTMP/a/dir/tool.sh a.* a' in */extdiff.* (glob) (no-windows !) ** custom diff ** cleaning up temp directory [1] -#endif $ cd ..