##// 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 $ hg init a
1 $ hg init a
4 $ hg clone a b
2 $ hg clone a b
5 updating to branch default
3 updating to branch default
@@ -24,9 +22,15 b''
24 $ SOMETHING=foo hg paths
22 $ SOMETHING=foo hg paths
25 dupe = $TESTTMP/b (glob)
23 dupe = $TESTTMP/b (glob)
26 expand = $TESTTMP/a/foo/bar (glob)
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 $ SOMETHING=/foo hg paths
30 $ SOMETHING=/foo hg paths
28 dupe = $TESTTMP/b (glob)
31 dupe = $TESTTMP/b (glob)
29 expand = /foo/bar
32 expand = /foo/bar
33 #endif
30 $ hg paths -q
34 $ hg paths -q
31 dupe
35 dupe
32 expand
36 expand
General Comments 0
You need to be logged in to leave comments. Login now