##// END OF EJS Templates
tests: trivial fixes for Windows
Matt Harbison -
r35206:8feef8ef default
parent child Browse files
Show More
@@ -83,11 +83,12 b" However, we can't prevent it from loadin"
83 $ mkdir -p badrepo/.hg
83 $ mkdir -p badrepo/.hg
84 $ echo 'invalid-syntax' > badrepo/.hg/hgrc
84 $ echo 'invalid-syntax' > badrepo/.hg/hgrc
85 $ hg log -b -Rbadrepo default
85 $ hg log -b -Rbadrepo default
86 hg: parse error at badrepo/.hg/hgrc:1: invalid-syntax
86 hg: parse error at badrepo/.hg/hgrc:1: invalid-syntax (glob)
87 [255]
87 [255]
88
88
89 $ hg log -b --cwd=inexistent default
89 $ hg log -b --cwd=inexistent default
90 abort: No such file or directory: 'inexistent'
90 abort: No such file or directory: 'inexistent' (no-windows !)
91 abort: The system cannot find the file specified: 'inexistent' (windows !)
91 [255]
92 [255]
92
93
93 $ hg log -b '--config=ui.traceback=yes' 2>&1 | grep '^Traceback'
94 $ hg log -b '--config=ui.traceback=yes' 2>&1 | grep '^Traceback'
@@ -31,19 +31,19 b' hg status in repo root:'
31 [status.unknown|? ][status.unknown|in_root]
31 [status.unknown|? ][status.unknown|in_root]
32 HGPLAIN disables color
32 HGPLAIN disables color
33 $ HGPLAIN=1 hg status --color=debug
33 $ HGPLAIN=1 hg status --color=debug
34 ? a/1/in_a_1
34 ? a/1/in_a_1 (glob)
35 ? a/in_a
35 ? a/in_a (glob)
36 ? b/1/in_b_1
36 ? b/1/in_b_1 (glob)
37 ? b/2/in_b_2
37 ? b/2/in_b_2 (glob)
38 ? b/in_b
38 ? b/in_b (glob)
39 ? in_root
39 ? in_root
40 HGPLAINEXCEPT=color does not disable color
40 HGPLAINEXCEPT=color does not disable color
41 $ HGPLAINEXCEPT=color hg status --color=debug
41 $ HGPLAINEXCEPT=color hg status --color=debug
42 [status.unknown|? ][status.unknown|a/1/in_a_1]
42 [status.unknown|? ][status.unknown|a/1/in_a_1] (glob)
43 [status.unknown|? ][status.unknown|a/in_a]
43 [status.unknown|? ][status.unknown|a/in_a] (glob)
44 [status.unknown|? ][status.unknown|b/1/in_b_1]
44 [status.unknown|? ][status.unknown|b/1/in_b_1] (glob)
45 [status.unknown|? ][status.unknown|b/2/in_b_2]
45 [status.unknown|? ][status.unknown|b/2/in_b_2] (glob)
46 [status.unknown|? ][status.unknown|b/in_b]
46 [status.unknown|? ][status.unknown|b/in_b] (glob)
47 [status.unknown|? ][status.unknown|in_root]
47 [status.unknown|? ][status.unknown|in_root]
48
48
49 hg status with template
49 hg status with template
General Comments 0
You need to be logged in to leave comments. Login now