diff -r 8046f0a070a6 -r 9105467b8167 tests/test-mq-qimport --- a/tests/test-mq-qimport Mon Oct 27 21:50:16 2008 +0100 +++ b/tests/test-mq-qimport Tue Oct 28 00:03:28 2008 +0100 @@ -33,7 +33,14 @@ hg diff > $HGTMP/url.diff hg revert --no-backup foo rm foo -hg qimport file://$HGTMP/url.diff +# Under unix: file:///foobar/blah +# Under windows: file:///c:/foobar/blah +patchurl=`echo $HGTMP/url.diff | tr '\\' /` +expr $patchurl : "\/" > /dev/null +if [ $? -ne 0 ]; then + patchurl='/'$patchurl +fi +hg qimport file://$patchurl hg qun echo % import patch that already exists