##// END OF EJS Templates
test-paths.t: enable for Windows using #if...
Adrian Buehlmann -
r16843:61f3ca8e default
parent child Browse files
Show More
@@ -1,5 +1,3 b''
1 $ "$TESTDIR/hghave" no-msys || exit 80 # MSYS will translate /foo/bar as if it was a real file path
2
3 1 $ hg init a
4 2 $ hg clone a b
5 3 updating to branch default
@@ -24,9 +22,15 b''
24 22 $ SOMETHING=foo hg paths
25 23 dupe = $TESTTMP/b (glob)
26 24 expand = $TESTTMP/a/foo/bar (glob)
25 #if msys
26 $ SOMETHING=//foo hg paths
27 dupe = $TESTTMP/b (glob)
28 expand = /foo/bar
29 #else
27 30 $ SOMETHING=/foo hg paths
28 31 dupe = $TESTTMP/b (glob)
29 32 expand = /foo/bar
33 #endif
30 34 $ hg paths -q
31 35 dupe
32 36 expand
General Comments 0
You need to be logged in to leave comments. Login now