summaryrefslogtreecommitdiff
path: root/tests/test-paths.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-paths.t')
-rw-r--r--tests/test-paths.t23
1 files changed, 8 insertions, 15 deletions
diff --git a/tests/test-paths.t b/tests/test-paths.t
index 99a45aa..d97554a 100644
--- a/tests/test-paths.t
+++ b/tests/test-paths.t
@@ -7,35 +7,29 @@
$ echo 'dupe = ../b' >> .hg/hgrc
$ echo 'expand = $SOMETHING/bar' >> .hg/hgrc
$ hg in dupe
- comparing with $TESTTMP/b (glob)
+ comparing with $TESTTMP/b
no changes found
[1]
$ cd ..
$ hg -R a in dupe
- comparing with $TESTTMP/b (glob)
+ comparing with $TESTTMP/b
no changes found
[1]
$ cd a
$ hg paths
- dupe = $TESTTMP/b (glob)
- expand = $TESTTMP/a/$SOMETHING/bar (glob)
+ dupe = $TESTTMP/b
+ expand = $TESTTMP/a/$SOMETHING/bar
$ SOMETHING=foo hg paths
- dupe = $TESTTMP/b (glob)
- expand = $TESTTMP/a/foo/bar (glob)
-#if msys
- $ SOMETHING=//foo hg paths
- dupe = $TESTTMP/b (glob)
- expand = /foo/bar
-#else
+ dupe = $TESTTMP/b
+ expand = $TESTTMP/a/foo/bar
$ SOMETHING=/foo hg paths
- dupe = $TESTTMP/b (glob)
+ dupe = $TESTTMP/b
expand = /foo/bar
-#endif
$ hg paths -q
dupe
expand
$ hg paths dupe
- $TESTTMP/b (glob)
+ $TESTTMP/b
$ hg paths -q dupe
$ hg paths unknown
not found!
@@ -62,4 +56,3 @@
$ hg -q id
000000000000
- $ cd ..