##// END OF EJS Templates
Update tests
Matt Mackall -
r3810:1d571ed2 default
parent child Browse files
Show More
@@ -1,72 +1,67 b''
1 1 % commit date test
2 2 abort: impossible time zone offset: 4444444
3 3 transaction abort!
4 4 rollback completed
5 abort: invalid date: '1\t15.1' see hg(1) manual page for details
6 transaction abort!
7 rollback completed
8 abort: invalid date: 'foo bar' see hg(1) manual page for details
5 abort: invalid date: '1\t15.1'
9 6 transaction abort!
10 7 rollback completed
11 abort: invalid date: ' 1 4444' see hg(1) manual page for details
8 abort: invalid date: 'foo bar'
12 9 transaction abort!
13 10 rollback completed
14 abort: date exceeds 32 bits: 111111111111
15 transaction abort!
16 rollback completed
11 nothing changed
17 12 % partial commit test
18 13 trouble committing bar!
19 14 abort: No such file or directory: .../test/bar
20 15 adding dir/file
21 16 dir/file
22 17 adding dir.file
23 18 abort: no match under directory .../test/dir!
24 19 abort: no match under directory .../test/bleh!
25 20 abort: no match under directory .../test/dir2!
26 21 dir/file
27 22 does-not-exist: No such file or directory
28 23 abort: file .../test/does-not-exist not found!
29 24 baz: unsupported file type (type is symbolic link)
30 25 abort: can't commit .../test/baz: unsupported file type!
31 26 abort: file .../test/quux not tracked!
32 27 dir/file
33 28 % partial subdir commit test
34 29 adding bar/bar
35 30 adding foo/foo
36 31 % subdir log 1
37 32 changeset: 0:6ef3cb06bb80
38 33 user: test
39 34 date: Mon Jan 12 13:46:40 1970 +0000
40 35 files: foo/foo
41 36 description:
42 37 commit-subdir-1
43 38
44 39
45 40 % subdir log 2
46 41 changeset: 1:f2e51572cf5a
47 42 tag: tip
48 43 user: test
49 44 date: Mon Jan 12 13:46:41 1970 +0000
50 45 files: bar/bar
51 46 description:
52 47 commit-subdir-2
53 48
54 49
55 50 % full log
56 51 changeset: 1:f2e51572cf5a
57 52 tag: tip
58 53 user: test
59 54 date: Mon Jan 12 13:46:41 1970 +0000
60 55 files: bar/bar
61 56 description:
62 57 commit-subdir-2
63 58
64 59
65 60 changeset: 0:6ef3cb06bb80
66 61 user: test
67 62 date: Mon Jan 12 13:46:40 1970 +0000
68 63 files: foo/foo
69 64 description:
70 65 commit-subdir-1
71 66
72 67
@@ -1,154 +1,155 b''
1 1 % Show all commands except debug commands
2 2 add
3 3 addremove
4 4 annotate
5 5 archive
6 6 backout
7 7 branch
8 8 branches
9 9 bundle
10 10 cat
11 11 clone
12 12 commit
13 13 copy
14 14 diff
15 15 export
16 16 grep
17 17 heads
18 18 help
19 19 identify
20 20 import
21 21 incoming
22 22 init
23 23 locate
24 24 log
25 25 manifest
26 26 merge
27 27 outgoing
28 28 parents
29 29 paths
30 30 pull
31 31 push
32 32 recover
33 33 remove
34 34 rename
35 35 revert
36 36 rollback
37 37 root
38 38 serve
39 39 showconfig
40 40 status
41 41 tag
42 42 tags
43 43 tip
44 44 unbundle
45 45 update
46 46 verify
47 47 version
48 48
49 49 % Show all commands that start with "a"
50 50 add
51 51 addremove
52 52 annotate
53 53 archive
54 54
55 55 % Do not show debug commands if there are other candidates
56 56 diff
57 57
58 58 % Show debug commands if there are no other candidates
59 59 debugancestor
60 60 debugcheckstate
61 61 debugcomplete
62 62 debugconfig
63 63 debugdata
64 debugdate
64 65 debugindex
65 66 debugindexdot
66 67 debugrawcommit
67 68 debugrebuildstate
68 69 debugrename
69 70 debugsetparents
70 71 debugstate
71 72 debugwalk
72 73
73 74 % Do not show the alias of a debug command if there are other candidates
74 75 % (this should hide rawcommit)
75 76 recover
76 77 remove
77 78 rename
78 79 revert
79 80 rollback
80 81 root
81 82
82 83 % Show the alias of a debug command if there are no other candidates
83 84 rawcommit
84 85
85 86 % Show the global options
86 87 --config
87 88 --cwd
88 89 --debug
89 90 --debugger
90 91 --encoding
91 92 --encodingmode
92 93 --help
93 94 --lsprof
94 95 --noninteractive
95 96 --profile
96 97 --quiet
97 98 --repository
98 99 --time
99 100 --traceback
100 101 --verbose
101 102 --version
102 103 -R
103 104 -h
104 105 -q
105 106 -v
106 107 -y
107 108
108 109 % Show the options for the "serve" command
109 110 --accesslog
110 111 --address
111 112 --config
112 113 --cwd
113 114 --daemon
114 115 --daemon-pipefds
115 116 --debug
116 117 --debugger
117 118 --encoding
118 119 --encodingmode
119 120 --errorlog
120 121 --help
121 122 --ipv6
122 123 --lsprof
123 124 --name
124 125 --noninteractive
125 126 --pid-file
126 127 --port
127 128 --profile
128 129 --quiet
129 130 --repository
130 131 --stdio
131 132 --style
132 133 --templates
133 134 --time
134 135 --traceback
135 136 --verbose
136 137 --version
137 138 --webdir-conf
138 139 -6
139 140 -A
140 141 -E
141 142 -R
142 143 -a
143 144 -d
144 145 -h
145 146 -n
146 147 -p
147 148 -q
148 149 -t
149 150 -v
150 151 -y
151 152
152 153 % Show an error if we use --options with an ambiguous abbreviation
153 154 hg: command 's' is ambiguous:
154 155 serve showconfig status
General Comments 0
You need to be logged in to leave comments. Login now