##// END OF EJS Templates
check-code: add a rule against a GNU sed-ism...
Kevin Bullock -
r19080:5e4491c1 stable
parent child Browse files
Show More
@@ -1,476 +1,478 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #
2 #
3 # check-code - a style and portability checker for Mercurial
3 # check-code - a style and portability checker for Mercurial
4 #
4 #
5 # Copyright 2010 Matt Mackall <mpm@selenic.com>
5 # Copyright 2010 Matt Mackall <mpm@selenic.com>
6 #
6 #
7 # This software may be used and distributed according to the terms of the
7 # This software may be used and distributed according to the terms of the
8 # GNU General Public License version 2 or any later version.
8 # GNU General Public License version 2 or any later version.
9
9
10 import re, glob, os, sys
10 import re, glob, os, sys
11 import keyword
11 import keyword
12 import optparse
12 import optparse
13
13
14 def repquote(m):
14 def repquote(m):
15 t = re.sub(r"\w", "x", m.group('text'))
15 t = re.sub(r"\w", "x", m.group('text'))
16 t = re.sub(r"[^\s\nx]", "o", t)
16 t = re.sub(r"[^\s\nx]", "o", t)
17 return m.group('quote') + t + m.group('quote')
17 return m.group('quote') + t + m.group('quote')
18
18
19 def reppython(m):
19 def reppython(m):
20 comment = m.group('comment')
20 comment = m.group('comment')
21 if comment:
21 if comment:
22 l = len(comment.rstrip())
22 l = len(comment.rstrip())
23 return "#" * l + comment[l:]
23 return "#" * l + comment[l:]
24 return repquote(m)
24 return repquote(m)
25
25
26 def repcomment(m):
26 def repcomment(m):
27 return m.group(1) + "#" * len(m.group(2))
27 return m.group(1) + "#" * len(m.group(2))
28
28
29 def repccomment(m):
29 def repccomment(m):
30 t = re.sub(r"((?<=\n) )|\S", "x", m.group(2))
30 t = re.sub(r"((?<=\n) )|\S", "x", m.group(2))
31 return m.group(1) + t + "*/"
31 return m.group(1) + t + "*/"
32
32
33 def repcallspaces(m):
33 def repcallspaces(m):
34 t = re.sub(r"\n\s+", "\n", m.group(2))
34 t = re.sub(r"\n\s+", "\n", m.group(2))
35 return m.group(1) + t
35 return m.group(1) + t
36
36
37 def repinclude(m):
37 def repinclude(m):
38 return m.group(1) + "<foo>"
38 return m.group(1) + "<foo>"
39
39
40 def rephere(m):
40 def rephere(m):
41 t = re.sub(r"\S", "x", m.group(2))
41 t = re.sub(r"\S", "x", m.group(2))
42 return m.group(1) + t
42 return m.group(1) + t
43
43
44
44
45 testpats = [
45 testpats = [
46 [
46 [
47 (r'pushd|popd', "don't use 'pushd' or 'popd', use 'cd'"),
47 (r'pushd|popd', "don't use 'pushd' or 'popd', use 'cd'"),
48 (r'\W\$?\(\([^\)\n]*\)\)', "don't use (()) or $(()), use 'expr'"),
48 (r'\W\$?\(\([^\)\n]*\)\)', "don't use (()) or $(()), use 'expr'"),
49 (r'grep.*-q', "don't use 'grep -q', redirect to /dev/null"),
49 (r'grep.*-q', "don't use 'grep -q', redirect to /dev/null"),
50 (r'sed.*-i', "don't use 'sed -i', use a temporary file"),
50 (r'sed.*-i', "don't use 'sed -i', use a temporary file"),
51 (r'\becho\b.*\\n', "don't use 'echo \\n', use printf"),
51 (r'\becho\b.*\\n', "don't use 'echo \\n', use printf"),
52 (r'echo -n', "don't use 'echo -n', use printf"),
52 (r'echo -n', "don't use 'echo -n', use printf"),
53 (r'(^| )wc[^|]*$\n(?!.*\(re\))', "filter wc output"),
53 (r'(^| )wc[^|]*$\n(?!.*\(re\))', "filter wc output"),
54 (r'head -c', "don't use 'head -c', use 'dd'"),
54 (r'head -c', "don't use 'head -c', use 'dd'"),
55 (r'sha1sum', "don't use sha1sum, use $TESTDIR/md5sum.py"),
55 (r'sha1sum', "don't use sha1sum, use $TESTDIR/md5sum.py"),
56 (r'ls.*-\w*R', "don't use 'ls -R', use 'find'"),
56 (r'ls.*-\w*R', "don't use 'ls -R', use 'find'"),
57 (r'printf.*\\([1-9]|0\d)', "don't use 'printf \NNN', use Python"),
57 (r'printf.*\\([1-9]|0\d)', "don't use 'printf \NNN', use Python"),
58 (r'printf.*\\x', "don't use printf \\x, use Python"),
58 (r'printf.*\\x', "don't use printf \\x, use Python"),
59 (r'\$\(.*\)', "don't use $(expr), use `expr`"),
59 (r'\$\(.*\)', "don't use $(expr), use `expr`"),
60 (r'rm -rf \*', "don't use naked rm -rf, target a directory"),
60 (r'rm -rf \*', "don't use naked rm -rf, target a directory"),
61 (r'(^|\|\s*)grep (-\w\s+)*[^|]*[(|]\w',
61 (r'(^|\|\s*)grep (-\w\s+)*[^|]*[(|]\w',
62 "use egrep for extended grep syntax"),
62 "use egrep for extended grep syntax"),
63 (r'/bin/', "don't use explicit paths for tools"),
63 (r'/bin/', "don't use explicit paths for tools"),
64 (r'[^\n]\Z', "no trailing newline"),
64 (r'[^\n]\Z', "no trailing newline"),
65 (r'export.*=', "don't export and assign at once"),
65 (r'export.*=', "don't export and assign at once"),
66 (r'^source\b', "don't use 'source', use '.'"),
66 (r'^source\b', "don't use 'source', use '.'"),
67 (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"),
67 (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"),
68 (r'ls +[^|\n-]+ +-', "options to 'ls' must come before filenames"),
68 (r'ls +[^|\n-]+ +-', "options to 'ls' must come before filenames"),
69 (r'[^>\n]>\s*\$HGRCPATH', "don't overwrite $HGRCPATH, append to it"),
69 (r'[^>\n]>\s*\$HGRCPATH', "don't overwrite $HGRCPATH, append to it"),
70 (r'^stop\(\)', "don't use 'stop' as a shell function name"),
70 (r'^stop\(\)', "don't use 'stop' as a shell function name"),
71 (r'(\[|\btest\b).*-e ', "don't use 'test -e', use 'test -f'"),
71 (r'(\[|\btest\b).*-e ', "don't use 'test -e', use 'test -f'"),
72 (r'^alias\b.*=', "don't use alias, use a function"),
72 (r'^alias\b.*=', "don't use alias, use a function"),
73 (r'if\s*!', "don't use '!' to negate exit status"),
73 (r'if\s*!', "don't use '!' to negate exit status"),
74 (r'/dev/u?random', "don't use entropy, use /dev/zero"),
74 (r'/dev/u?random', "don't use entropy, use /dev/zero"),
75 (r'do\s*true;\s*done', "don't use true as loop body, use sleep 0"),
75 (r'do\s*true;\s*done', "don't use true as loop body, use sleep 0"),
76 (r'^( *)\t', "don't use tabs to indent"),
76 (r'^( *)\t', "don't use tabs to indent"),
77 (r'sed .*\'/[^/]*/i[^\\][^\n]',
78 "put a backslash-escaped newline after sed 'i' command"),
77 ],
79 ],
78 # warnings
80 # warnings
79 [
81 [
80 (r'^function', "don't use 'function', use old style"),
82 (r'^function', "don't use 'function', use old style"),
81 (r'^diff.*-\w*N', "don't use 'diff -N'"),
83 (r'^diff.*-\w*N', "don't use 'diff -N'"),
82 (r'\$PWD|\${PWD}', "don't use $PWD, use `pwd`"),
84 (r'\$PWD|\${PWD}', "don't use $PWD, use `pwd`"),
83 (r'^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\^', "^ must be quoted"),
85 (r'^([^"\'\n]|("[^"\n]*")|(\'[^\'\n]*\'))*\^', "^ must be quoted"),
84 (r'kill (`|\$\()', "don't use kill, use killdaemons.py")
86 (r'kill (`|\$\()', "don't use kill, use killdaemons.py")
85 ]
87 ]
86 ]
88 ]
87
89
88 testfilters = [
90 testfilters = [
89 (r"( *)(#([^\n]*\S)?)", repcomment),
91 (r"( *)(#([^\n]*\S)?)", repcomment),
90 (r"<<(\S+)((.|\n)*?\n\1)", rephere),
92 (r"<<(\S+)((.|\n)*?\n\1)", rephere),
91 ]
93 ]
92
94
93 winglobmsg = "use (glob) to match Windows paths too"
95 winglobmsg = "use (glob) to match Windows paths too"
94 uprefix = r"^ \$ "
96 uprefix = r"^ \$ "
95 utestpats = [
97 utestpats = [
96 [
98 [
97 (r'^(\S.*|| [$>] .*)[ \t]\n', "trailing whitespace on non-output"),
99 (r'^(\S.*|| [$>] .*)[ \t]\n', "trailing whitespace on non-output"),
98 (uprefix + r'.*\|\s*sed[^|>\n]*\n',
100 (uprefix + r'.*\|\s*sed[^|>\n]*\n',
99 "use regex test output patterns instead of sed"),
101 "use regex test output patterns instead of sed"),
100 (uprefix + r'(true|exit 0)', "explicit zero exit unnecessary"),
102 (uprefix + r'(true|exit 0)', "explicit zero exit unnecessary"),
101 (uprefix + r'.*(?<!\[)\$\?', "explicit exit code checks unnecessary"),
103 (uprefix + r'.*(?<!\[)\$\?', "explicit exit code checks unnecessary"),
102 (uprefix + r'.*\|\| echo.*(fail|error)',
104 (uprefix + r'.*\|\| echo.*(fail|error)',
103 "explicit exit code checks unnecessary"),
105 "explicit exit code checks unnecessary"),
104 (uprefix + r'set -e', "don't use set -e"),
106 (uprefix + r'set -e', "don't use set -e"),
105 (uprefix + r'\s', "don't indent commands, use > for continued lines"),
107 (uprefix + r'\s', "don't indent commands, use > for continued lines"),
106 (r'^ saved backup bundle to \$TESTTMP.*\.hg$', winglobmsg),
108 (r'^ saved backup bundle to \$TESTTMP.*\.hg$', winglobmsg),
107 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$',
109 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$',
108 winglobmsg),
110 winglobmsg),
109 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
111 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
110 ],
112 ],
111 # warnings
113 # warnings
112 [
114 [
113 (r'^ [^*?/\n]* \(glob\)$',
115 (r'^ [^*?/\n]* \(glob\)$',
114 "warning: glob match with no glob character (?*/)"),
116 "warning: glob match with no glob character (?*/)"),
115 ]
117 ]
116 ]
118 ]
117
119
118 for i in [0, 1]:
120 for i in [0, 1]:
119 for p, m in testpats[i]:
121 for p, m in testpats[i]:
120 if p.startswith(r'^'):
122 if p.startswith(r'^'):
121 p = r"^ [$>] (%s)" % p[1:]
123 p = r"^ [$>] (%s)" % p[1:]
122 else:
124 else:
123 p = r"^ [$>] .*(%s)" % p
125 p = r"^ [$>] .*(%s)" % p
124 utestpats[i].append((p, m))
126 utestpats[i].append((p, m))
125
127
126 utestfilters = [
128 utestfilters = [
127 (r"<<(\S+)((.|\n)*?\n > \1)", rephere),
129 (r"<<(\S+)((.|\n)*?\n > \1)", rephere),
128 (r"( *)(#([^\n]*\S)?)", repcomment),
130 (r"( *)(#([^\n]*\S)?)", repcomment),
129 ]
131 ]
130
132
131 pypats = [
133 pypats = [
132 [
134 [
133 (r'^\s*def\s*\w+\s*\(.*,\s*\(',
135 (r'^\s*def\s*\w+\s*\(.*,\s*\(',
134 "tuple parameter unpacking not available in Python 3+"),
136 "tuple parameter unpacking not available in Python 3+"),
135 (r'lambda\s*\(.*,.*\)',
137 (r'lambda\s*\(.*,.*\)',
136 "tuple parameter unpacking not available in Python 3+"),
138 "tuple parameter unpacking not available in Python 3+"),
137 (r'(?<!def)\s+(cmp)\(', "cmp is not available in Python 3+"),
139 (r'(?<!def)\s+(cmp)\(', "cmp is not available in Python 3+"),
138 (r'\breduce\s*\(.*', "reduce is not available in Python 3+"),
140 (r'\breduce\s*\(.*', "reduce is not available in Python 3+"),
139 (r'\.has_key\b', "dict.has_key is not available in Python 3+"),
141 (r'\.has_key\b', "dict.has_key is not available in Python 3+"),
140 (r'\s<>\s', '<> operator is not available in Python 3+, use !='),
142 (r'\s<>\s', '<> operator is not available in Python 3+, use !='),
141 (r'^\s*\t', "don't use tabs"),
143 (r'^\s*\t', "don't use tabs"),
142 (r'\S;\s*\n', "semicolon"),
144 (r'\S;\s*\n', "semicolon"),
143 (r'[^_]_\("[^"]+"\s*%', "don't use % inside _()"),
145 (r'[^_]_\("[^"]+"\s*%', "don't use % inside _()"),
144 (r"[^_]_\('[^']+'\s*%", "don't use % inside _()"),
146 (r"[^_]_\('[^']+'\s*%", "don't use % inside _()"),
145 (r'(\w|\)),\w', "missing whitespace after ,"),
147 (r'(\w|\)),\w', "missing whitespace after ,"),
146 (r'(\w|\))[+/*\-<>]\w', "missing whitespace in expression"),
148 (r'(\w|\))[+/*\-<>]\w', "missing whitespace in expression"),
147 (r'^\s+(\w|\.)+=\w[^,()\n]*$', "missing whitespace in assignment"),
149 (r'^\s+(\w|\.)+=\w[^,()\n]*$', "missing whitespace in assignment"),
148 (r'(\s+)try:\n((?:\n|\1\s.*\n)+?)\1except.*?:\n'
150 (r'(\s+)try:\n((?:\n|\1\s.*\n)+?)\1except.*?:\n'
149 r'((?:\n|\1\s.*\n)+?)\1finally:', 'no try/except/finally in Python 2.4'),
151 r'((?:\n|\1\s.*\n)+?)\1finally:', 'no try/except/finally in Python 2.4'),
150 (r'(\s+)try:\n((?:\n|\1\s.*\n)*?)\1\s*yield\b.*?'
152 (r'(\s+)try:\n((?:\n|\1\s.*\n)*?)\1\s*yield\b.*?'
151 r'((?:\n|\1\s.*\n)+?)\1finally:',
153 r'((?:\n|\1\s.*\n)+?)\1finally:',
152 'no yield inside try/finally in Python 2.4'),
154 'no yield inside try/finally in Python 2.4'),
153 (r'.{81}', "line too long"),
155 (r'.{81}', "line too long"),
154 (r' x+[xo][\'"]\n\s+[\'"]x', 'string join across lines with no space'),
156 (r' x+[xo][\'"]\n\s+[\'"]x', 'string join across lines with no space'),
155 (r'[^\n]\Z', "no trailing newline"),
157 (r'[^\n]\Z', "no trailing newline"),
156 (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"),
158 (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"),
157 # (r'^\s+[^_ \n][^_. \n]+_[^_\n]+\s*=',
159 # (r'^\s+[^_ \n][^_. \n]+_[^_\n]+\s*=',
158 # "don't use underbars in identifiers"),
160 # "don't use underbars in identifiers"),
159 (r'^\s+(self\.)?[A-za-z][a-z0-9]+[A-Z]\w* = ',
161 (r'^\s+(self\.)?[A-za-z][a-z0-9]+[A-Z]\w* = ',
160 "don't use camelcase in identifiers"),
162 "don't use camelcase in identifiers"),
161 (r'^\s*(if|while|def|class|except|try)\s[^[\n]*:\s*[^\\n]#\s]+',
163 (r'^\s*(if|while|def|class|except|try)\s[^[\n]*:\s*[^\\n]#\s]+',
162 "linebreak after :"),
164 "linebreak after :"),
163 (r'class\s[^( \n]+:', "old-style class, use class foo(object)"),
165 (r'class\s[^( \n]+:', "old-style class, use class foo(object)"),
164 (r'class\s[^( \n]+\(\):',
166 (r'class\s[^( \n]+\(\):',
165 "class foo() not available in Python 2.4, use class foo(object)"),
167 "class foo() not available in Python 2.4, use class foo(object)"),
166 (r'\b(%s)\(' % '|'.join(keyword.kwlist),
168 (r'\b(%s)\(' % '|'.join(keyword.kwlist),
167 "Python keyword is not a function"),
169 "Python keyword is not a function"),
168 (r',]', "unneeded trailing ',' in list"),
170 (r',]', "unneeded trailing ',' in list"),
169 # (r'class\s[A-Z][^\(]*\((?!Exception)',
171 # (r'class\s[A-Z][^\(]*\((?!Exception)',
170 # "don't capitalize non-exception classes"),
172 # "don't capitalize non-exception classes"),
171 # (r'in range\(', "use xrange"),
173 # (r'in range\(', "use xrange"),
172 # (r'^\s*print\s+', "avoid using print in core and extensions"),
174 # (r'^\s*print\s+', "avoid using print in core and extensions"),
173 (r'[\x80-\xff]', "non-ASCII character literal"),
175 (r'[\x80-\xff]', "non-ASCII character literal"),
174 (r'("\')\.format\(', "str.format() not available in Python 2.4"),
176 (r'("\')\.format\(', "str.format() not available in Python 2.4"),
175 (r'^\s*with\s+', "with not available in Python 2.4"),
177 (r'^\s*with\s+', "with not available in Python 2.4"),
176 (r'\.isdisjoint\(', "set.isdisjoint not available in Python 2.4"),
178 (r'\.isdisjoint\(', "set.isdisjoint not available in Python 2.4"),
177 (r'^\s*except.* as .*:', "except as not available in Python 2.4"),
179 (r'^\s*except.* as .*:', "except as not available in Python 2.4"),
178 (r'^\s*os\.path\.relpath', "relpath not available in Python 2.4"),
180 (r'^\s*os\.path\.relpath', "relpath not available in Python 2.4"),
179 (r'(?<!def)\s+(any|all|format)\(',
181 (r'(?<!def)\s+(any|all|format)\(',
180 "any/all/format not available in Python 2.4"),
182 "any/all/format not available in Python 2.4"),
181 (r'(?<!def)\s+(callable)\(',
183 (r'(?<!def)\s+(callable)\(',
182 "callable not available in Python 3, use getattr(f, '__call__', None)"),
184 "callable not available in Python 3, use getattr(f, '__call__', None)"),
183 (r'if\s.*\selse', "if ... else form not available in Python 2.4"),
185 (r'if\s.*\selse', "if ... else form not available in Python 2.4"),
184 (r'^\s*(%s)\s\s' % '|'.join(keyword.kwlist),
186 (r'^\s*(%s)\s\s' % '|'.join(keyword.kwlist),
185 "gratuitous whitespace after Python keyword"),
187 "gratuitous whitespace after Python keyword"),
186 (r'([\(\[][ \t]\S)|(\S[ \t][\)\]])', "gratuitous whitespace in () or []"),
188 (r'([\(\[][ \t]\S)|(\S[ \t][\)\]])', "gratuitous whitespace in () or []"),
187 # (r'\s\s=', "gratuitous whitespace before ="),
189 # (r'\s\s=', "gratuitous whitespace before ="),
188 (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\S',
190 (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\S',
189 "missing whitespace around operator"),
191 "missing whitespace around operator"),
190 (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\s',
192 (r'[^>< ](\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\s',
191 "missing whitespace around operator"),
193 "missing whitespace around operator"),
192 (r'\s(\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\S',
194 (r'\s(\+=|-=|!=|<>|<=|>=|<<=|>>=|%=)\S',
193 "missing whitespace around operator"),
195 "missing whitespace around operator"),
194 (r'[^^+=*/!<>&| %-](\s=|=\s)[^= ]',
196 (r'[^^+=*/!<>&| %-](\s=|=\s)[^= ]',
195 "wrong whitespace around ="),
197 "wrong whitespace around ="),
196 (r'raise Exception', "don't raise generic exceptions"),
198 (r'raise Exception', "don't raise generic exceptions"),
197 (r'raise [^,(]+, (\([^\)]+\)|[^,\(\)]+)$',
199 (r'raise [^,(]+, (\([^\)]+\)|[^,\(\)]+)$',
198 "don't use old-style two-argument raise, use Exception(message)"),
200 "don't use old-style two-argument raise, use Exception(message)"),
199 (r' is\s+(not\s+)?["\'0-9-]', "object comparison with literal"),
201 (r' is\s+(not\s+)?["\'0-9-]', "object comparison with literal"),
200 (r' [=!]=\s+(True|False|None)',
202 (r' [=!]=\s+(True|False|None)',
201 "comparison with singleton, use 'is' or 'is not' instead"),
203 "comparison with singleton, use 'is' or 'is not' instead"),
202 (r'^\s*(while|if) [01]:',
204 (r'^\s*(while|if) [01]:',
203 "use True/False for constant Boolean expression"),
205 "use True/False for constant Boolean expression"),
204 (r'(?:(?<!def)\s+|\()hasattr',
206 (r'(?:(?<!def)\s+|\()hasattr',
205 'hasattr(foo, bar) is broken, use util.safehasattr(foo, bar) instead'),
207 'hasattr(foo, bar) is broken, use util.safehasattr(foo, bar) instead'),
206 (r'opener\([^)]*\).read\(',
208 (r'opener\([^)]*\).read\(',
207 "use opener.read() instead"),
209 "use opener.read() instead"),
208 (r'BaseException', 'not in Python 2.4, use Exception'),
210 (r'BaseException', 'not in Python 2.4, use Exception'),
209 (r'os\.path\.relpath', 'os.path.relpath is not in Python 2.5'),
211 (r'os\.path\.relpath', 'os.path.relpath is not in Python 2.5'),
210 (r'opener\([^)]*\).write\(',
212 (r'opener\([^)]*\).write\(',
211 "use opener.write() instead"),
213 "use opener.write() instead"),
212 (r'[\s\(](open|file)\([^)]*\)\.read\(',
214 (r'[\s\(](open|file)\([^)]*\)\.read\(',
213 "use util.readfile() instead"),
215 "use util.readfile() instead"),
214 (r'[\s\(](open|file)\([^)]*\)\.write\(',
216 (r'[\s\(](open|file)\([^)]*\)\.write\(',
215 "use util.readfile() instead"),
217 "use util.readfile() instead"),
216 (r'^[\s\(]*(open(er)?|file)\([^)]*\)',
218 (r'^[\s\(]*(open(er)?|file)\([^)]*\)',
217 "always assign an opened file to a variable, and close it afterwards"),
219 "always assign an opened file to a variable, and close it afterwards"),
218 (r'[\s\(](open|file)\([^)]*\)\.',
220 (r'[\s\(](open|file)\([^)]*\)\.',
219 "always assign an opened file to a variable, and close it afterwards"),
221 "always assign an opened file to a variable, and close it afterwards"),
220 (r'(?i)descendent', "the proper spelling is descendAnt"),
222 (r'(?i)descendent', "the proper spelling is descendAnt"),
221 (r'\.debug\(\_', "don't mark debug messages for translation"),
223 (r'\.debug\(\_', "don't mark debug messages for translation"),
222 (r'\.strip\(\)\.split\(\)', "no need to strip before splitting"),
224 (r'\.strip\(\)\.split\(\)', "no need to strip before splitting"),
223 (r'^\s*except\s*:', "naked except clause", r'#.*re-raises'),
225 (r'^\s*except\s*:', "naked except clause", r'#.*re-raises'),
224 (r':\n( )*( ){1,3}[^ ]', "must indent 4 spaces"),
226 (r':\n( )*( ){1,3}[^ ]', "must indent 4 spaces"),
225 (r'ui\.(status|progress|write|note|warn)\([\'\"]x',
227 (r'ui\.(status|progress|write|note|warn)\([\'\"]x',
226 "missing _() in ui message (use () to hide false-positives)"),
228 "missing _() in ui message (use () to hide false-positives)"),
227 (r'release\(.*wlock, .*lock\)', "wrong lock release order"),
229 (r'release\(.*wlock, .*lock\)', "wrong lock release order"),
228 ],
230 ],
229 # warnings
231 # warnings
230 [
232 [
231 ]
233 ]
232 ]
234 ]
233
235
234 pyfilters = [
236 pyfilters = [
235 (r"""(?msx)(?P<comment>\#.*?$)|
237 (r"""(?msx)(?P<comment>\#.*?$)|
236 ((?P<quote>('''|\"\"\"|(?<!')'(?!')|(?<!")"(?!")))
238 ((?P<quote>('''|\"\"\"|(?<!')'(?!')|(?<!")"(?!")))
237 (?P<text>(([^\\]|\\.)*?))
239 (?P<text>(([^\\]|\\.)*?))
238 (?P=quote))""", reppython),
240 (?P=quote))""", reppython),
239 ]
241 ]
240
242
241 txtfilters = []
243 txtfilters = []
242
244
243 txtpats = [
245 txtpats = [
244 [
246 [
245 ('\s$', 'trailing whitespace'),
247 ('\s$', 'trailing whitespace'),
246 ],
248 ],
247 []
249 []
248 ]
250 ]
249
251
250 cpats = [
252 cpats = [
251 [
253 [
252 (r'//', "don't use //-style comments"),
254 (r'//', "don't use //-style comments"),
253 (r'^ ', "don't use spaces to indent"),
255 (r'^ ', "don't use spaces to indent"),
254 (r'\S\t', "don't use tabs except for indent"),
256 (r'\S\t', "don't use tabs except for indent"),
255 (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"),
257 (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"),
256 (r'.{81}', "line too long"),
258 (r'.{81}', "line too long"),
257 (r'(while|if|do|for)\(', "use space after while/if/do/for"),
259 (r'(while|if|do|for)\(', "use space after while/if/do/for"),
258 (r'return\(', "return is not a function"),
260 (r'return\(', "return is not a function"),
259 (r' ;', "no space before ;"),
261 (r' ;', "no space before ;"),
260 (r'\w+\* \w+', "use int *foo, not int* foo"),
262 (r'\w+\* \w+', "use int *foo, not int* foo"),
261 (r'\([^\)]+\) \w+', "use (int)foo, not (int) foo"),
263 (r'\([^\)]+\) \w+', "use (int)foo, not (int) foo"),
262 (r'\w+ (\+\+|--)', "use foo++, not foo ++"),
264 (r'\w+ (\+\+|--)', "use foo++, not foo ++"),
263 (r'\w,\w', "missing whitespace after ,"),
265 (r'\w,\w', "missing whitespace after ,"),
264 (r'^[^#]\w[+/*]\w', "missing whitespace in expression"),
266 (r'^[^#]\w[+/*]\w', "missing whitespace in expression"),
265 (r'^#\s+\w', "use #foo, not # foo"),
267 (r'^#\s+\w', "use #foo, not # foo"),
266 (r'[^\n]\Z', "no trailing newline"),
268 (r'[^\n]\Z', "no trailing newline"),
267 (r'^\s*#import\b', "use only #include in standard C code"),
269 (r'^\s*#import\b', "use only #include in standard C code"),
268 ],
270 ],
269 # warnings
271 # warnings
270 []
272 []
271 ]
273 ]
272
274
273 cfilters = [
275 cfilters = [
274 (r'(/\*)(((\*(?!/))|[^*])*)\*/', repccomment),
276 (r'(/\*)(((\*(?!/))|[^*])*)\*/', repccomment),
275 (r'''(?P<quote>(?<!")")(?P<text>([^"]|\\")+)"(?!")''', repquote),
277 (r'''(?P<quote>(?<!")")(?P<text>([^"]|\\")+)"(?!")''', repquote),
276 (r'''(#\s*include\s+<)([^>]+)>''', repinclude),
278 (r'''(#\s*include\s+<)([^>]+)>''', repinclude),
277 (r'(\()([^)]+\))', repcallspaces),
279 (r'(\()([^)]+\))', repcallspaces),
278 ]
280 ]
279
281
280 inutilpats = [
282 inutilpats = [
281 [
283 [
282 (r'\bui\.', "don't use ui in util"),
284 (r'\bui\.', "don't use ui in util"),
283 ],
285 ],
284 # warnings
286 # warnings
285 []
287 []
286 ]
288 ]
287
289
288 inrevlogpats = [
290 inrevlogpats = [
289 [
291 [
290 (r'\brepo\.', "don't use repo in revlog"),
292 (r'\brepo\.', "don't use repo in revlog"),
291 ],
293 ],
292 # warnings
294 # warnings
293 []
295 []
294 ]
296 ]
295
297
296 checks = [
298 checks = [
297 ('python', r'.*\.(py|cgi)$', pyfilters, pypats),
299 ('python', r'.*\.(py|cgi)$', pyfilters, pypats),
298 ('test script', r'(.*/)?test-[^.~]*$', testfilters, testpats),
300 ('test script', r'(.*/)?test-[^.~]*$', testfilters, testpats),
299 ('c', r'.*\.c$', cfilters, cpats),
301 ('c', r'.*\.c$', cfilters, cpats),
300 ('unified test', r'.*\.t$', utestfilters, utestpats),
302 ('unified test', r'.*\.t$', utestfilters, utestpats),
301 ('layering violation repo in revlog', r'mercurial/revlog\.py', pyfilters,
303 ('layering violation repo in revlog', r'mercurial/revlog\.py', pyfilters,
302 inrevlogpats),
304 inrevlogpats),
303 ('layering violation ui in util', r'mercurial/util\.py', pyfilters,
305 ('layering violation ui in util', r'mercurial/util\.py', pyfilters,
304 inutilpats),
306 inutilpats),
305 ('txt', r'.*\.txt$', txtfilters, txtpats),
307 ('txt', r'.*\.txt$', txtfilters, txtpats),
306 ]
308 ]
307
309
308 class norepeatlogger(object):
310 class norepeatlogger(object):
309 def __init__(self):
311 def __init__(self):
310 self._lastseen = None
312 self._lastseen = None
311
313
312 def log(self, fname, lineno, line, msg, blame):
314 def log(self, fname, lineno, line, msg, blame):
313 """print error related a to given line of a given file.
315 """print error related a to given line of a given file.
314
316
315 The faulty line will also be printed but only once in the case
317 The faulty line will also be printed but only once in the case
316 of multiple errors.
318 of multiple errors.
317
319
318 :fname: filename
320 :fname: filename
319 :lineno: line number
321 :lineno: line number
320 :line: actual content of the line
322 :line: actual content of the line
321 :msg: error message
323 :msg: error message
322 """
324 """
323 msgid = fname, lineno, line
325 msgid = fname, lineno, line
324 if msgid != self._lastseen:
326 if msgid != self._lastseen:
325 if blame:
327 if blame:
326 print "%s:%d (%s):" % (fname, lineno, blame)
328 print "%s:%d (%s):" % (fname, lineno, blame)
327 else:
329 else:
328 print "%s:%d:" % (fname, lineno)
330 print "%s:%d:" % (fname, lineno)
329 print " > %s" % line
331 print " > %s" % line
330 self._lastseen = msgid
332 self._lastseen = msgid
331 print " " + msg
333 print " " + msg
332
334
333 _defaultlogger = norepeatlogger()
335 _defaultlogger = norepeatlogger()
334
336
335 def getblame(f):
337 def getblame(f):
336 lines = []
338 lines = []
337 for l in os.popen('hg annotate -un %s' % f):
339 for l in os.popen('hg annotate -un %s' % f):
338 start, line = l.split(':', 1)
340 start, line = l.split(':', 1)
339 user, rev = start.split()
341 user, rev = start.split()
340 lines.append((line[1:-1], user, rev))
342 lines.append((line[1:-1], user, rev))
341 return lines
343 return lines
342
344
343 def checkfile(f, logfunc=_defaultlogger.log, maxerr=None, warnings=False,
345 def checkfile(f, logfunc=_defaultlogger.log, maxerr=None, warnings=False,
344 blame=False, debug=False, lineno=True):
346 blame=False, debug=False, lineno=True):
345 """checks style and portability of a given file
347 """checks style and portability of a given file
346
348
347 :f: filepath
349 :f: filepath
348 :logfunc: function used to report error
350 :logfunc: function used to report error
349 logfunc(filename, linenumber, linecontent, errormessage)
351 logfunc(filename, linenumber, linecontent, errormessage)
350 :maxerr: number of error to display before aborting.
352 :maxerr: number of error to display before aborting.
351 Set to false (default) to report all errors
353 Set to false (default) to report all errors
352
354
353 return True if no error is found, False otherwise.
355 return True if no error is found, False otherwise.
354 """
356 """
355 blamecache = None
357 blamecache = None
356 result = True
358 result = True
357 for name, match, filters, pats in checks:
359 for name, match, filters, pats in checks:
358 if debug:
360 if debug:
359 print name, f
361 print name, f
360 fc = 0
362 fc = 0
361 if not re.match(match, f):
363 if not re.match(match, f):
362 if debug:
364 if debug:
363 print "Skipping %s for %s it doesn't match %s" % (
365 print "Skipping %s for %s it doesn't match %s" % (
364 name, match, f)
366 name, match, f)
365 continue
367 continue
366 fp = open(f)
368 fp = open(f)
367 pre = post = fp.read()
369 pre = post = fp.read()
368 fp.close()
370 fp.close()
369 if "no-" + "check-code" in pre:
371 if "no-" + "check-code" in pre:
370 if debug:
372 if debug:
371 print "Skipping %s for %s it has no- and check-code" % (
373 print "Skipping %s for %s it has no- and check-code" % (
372 name, f)
374 name, f)
373 break
375 break
374 for p, r in filters:
376 for p, r in filters:
375 post = re.sub(p, r, post)
377 post = re.sub(p, r, post)
376 if warnings:
378 if warnings:
377 pats = pats[0] + pats[1]
379 pats = pats[0] + pats[1]
378 else:
380 else:
379 pats = pats[0]
381 pats = pats[0]
380 # print post # uncomment to show filtered version
382 # print post # uncomment to show filtered version
381
383
382 if debug:
384 if debug:
383 print "Checking %s for %s" % (name, f)
385 print "Checking %s for %s" % (name, f)
384
386
385 prelines = None
387 prelines = None
386 errors = []
388 errors = []
387 for pat in pats:
389 for pat in pats:
388 if len(pat) == 3:
390 if len(pat) == 3:
389 p, msg, ignore = pat
391 p, msg, ignore = pat
390 else:
392 else:
391 p, msg = pat
393 p, msg = pat
392 ignore = None
394 ignore = None
393
395
394 # fix-up regexes for multi-line searches
396 # fix-up regexes for multi-line searches
395 po = p
397 po = p
396 # \s doesn't match \n
398 # \s doesn't match \n
397 p = re.sub(r'(?<!\\)\\s', r'[ \\t]', p)
399 p = re.sub(r'(?<!\\)\\s', r'[ \\t]', p)
398 # [^...] doesn't match newline
400 # [^...] doesn't match newline
399 p = re.sub(r'(?<!\\)\[\^', r'[^\\n', p)
401 p = re.sub(r'(?<!\\)\[\^', r'[^\\n', p)
400
402
401 #print po, '=>', p
403 #print po, '=>', p
402
404
403 pos = 0
405 pos = 0
404 n = 0
406 n = 0
405 for m in re.finditer(p, post, re.MULTILINE):
407 for m in re.finditer(p, post, re.MULTILINE):
406 if prelines is None:
408 if prelines is None:
407 prelines = pre.splitlines()
409 prelines = pre.splitlines()
408 postlines = post.splitlines(True)
410 postlines = post.splitlines(True)
409
411
410 start = m.start()
412 start = m.start()
411 while n < len(postlines):
413 while n < len(postlines):
412 step = len(postlines[n])
414 step = len(postlines[n])
413 if pos + step > start:
415 if pos + step > start:
414 break
416 break
415 pos += step
417 pos += step
416 n += 1
418 n += 1
417 l = prelines[n]
419 l = prelines[n]
418
420
419 if "check-code" + "-ignore" in l:
421 if "check-code" + "-ignore" in l:
420 if debug:
422 if debug:
421 print "Skipping %s for %s:%s (check-code -ignore)" % (
423 print "Skipping %s for %s:%s (check-code -ignore)" % (
422 name, f, n)
424 name, f, n)
423 continue
425 continue
424 elif ignore and re.search(ignore, l, re.MULTILINE):
426 elif ignore and re.search(ignore, l, re.MULTILINE):
425 continue
427 continue
426 bd = ""
428 bd = ""
427 if blame:
429 if blame:
428 bd = 'working directory'
430 bd = 'working directory'
429 if not blamecache:
431 if not blamecache:
430 blamecache = getblame(f)
432 blamecache = getblame(f)
431 if n < len(blamecache):
433 if n < len(blamecache):
432 bl, bu, br = blamecache[n]
434 bl, bu, br = blamecache[n]
433 if bl == l:
435 if bl == l:
434 bd = '%s@%s' % (bu, br)
436 bd = '%s@%s' % (bu, br)
435 errors.append((f, lineno and n + 1, l, msg, bd))
437 errors.append((f, lineno and n + 1, l, msg, bd))
436 result = False
438 result = False
437
439
438 errors.sort()
440 errors.sort()
439 for e in errors:
441 for e in errors:
440 logfunc(*e)
442 logfunc(*e)
441 fc += 1
443 fc += 1
442 if maxerr and fc >= maxerr:
444 if maxerr and fc >= maxerr:
443 print " (too many errors, giving up)"
445 print " (too many errors, giving up)"
444 break
446 break
445
447
446 return result
448 return result
447
449
448 if __name__ == "__main__":
450 if __name__ == "__main__":
449 parser = optparse.OptionParser("%prog [options] [files]")
451 parser = optparse.OptionParser("%prog [options] [files]")
450 parser.add_option("-w", "--warnings", action="store_true",
452 parser.add_option("-w", "--warnings", action="store_true",
451 help="include warning-level checks")
453 help="include warning-level checks")
452 parser.add_option("-p", "--per-file", type="int",
454 parser.add_option("-p", "--per-file", type="int",
453 help="max warnings per file")
455 help="max warnings per file")
454 parser.add_option("-b", "--blame", action="store_true",
456 parser.add_option("-b", "--blame", action="store_true",
455 help="use annotate to generate blame info")
457 help="use annotate to generate blame info")
456 parser.add_option("", "--debug", action="store_true",
458 parser.add_option("", "--debug", action="store_true",
457 help="show debug information")
459 help="show debug information")
458 parser.add_option("", "--nolineno", action="store_false",
460 parser.add_option("", "--nolineno", action="store_false",
459 dest='lineno', help="don't show line numbers")
461 dest='lineno', help="don't show line numbers")
460
462
461 parser.set_defaults(per_file=15, warnings=False, blame=False, debug=False,
463 parser.set_defaults(per_file=15, warnings=False, blame=False, debug=False,
462 lineno=True)
464 lineno=True)
463 (options, args) = parser.parse_args()
465 (options, args) = parser.parse_args()
464
466
465 if len(args) == 0:
467 if len(args) == 0:
466 check = glob.glob("*")
468 check = glob.glob("*")
467 else:
469 else:
468 check = args
470 check = args
469
471
470 ret = 0
472 ret = 0
471 for f in check:
473 for f in check:
472 if not checkfile(f, maxerr=options.per_file, warnings=options.warnings,
474 if not checkfile(f, maxerr=options.per_file, warnings=options.warnings,
473 blame=options.blame, debug=options.debug,
475 blame=options.blame, debug=options.debug,
474 lineno=options.lineno):
476 lineno=options.lineno):
475 ret = 1
477 ret = 1
476 sys.exit(ret)
478 sys.exit(ret)
@@ -1,1279 +1,1281 b''
1 Set up a repo
1 Set up a repo
2
2
3 $ echo "[ui]" >> $HGRCPATH
3 $ echo "[ui]" >> $HGRCPATH
4 $ echo "interactive=true" >> $HGRCPATH
4 $ echo "interactive=true" >> $HGRCPATH
5 $ echo "[extensions]" >> $HGRCPATH
5 $ echo "[extensions]" >> $HGRCPATH
6 $ echo "record=" >> $HGRCPATH
6 $ echo "record=" >> $HGRCPATH
7
7
8 $ hg init a
8 $ hg init a
9 $ cd a
9 $ cd a
10
10
11 Select no files
11 Select no files
12
12
13 $ touch empty-rw
13 $ touch empty-rw
14 $ hg add empty-rw
14 $ hg add empty-rw
15
15
16 $ hg record empty-rw<<EOF
16 $ hg record empty-rw<<EOF
17 > n
17 > n
18 > EOF
18 > EOF
19 diff --git a/empty-rw b/empty-rw
19 diff --git a/empty-rw b/empty-rw
20 new file mode 100644
20 new file mode 100644
21 examine changes to 'empty-rw'? [Ynesfdaq?]
21 examine changes to 'empty-rw'? [Ynesfdaq?]
22 no changes to record
22 no changes to record
23
23
24 $ hg tip -p
24 $ hg tip -p
25 changeset: -1:000000000000
25 changeset: -1:000000000000
26 tag: tip
26 tag: tip
27 user:
27 user:
28 date: Thu Jan 01 00:00:00 1970 +0000
28 date: Thu Jan 01 00:00:00 1970 +0000
29
29
30
30
31
31
32 Select files but no hunks
32 Select files but no hunks
33
33
34 $ hg record empty-rw<<EOF
34 $ hg record empty-rw<<EOF
35 > y
35 > y
36 > n
36 > n
37 > EOF
37 > EOF
38 diff --git a/empty-rw b/empty-rw
38 diff --git a/empty-rw b/empty-rw
39 new file mode 100644
39 new file mode 100644
40 examine changes to 'empty-rw'? [Ynesfdaq?]
40 examine changes to 'empty-rw'? [Ynesfdaq?]
41 abort: empty commit message
41 abort: empty commit message
42 [255]
42 [255]
43
43
44 $ hg tip -p
44 $ hg tip -p
45 changeset: -1:000000000000
45 changeset: -1:000000000000
46 tag: tip
46 tag: tip
47 user:
47 user:
48 date: Thu Jan 01 00:00:00 1970 +0000
48 date: Thu Jan 01 00:00:00 1970 +0000
49
49
50
50
51
51
52 Record empty file
52 Record empty file
53
53
54 $ hg record -d '0 0' -m empty empty-rw<<EOF
54 $ hg record -d '0 0' -m empty empty-rw<<EOF
55 > y
55 > y
56 > y
56 > y
57 > EOF
57 > EOF
58 diff --git a/empty-rw b/empty-rw
58 diff --git a/empty-rw b/empty-rw
59 new file mode 100644
59 new file mode 100644
60 examine changes to 'empty-rw'? [Ynesfdaq?]
60 examine changes to 'empty-rw'? [Ynesfdaq?]
61
61
62 $ hg tip -p
62 $ hg tip -p
63 changeset: 0:c0708cf4e46e
63 changeset: 0:c0708cf4e46e
64 tag: tip
64 tag: tip
65 user: test
65 user: test
66 date: Thu Jan 01 00:00:00 1970 +0000
66 date: Thu Jan 01 00:00:00 1970 +0000
67 summary: empty
67 summary: empty
68
68
69
69
70
70
71 Summary shows we updated to the new cset
71 Summary shows we updated to the new cset
72
72
73 $ hg summary
73 $ hg summary
74 parent: 0:c0708cf4e46e tip
74 parent: 0:c0708cf4e46e tip
75 empty
75 empty
76 branch: default
76 branch: default
77 commit: (clean)
77 commit: (clean)
78 update: (current)
78 update: (current)
79
79
80 Rename empty file
80 Rename empty file
81
81
82 $ hg mv empty-rw empty-rename
82 $ hg mv empty-rw empty-rename
83 $ hg record -d '1 0' -m rename<<EOF
83 $ hg record -d '1 0' -m rename<<EOF
84 > y
84 > y
85 > EOF
85 > EOF
86 diff --git a/empty-rw b/empty-rename
86 diff --git a/empty-rw b/empty-rename
87 rename from empty-rw
87 rename from empty-rw
88 rename to empty-rename
88 rename to empty-rename
89 examine changes to 'empty-rw' and 'empty-rename'? [Ynesfdaq?]
89 examine changes to 'empty-rw' and 'empty-rename'? [Ynesfdaq?]
90
90
91 $ hg tip -p
91 $ hg tip -p
92 changeset: 1:d695e8dcb197
92 changeset: 1:d695e8dcb197
93 tag: tip
93 tag: tip
94 user: test
94 user: test
95 date: Thu Jan 01 00:00:01 1970 +0000
95 date: Thu Jan 01 00:00:01 1970 +0000
96 summary: rename
96 summary: rename
97
97
98
98
99
99
100 Copy empty file
100 Copy empty file
101
101
102 $ hg cp empty-rename empty-copy
102 $ hg cp empty-rename empty-copy
103 $ hg record -d '2 0' -m copy<<EOF
103 $ hg record -d '2 0' -m copy<<EOF
104 > y
104 > y
105 > EOF
105 > EOF
106 diff --git a/empty-rename b/empty-copy
106 diff --git a/empty-rename b/empty-copy
107 copy from empty-rename
107 copy from empty-rename
108 copy to empty-copy
108 copy to empty-copy
109 examine changes to 'empty-rename' and 'empty-copy'? [Ynesfdaq?]
109 examine changes to 'empty-rename' and 'empty-copy'? [Ynesfdaq?]
110
110
111 $ hg tip -p
111 $ hg tip -p
112 changeset: 2:1d4b90bea524
112 changeset: 2:1d4b90bea524
113 tag: tip
113 tag: tip
114 user: test
114 user: test
115 date: Thu Jan 01 00:00:02 1970 +0000
115 date: Thu Jan 01 00:00:02 1970 +0000
116 summary: copy
116 summary: copy
117
117
118
118
119
119
120 Delete empty file
120 Delete empty file
121
121
122 $ hg rm empty-copy
122 $ hg rm empty-copy
123 $ hg record -d '3 0' -m delete<<EOF
123 $ hg record -d '3 0' -m delete<<EOF
124 > y
124 > y
125 > EOF
125 > EOF
126 diff --git a/empty-copy b/empty-copy
126 diff --git a/empty-copy b/empty-copy
127 deleted file mode 100644
127 deleted file mode 100644
128 examine changes to 'empty-copy'? [Ynesfdaq?]
128 examine changes to 'empty-copy'? [Ynesfdaq?]
129
129
130 $ hg tip -p
130 $ hg tip -p
131 changeset: 3:b39a238f01a1
131 changeset: 3:b39a238f01a1
132 tag: tip
132 tag: tip
133 user: test
133 user: test
134 date: Thu Jan 01 00:00:03 1970 +0000
134 date: Thu Jan 01 00:00:03 1970 +0000
135 summary: delete
135 summary: delete
136
136
137
137
138
138
139 Add binary file
139 Add binary file
140
140
141 $ hg bundle --base -2 tip.bundle
141 $ hg bundle --base -2 tip.bundle
142 1 changesets found
142 1 changesets found
143 $ hg add tip.bundle
143 $ hg add tip.bundle
144 $ hg record -d '4 0' -m binary<<EOF
144 $ hg record -d '4 0' -m binary<<EOF
145 > y
145 > y
146 > EOF
146 > EOF
147 diff --git a/tip.bundle b/tip.bundle
147 diff --git a/tip.bundle b/tip.bundle
148 new file mode 100644
148 new file mode 100644
149 this is a binary file
149 this is a binary file
150 examine changes to 'tip.bundle'? [Ynesfdaq?]
150 examine changes to 'tip.bundle'? [Ynesfdaq?]
151
151
152 $ hg tip -p
152 $ hg tip -p
153 changeset: 4:ad816da3711e
153 changeset: 4:ad816da3711e
154 tag: tip
154 tag: tip
155 user: test
155 user: test
156 date: Thu Jan 01 00:00:04 1970 +0000
156 date: Thu Jan 01 00:00:04 1970 +0000
157 summary: binary
157 summary: binary
158
158
159 diff -r b39a238f01a1 -r ad816da3711e tip.bundle
159 diff -r b39a238f01a1 -r ad816da3711e tip.bundle
160 Binary file tip.bundle has changed
160 Binary file tip.bundle has changed
161
161
162
162
163 Change binary file
163 Change binary file
164
164
165 $ hg bundle --base -2 tip.bundle
165 $ hg bundle --base -2 tip.bundle
166 1 changesets found
166 1 changesets found
167 $ hg record -d '5 0' -m binary-change<<EOF
167 $ hg record -d '5 0' -m binary-change<<EOF
168 > y
168 > y
169 > EOF
169 > EOF
170 diff --git a/tip.bundle b/tip.bundle
170 diff --git a/tip.bundle b/tip.bundle
171 this modifies a binary file (all or nothing)
171 this modifies a binary file (all or nothing)
172 examine changes to 'tip.bundle'? [Ynesfdaq?]
172 examine changes to 'tip.bundle'? [Ynesfdaq?]
173
173
174 $ hg tip -p
174 $ hg tip -p
175 changeset: 5:dccd6f3eb485
175 changeset: 5:dccd6f3eb485
176 tag: tip
176 tag: tip
177 user: test
177 user: test
178 date: Thu Jan 01 00:00:05 1970 +0000
178 date: Thu Jan 01 00:00:05 1970 +0000
179 summary: binary-change
179 summary: binary-change
180
180
181 diff -r ad816da3711e -r dccd6f3eb485 tip.bundle
181 diff -r ad816da3711e -r dccd6f3eb485 tip.bundle
182 Binary file tip.bundle has changed
182 Binary file tip.bundle has changed
183
183
184
184
185 Rename and change binary file
185 Rename and change binary file
186
186
187 $ hg mv tip.bundle top.bundle
187 $ hg mv tip.bundle top.bundle
188 $ hg bundle --base -2 top.bundle
188 $ hg bundle --base -2 top.bundle
189 1 changesets found
189 1 changesets found
190 $ hg record -d '6 0' -m binary-change-rename<<EOF
190 $ hg record -d '6 0' -m binary-change-rename<<EOF
191 > y
191 > y
192 > EOF
192 > EOF
193 diff --git a/tip.bundle b/top.bundle
193 diff --git a/tip.bundle b/top.bundle
194 rename from tip.bundle
194 rename from tip.bundle
195 rename to top.bundle
195 rename to top.bundle
196 this modifies a binary file (all or nothing)
196 this modifies a binary file (all or nothing)
197 examine changes to 'tip.bundle' and 'top.bundle'? [Ynesfdaq?]
197 examine changes to 'tip.bundle' and 'top.bundle'? [Ynesfdaq?]
198
198
199 $ hg tip -p
199 $ hg tip -p
200 changeset: 6:7fa44105f5b3
200 changeset: 6:7fa44105f5b3
201 tag: tip
201 tag: tip
202 user: test
202 user: test
203 date: Thu Jan 01 00:00:06 1970 +0000
203 date: Thu Jan 01 00:00:06 1970 +0000
204 summary: binary-change-rename
204 summary: binary-change-rename
205
205
206 diff -r dccd6f3eb485 -r 7fa44105f5b3 tip.bundle
206 diff -r dccd6f3eb485 -r 7fa44105f5b3 tip.bundle
207 Binary file tip.bundle has changed
207 Binary file tip.bundle has changed
208 diff -r dccd6f3eb485 -r 7fa44105f5b3 top.bundle
208 diff -r dccd6f3eb485 -r 7fa44105f5b3 top.bundle
209 Binary file top.bundle has changed
209 Binary file top.bundle has changed
210
210
211
211
212 Add plain file
212 Add plain file
213
213
214 $ for i in 1 2 3 4 5 6 7 8 9 10; do
214 $ for i in 1 2 3 4 5 6 7 8 9 10; do
215 > echo $i >> plain
215 > echo $i >> plain
216 > done
216 > done
217
217
218 $ hg add plain
218 $ hg add plain
219 $ hg record -d '7 0' -m plain plain<<EOF
219 $ hg record -d '7 0' -m plain plain<<EOF
220 > y
220 > y
221 > y
221 > y
222 > EOF
222 > EOF
223 diff --git a/plain b/plain
223 diff --git a/plain b/plain
224 new file mode 100644
224 new file mode 100644
225 examine changes to 'plain'? [Ynesfdaq?]
225 examine changes to 'plain'? [Ynesfdaq?]
226
226
227 $ hg tip -p
227 $ hg tip -p
228 changeset: 7:11fb457c1be4
228 changeset: 7:11fb457c1be4
229 tag: tip
229 tag: tip
230 user: test
230 user: test
231 date: Thu Jan 01 00:00:07 1970 +0000
231 date: Thu Jan 01 00:00:07 1970 +0000
232 summary: plain
232 summary: plain
233
233
234 diff -r 7fa44105f5b3 -r 11fb457c1be4 plain
234 diff -r 7fa44105f5b3 -r 11fb457c1be4 plain
235 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
235 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
236 +++ b/plain Thu Jan 01 00:00:07 1970 +0000
236 +++ b/plain Thu Jan 01 00:00:07 1970 +0000
237 @@ -0,0 +1,10 @@
237 @@ -0,0 +1,10 @@
238 +1
238 +1
239 +2
239 +2
240 +3
240 +3
241 +4
241 +4
242 +5
242 +5
243 +6
243 +6
244 +7
244 +7
245 +8
245 +8
246 +9
246 +9
247 +10
247 +10
248
248
249 Modify end of plain file with username unset
249 Modify end of plain file with username unset
250
250
251 $ echo 11 >> plain
251 $ echo 11 >> plain
252 $ unset HGUSER
252 $ unset HGUSER
253 $ hg record --config ui.username= -d '8 0' -m end plain
253 $ hg record --config ui.username= -d '8 0' -m end plain
254 abort: no username supplied (see "hg help config")
254 abort: no username supplied (see "hg help config")
255 [255]
255 [255]
256
256
257
257
258 Modify end of plain file, also test that diffopts are accounted for
258 Modify end of plain file, also test that diffopts are accounted for
259
259
260 $ HGUSER="test"
260 $ HGUSER="test"
261 $ export HGUSER
261 $ export HGUSER
262 $ hg record --config diff.showfunc=true -d '8 0' -m end plain <<EOF
262 $ hg record --config diff.showfunc=true -d '8 0' -m end plain <<EOF
263 > y
263 > y
264 > y
264 > y
265 > EOF
265 > EOF
266 diff --git a/plain b/plain
266 diff --git a/plain b/plain
267 1 hunks, 1 lines changed
267 1 hunks, 1 lines changed
268 examine changes to 'plain'? [Ynesfdaq?]
268 examine changes to 'plain'? [Ynesfdaq?]
269 @@ -8,3 +8,4 @@ 7
269 @@ -8,3 +8,4 @@ 7
270 8
270 8
271 9
271 9
272 10
272 10
273 +11
273 +11
274 record this change to 'plain'? [Ynesfdaq?]
274 record this change to 'plain'? [Ynesfdaq?]
275
275
276 Modify end of plain file, no EOL
276 Modify end of plain file, no EOL
277
277
278 $ hg tip --template '{node}' >> plain
278 $ hg tip --template '{node}' >> plain
279 $ hg record -d '9 0' -m noeol plain <<EOF
279 $ hg record -d '9 0' -m noeol plain <<EOF
280 > y
280 > y
281 > y
281 > y
282 > EOF
282 > EOF
283 diff --git a/plain b/plain
283 diff --git a/plain b/plain
284 1 hunks, 1 lines changed
284 1 hunks, 1 lines changed
285 examine changes to 'plain'? [Ynesfdaq?]
285 examine changes to 'plain'? [Ynesfdaq?]
286 @@ -9,3 +9,4 @@
286 @@ -9,3 +9,4 @@
287 9
287 9
288 10
288 10
289 11
289 11
290 +7264f99c5f5ff3261504828afa4fb4d406c3af54
290 +7264f99c5f5ff3261504828afa4fb4d406c3af54
291 \ No newline at end of file
291 \ No newline at end of file
292 record this change to 'plain'? [Ynesfdaq?]
292 record this change to 'plain'? [Ynesfdaq?]
293
293
294 Modify end of plain file, add EOL
294 Modify end of plain file, add EOL
295
295
296 $ echo >> plain
296 $ echo >> plain
297 $ echo 1 > plain2
297 $ echo 1 > plain2
298 $ hg add plain2
298 $ hg add plain2
299 $ hg record -d '10 0' -m eol plain plain2 <<EOF
299 $ hg record -d '10 0' -m eol plain plain2 <<EOF
300 > y
300 > y
301 > y
301 > y
302 > y
302 > y
303 > EOF
303 > EOF
304 diff --git a/plain b/plain
304 diff --git a/plain b/plain
305 1 hunks, 1 lines changed
305 1 hunks, 1 lines changed
306 examine changes to 'plain'? [Ynesfdaq?]
306 examine changes to 'plain'? [Ynesfdaq?]
307 @@ -9,4 +9,4 @@
307 @@ -9,4 +9,4 @@
308 9
308 9
309 10
309 10
310 11
310 11
311 -7264f99c5f5ff3261504828afa4fb4d406c3af54
311 -7264f99c5f5ff3261504828afa4fb4d406c3af54
312 \ No newline at end of file
312 \ No newline at end of file
313 +7264f99c5f5ff3261504828afa4fb4d406c3af54
313 +7264f99c5f5ff3261504828afa4fb4d406c3af54
314 record change 1/2 to 'plain'? [Ynesfdaq?]
314 record change 1/2 to 'plain'? [Ynesfdaq?]
315 diff --git a/plain2 b/plain2
315 diff --git a/plain2 b/plain2
316 new file mode 100644
316 new file mode 100644
317 examine changes to 'plain2'? [Ynesfdaq?]
317 examine changes to 'plain2'? [Ynesfdaq?]
318
318
319 Modify beginning, trim end, record both, add another file to test
319 Modify beginning, trim end, record both, add another file to test
320 changes numbering
320 changes numbering
321
321
322 $ rm plain
322 $ rm plain
323 $ for i in 2 2 3 4 5 6 7 8 9 10; do
323 $ for i in 2 2 3 4 5 6 7 8 9 10; do
324 > echo $i >> plain
324 > echo $i >> plain
325 > done
325 > done
326 $ echo 2 >> plain2
326 $ echo 2 >> plain2
327
327
328 $ hg record -d '10 0' -m begin-and-end plain plain2 <<EOF
328 $ hg record -d '10 0' -m begin-and-end plain plain2 <<EOF
329 > y
329 > y
330 > y
330 > y
331 > y
331 > y
332 > y
332 > y
333 > y
333 > y
334 > EOF
334 > EOF
335 diff --git a/plain b/plain
335 diff --git a/plain b/plain
336 2 hunks, 3 lines changed
336 2 hunks, 3 lines changed
337 examine changes to 'plain'? [Ynesfdaq?]
337 examine changes to 'plain'? [Ynesfdaq?]
338 @@ -1,4 +1,4 @@
338 @@ -1,4 +1,4 @@
339 -1
339 -1
340 +2
340 +2
341 2
341 2
342 3
342 3
343 4
343 4
344 record change 1/3 to 'plain'? [Ynesfdaq?]
344 record change 1/3 to 'plain'? [Ynesfdaq?]
345 @@ -8,5 +8,3 @@
345 @@ -8,5 +8,3 @@
346 8
346 8
347 9
347 9
348 10
348 10
349 -11
349 -11
350 -7264f99c5f5ff3261504828afa4fb4d406c3af54
350 -7264f99c5f5ff3261504828afa4fb4d406c3af54
351 record change 2/3 to 'plain'? [Ynesfdaq?]
351 record change 2/3 to 'plain'? [Ynesfdaq?]
352 diff --git a/plain2 b/plain2
352 diff --git a/plain2 b/plain2
353 1 hunks, 1 lines changed
353 1 hunks, 1 lines changed
354 examine changes to 'plain2'? [Ynesfdaq?]
354 examine changes to 'plain2'? [Ynesfdaq?]
355 @@ -1,1 +1,2 @@
355 @@ -1,1 +1,2 @@
356 1
356 1
357 +2
357 +2
358 record change 3/3 to 'plain2'? [Ynesfdaq?]
358 record change 3/3 to 'plain2'? [Ynesfdaq?]
359
359
360 $ hg tip -p
360 $ hg tip -p
361 changeset: 11:21df83db12b8
361 changeset: 11:21df83db12b8
362 tag: tip
362 tag: tip
363 user: test
363 user: test
364 date: Thu Jan 01 00:00:10 1970 +0000
364 date: Thu Jan 01 00:00:10 1970 +0000
365 summary: begin-and-end
365 summary: begin-and-end
366
366
367 diff -r ddb8b281c3ff -r 21df83db12b8 plain
367 diff -r ddb8b281c3ff -r 21df83db12b8 plain
368 --- a/plain Thu Jan 01 00:00:10 1970 +0000
368 --- a/plain Thu Jan 01 00:00:10 1970 +0000
369 +++ b/plain Thu Jan 01 00:00:10 1970 +0000
369 +++ b/plain Thu Jan 01 00:00:10 1970 +0000
370 @@ -1,4 +1,4 @@
370 @@ -1,4 +1,4 @@
371 -1
371 -1
372 +2
372 +2
373 2
373 2
374 3
374 3
375 4
375 4
376 @@ -8,5 +8,3 @@
376 @@ -8,5 +8,3 @@
377 8
377 8
378 9
378 9
379 10
379 10
380 -11
380 -11
381 -7264f99c5f5ff3261504828afa4fb4d406c3af54
381 -7264f99c5f5ff3261504828afa4fb4d406c3af54
382 diff -r ddb8b281c3ff -r 21df83db12b8 plain2
382 diff -r ddb8b281c3ff -r 21df83db12b8 plain2
383 --- a/plain2 Thu Jan 01 00:00:10 1970 +0000
383 --- a/plain2 Thu Jan 01 00:00:10 1970 +0000
384 +++ b/plain2 Thu Jan 01 00:00:10 1970 +0000
384 +++ b/plain2 Thu Jan 01 00:00:10 1970 +0000
385 @@ -1,1 +1,2 @@
385 @@ -1,1 +1,2 @@
386 1
386 1
387 +2
387 +2
388
388
389
389
390 Trim beginning, modify end
390 Trim beginning, modify end
391
391
392 $ rm plain
392 $ rm plain
393 > for i in 4 5 6 7 8 9 10.new; do
393 > for i in 4 5 6 7 8 9 10.new; do
394 > echo $i >> plain
394 > echo $i >> plain
395 > done
395 > done
396
396
397 Record end
397 Record end
398
398
399 $ hg record -d '11 0' -m end-only plain <<EOF
399 $ hg record -d '11 0' -m end-only plain <<EOF
400 > y
400 > y
401 > n
401 > n
402 > y
402 > y
403 > EOF
403 > EOF
404 diff --git a/plain b/plain
404 diff --git a/plain b/plain
405 2 hunks, 4 lines changed
405 2 hunks, 4 lines changed
406 examine changes to 'plain'? [Ynesfdaq?]
406 examine changes to 'plain'? [Ynesfdaq?]
407 @@ -1,9 +1,6 @@
407 @@ -1,9 +1,6 @@
408 -2
408 -2
409 -2
409 -2
410 -3
410 -3
411 4
411 4
412 5
412 5
413 6
413 6
414 7
414 7
415 8
415 8
416 9
416 9
417 record change 1/2 to 'plain'? [Ynesfdaq?]
417 record change 1/2 to 'plain'? [Ynesfdaq?]
418 @@ -4,7 +1,7 @@
418 @@ -4,7 +1,7 @@
419 4
419 4
420 5
420 5
421 6
421 6
422 7
422 7
423 8
423 8
424 9
424 9
425 -10
425 -10
426 +10.new
426 +10.new
427 record change 2/2 to 'plain'? [Ynesfdaq?]
427 record change 2/2 to 'plain'? [Ynesfdaq?]
428
428
429 $ hg tip -p
429 $ hg tip -p
430 changeset: 12:99337501826f
430 changeset: 12:99337501826f
431 tag: tip
431 tag: tip
432 user: test
432 user: test
433 date: Thu Jan 01 00:00:11 1970 +0000
433 date: Thu Jan 01 00:00:11 1970 +0000
434 summary: end-only
434 summary: end-only
435
435
436 diff -r 21df83db12b8 -r 99337501826f plain
436 diff -r 21df83db12b8 -r 99337501826f plain
437 --- a/plain Thu Jan 01 00:00:10 1970 +0000
437 --- a/plain Thu Jan 01 00:00:10 1970 +0000
438 +++ b/plain Thu Jan 01 00:00:11 1970 +0000
438 +++ b/plain Thu Jan 01 00:00:11 1970 +0000
439 @@ -7,4 +7,4 @@
439 @@ -7,4 +7,4 @@
440 7
440 7
441 8
441 8
442 9
442 9
443 -10
443 -10
444 +10.new
444 +10.new
445
445
446
446
447 Record beginning
447 Record beginning
448
448
449 $ hg record -d '12 0' -m begin-only plain <<EOF
449 $ hg record -d '12 0' -m begin-only plain <<EOF
450 > y
450 > y
451 > y
451 > y
452 > EOF
452 > EOF
453 diff --git a/plain b/plain
453 diff --git a/plain b/plain
454 1 hunks, 3 lines changed
454 1 hunks, 3 lines changed
455 examine changes to 'plain'? [Ynesfdaq?]
455 examine changes to 'plain'? [Ynesfdaq?]
456 @@ -1,6 +1,3 @@
456 @@ -1,6 +1,3 @@
457 -2
457 -2
458 -2
458 -2
459 -3
459 -3
460 4
460 4
461 5
461 5
462 6
462 6
463 record this change to 'plain'? [Ynesfdaq?]
463 record this change to 'plain'? [Ynesfdaq?]
464
464
465 $ hg tip -p
465 $ hg tip -p
466 changeset: 13:bbd45465d540
466 changeset: 13:bbd45465d540
467 tag: tip
467 tag: tip
468 user: test
468 user: test
469 date: Thu Jan 01 00:00:12 1970 +0000
469 date: Thu Jan 01 00:00:12 1970 +0000
470 summary: begin-only
470 summary: begin-only
471
471
472 diff -r 99337501826f -r bbd45465d540 plain
472 diff -r 99337501826f -r bbd45465d540 plain
473 --- a/plain Thu Jan 01 00:00:11 1970 +0000
473 --- a/plain Thu Jan 01 00:00:11 1970 +0000
474 +++ b/plain Thu Jan 01 00:00:12 1970 +0000
474 +++ b/plain Thu Jan 01 00:00:12 1970 +0000
475 @@ -1,6 +1,3 @@
475 @@ -1,6 +1,3 @@
476 -2
476 -2
477 -2
477 -2
478 -3
478 -3
479 4
479 4
480 5
480 5
481 6
481 6
482
482
483
483
484 Add to beginning, trim from end
484 Add to beginning, trim from end
485
485
486 $ rm plain
486 $ rm plain
487 $ for i in 1 2 3 4 5 6 7 8 9; do
487 $ for i in 1 2 3 4 5 6 7 8 9; do
488 > echo $i >> plain
488 > echo $i >> plain
489 > done
489 > done
490
490
491 Record end
491 Record end
492
492
493 $ hg record --traceback -d '13 0' -m end-again plain<<EOF
493 $ hg record --traceback -d '13 0' -m end-again plain<<EOF
494 > y
494 > y
495 > n
495 > n
496 > y
496 > y
497 > EOF
497 > EOF
498 diff --git a/plain b/plain
498 diff --git a/plain b/plain
499 2 hunks, 4 lines changed
499 2 hunks, 4 lines changed
500 examine changes to 'plain'? [Ynesfdaq?]
500 examine changes to 'plain'? [Ynesfdaq?]
501 @@ -1,6 +1,9 @@
501 @@ -1,6 +1,9 @@
502 +1
502 +1
503 +2
503 +2
504 +3
504 +3
505 4
505 4
506 5
506 5
507 6
507 6
508 7
508 7
509 8
509 8
510 9
510 9
511 record change 1/2 to 'plain'? [Ynesfdaq?]
511 record change 1/2 to 'plain'? [Ynesfdaq?]
512 @@ -1,7 +4,6 @@
512 @@ -1,7 +4,6 @@
513 4
513 4
514 5
514 5
515 6
515 6
516 7
516 7
517 8
517 8
518 9
518 9
519 -10.new
519 -10.new
520 record change 2/2 to 'plain'? [Ynesfdaq?]
520 record change 2/2 to 'plain'? [Ynesfdaq?]
521
521
522 Add to beginning, middle, end
522 Add to beginning, middle, end
523
523
524 $ rm plain
524 $ rm plain
525 $ for i in 1 2 3 4 5 5.new 5.reallynew 6 7 8 9 10 11; do
525 $ for i in 1 2 3 4 5 5.new 5.reallynew 6 7 8 9 10 11; do
526 > echo $i >> plain
526 > echo $i >> plain
527 > done
527 > done
528
528
529 Record beginning, middle
529 Record beginning, middle
530
530
531 $ hg record -d '14 0' -m middle-only plain <<EOF
531 $ hg record -d '14 0' -m middle-only plain <<EOF
532 > y
532 > y
533 > y
533 > y
534 > y
534 > y
535 > n
535 > n
536 > EOF
536 > EOF
537 diff --git a/plain b/plain
537 diff --git a/plain b/plain
538 3 hunks, 7 lines changed
538 3 hunks, 7 lines changed
539 examine changes to 'plain'? [Ynesfdaq?]
539 examine changes to 'plain'? [Ynesfdaq?]
540 @@ -1,2 +1,5 @@
540 @@ -1,2 +1,5 @@
541 +1
541 +1
542 +2
542 +2
543 +3
543 +3
544 4
544 4
545 5
545 5
546 record change 1/3 to 'plain'? [Ynesfdaq?]
546 record change 1/3 to 'plain'? [Ynesfdaq?]
547 @@ -1,6 +4,8 @@
547 @@ -1,6 +4,8 @@
548 4
548 4
549 5
549 5
550 +5.new
550 +5.new
551 +5.reallynew
551 +5.reallynew
552 6
552 6
553 7
553 7
554 8
554 8
555 9
555 9
556 record change 2/3 to 'plain'? [Ynesfdaq?]
556 record change 2/3 to 'plain'? [Ynesfdaq?]
557 @@ -3,4 +8,6 @@
557 @@ -3,4 +8,6 @@
558 6
558 6
559 7
559 7
560 8
560 8
561 9
561 9
562 +10
562 +10
563 +11
563 +11
564 record change 3/3 to 'plain'? [Ynesfdaq?]
564 record change 3/3 to 'plain'? [Ynesfdaq?]
565
565
566 $ hg tip -p
566 $ hg tip -p
567 changeset: 15:f34a7937ec33
567 changeset: 15:f34a7937ec33
568 tag: tip
568 tag: tip
569 user: test
569 user: test
570 date: Thu Jan 01 00:00:14 1970 +0000
570 date: Thu Jan 01 00:00:14 1970 +0000
571 summary: middle-only
571 summary: middle-only
572
572
573 diff -r 82c065d0b850 -r f34a7937ec33 plain
573 diff -r 82c065d0b850 -r f34a7937ec33 plain
574 --- a/plain Thu Jan 01 00:00:13 1970 +0000
574 --- a/plain Thu Jan 01 00:00:13 1970 +0000
575 +++ b/plain Thu Jan 01 00:00:14 1970 +0000
575 +++ b/plain Thu Jan 01 00:00:14 1970 +0000
576 @@ -1,5 +1,10 @@
576 @@ -1,5 +1,10 @@
577 +1
577 +1
578 +2
578 +2
579 +3
579 +3
580 4
580 4
581 5
581 5
582 +5.new
582 +5.new
583 +5.reallynew
583 +5.reallynew
584 6
584 6
585 7
585 7
586 8
586 8
587
587
588
588
589 Record end
589 Record end
590
590
591 $ hg record -d '15 0' -m end-only plain <<EOF
591 $ hg record -d '15 0' -m end-only plain <<EOF
592 > y
592 > y
593 > y
593 > y
594 > EOF
594 > EOF
595 diff --git a/plain b/plain
595 diff --git a/plain b/plain
596 1 hunks, 2 lines changed
596 1 hunks, 2 lines changed
597 examine changes to 'plain'? [Ynesfdaq?]
597 examine changes to 'plain'? [Ynesfdaq?]
598 @@ -9,3 +9,5 @@
598 @@ -9,3 +9,5 @@
599 7
599 7
600 8
600 8
601 9
601 9
602 +10
602 +10
603 +11
603 +11
604 record this change to 'plain'? [Ynesfdaq?]
604 record this change to 'plain'? [Ynesfdaq?]
605
605
606 $ hg tip -p
606 $ hg tip -p
607 changeset: 16:f9900b71a04c
607 changeset: 16:f9900b71a04c
608 tag: tip
608 tag: tip
609 user: test
609 user: test
610 date: Thu Jan 01 00:00:15 1970 +0000
610 date: Thu Jan 01 00:00:15 1970 +0000
611 summary: end-only
611 summary: end-only
612
612
613 diff -r f34a7937ec33 -r f9900b71a04c plain
613 diff -r f34a7937ec33 -r f9900b71a04c plain
614 --- a/plain Thu Jan 01 00:00:14 1970 +0000
614 --- a/plain Thu Jan 01 00:00:14 1970 +0000
615 +++ b/plain Thu Jan 01 00:00:15 1970 +0000
615 +++ b/plain Thu Jan 01 00:00:15 1970 +0000
616 @@ -9,3 +9,5 @@
616 @@ -9,3 +9,5 @@
617 7
617 7
618 8
618 8
619 9
619 9
620 +10
620 +10
621 +11
621 +11
622
622
623
623
624 $ mkdir subdir
624 $ mkdir subdir
625 $ cd subdir
625 $ cd subdir
626 $ echo a > a
626 $ echo a > a
627 $ hg ci -d '16 0' -Amsubdir
627 $ hg ci -d '16 0' -Amsubdir
628 adding subdir/a
628 adding subdir/a
629
629
630 $ echo a >> a
630 $ echo a >> a
631 $ hg record -d '16 0' -m subdir-change a <<EOF
631 $ hg record -d '16 0' -m subdir-change a <<EOF
632 > y
632 > y
633 > y
633 > y
634 > EOF
634 > EOF
635 diff --git a/subdir/a b/subdir/a
635 diff --git a/subdir/a b/subdir/a
636 1 hunks, 1 lines changed
636 1 hunks, 1 lines changed
637 examine changes to 'subdir/a'? [Ynesfdaq?]
637 examine changes to 'subdir/a'? [Ynesfdaq?]
638 @@ -1,1 +1,2 @@
638 @@ -1,1 +1,2 @@
639 a
639 a
640 +a
640 +a
641 record this change to 'subdir/a'? [Ynesfdaq?]
641 record this change to 'subdir/a'? [Ynesfdaq?]
642
642
643 $ hg tip -p
643 $ hg tip -p
644 changeset: 18:61be427a9deb
644 changeset: 18:61be427a9deb
645 tag: tip
645 tag: tip
646 user: test
646 user: test
647 date: Thu Jan 01 00:00:16 1970 +0000
647 date: Thu Jan 01 00:00:16 1970 +0000
648 summary: subdir-change
648 summary: subdir-change
649
649
650 diff -r a7ffae4d61cb -r 61be427a9deb subdir/a
650 diff -r a7ffae4d61cb -r 61be427a9deb subdir/a
651 --- a/subdir/a Thu Jan 01 00:00:16 1970 +0000
651 --- a/subdir/a Thu Jan 01 00:00:16 1970 +0000
652 +++ b/subdir/a Thu Jan 01 00:00:16 1970 +0000
652 +++ b/subdir/a Thu Jan 01 00:00:16 1970 +0000
653 @@ -1,1 +1,2 @@
653 @@ -1,1 +1,2 @@
654 a
654 a
655 +a
655 +a
656
656
657
657
658 $ echo a > f1
658 $ echo a > f1
659 $ echo b > f2
659 $ echo b > f2
660 $ hg add f1 f2
660 $ hg add f1 f2
661
661
662 $ hg ci -mz -d '17 0'
662 $ hg ci -mz -d '17 0'
663
663
664 $ echo a >> f1
664 $ echo a >> f1
665 $ echo b >> f2
665 $ echo b >> f2
666
666
667 Help, quit
667 Help, quit
668
668
669 $ hg record <<EOF
669 $ hg record <<EOF
670 > ?
670 > ?
671 > q
671 > q
672 > EOF
672 > EOF
673 diff --git a/subdir/f1 b/subdir/f1
673 diff --git a/subdir/f1 b/subdir/f1
674 1 hunks, 1 lines changed
674 1 hunks, 1 lines changed
675 examine changes to 'subdir/f1'? [Ynesfdaq?]
675 examine changes to 'subdir/f1'? [Ynesfdaq?]
676 y - record this change
676 y - record this change
677 n - skip this change
677 n - skip this change
678 e - edit this change manually
678 e - edit this change manually
679 s - skip remaining changes to this file
679 s - skip remaining changes to this file
680 f - record remaining changes to this file
680 f - record remaining changes to this file
681 d - done, skip remaining changes and files
681 d - done, skip remaining changes and files
682 a - record all changes to all remaining files
682 a - record all changes to all remaining files
683 q - quit, recording no changes
683 q - quit, recording no changes
684 ? - display help
684 ? - display help
685 examine changes to 'subdir/f1'? [Ynesfdaq?]
685 examine changes to 'subdir/f1'? [Ynesfdaq?]
686 abort: user quit
686 abort: user quit
687 [255]
687 [255]
688
688
689 Skip
689 Skip
690
690
691 $ hg record <<EOF
691 $ hg record <<EOF
692 > s
692 > s
693 > EOF
693 > EOF
694 diff --git a/subdir/f1 b/subdir/f1
694 diff --git a/subdir/f1 b/subdir/f1
695 1 hunks, 1 lines changed
695 1 hunks, 1 lines changed
696 examine changes to 'subdir/f1'? [Ynesfdaq?]
696 examine changes to 'subdir/f1'? [Ynesfdaq?]
697 diff --git a/subdir/f2 b/subdir/f2
697 diff --git a/subdir/f2 b/subdir/f2
698 1 hunks, 1 lines changed
698 1 hunks, 1 lines changed
699 examine changes to 'subdir/f2'? [Ynesfdaq?] abort: response expected
699 examine changes to 'subdir/f2'? [Ynesfdaq?] abort: response expected
700 [255]
700 [255]
701
701
702 No
702 No
703
703
704 $ hg record <<EOF
704 $ hg record <<EOF
705 > n
705 > n
706 > EOF
706 > EOF
707 diff --git a/subdir/f1 b/subdir/f1
707 diff --git a/subdir/f1 b/subdir/f1
708 1 hunks, 1 lines changed
708 1 hunks, 1 lines changed
709 examine changes to 'subdir/f1'? [Ynesfdaq?]
709 examine changes to 'subdir/f1'? [Ynesfdaq?]
710 diff --git a/subdir/f2 b/subdir/f2
710 diff --git a/subdir/f2 b/subdir/f2
711 1 hunks, 1 lines changed
711 1 hunks, 1 lines changed
712 examine changes to 'subdir/f2'? [Ynesfdaq?] abort: response expected
712 examine changes to 'subdir/f2'? [Ynesfdaq?] abort: response expected
713 [255]
713 [255]
714
714
715 f, quit
715 f, quit
716
716
717 $ hg record <<EOF
717 $ hg record <<EOF
718 > f
718 > f
719 > q
719 > q
720 > EOF
720 > EOF
721 diff --git a/subdir/f1 b/subdir/f1
721 diff --git a/subdir/f1 b/subdir/f1
722 1 hunks, 1 lines changed
722 1 hunks, 1 lines changed
723 examine changes to 'subdir/f1'? [Ynesfdaq?]
723 examine changes to 'subdir/f1'? [Ynesfdaq?]
724 diff --git a/subdir/f2 b/subdir/f2
724 diff --git a/subdir/f2 b/subdir/f2
725 1 hunks, 1 lines changed
725 1 hunks, 1 lines changed
726 examine changes to 'subdir/f2'? [Ynesfdaq?]
726 examine changes to 'subdir/f2'? [Ynesfdaq?]
727 abort: user quit
727 abort: user quit
728 [255]
728 [255]
729
729
730 s, all
730 s, all
731
731
732 $ hg record -d '18 0' -mx <<EOF
732 $ hg record -d '18 0' -mx <<EOF
733 > s
733 > s
734 > a
734 > a
735 > EOF
735 > EOF
736 diff --git a/subdir/f1 b/subdir/f1
736 diff --git a/subdir/f1 b/subdir/f1
737 1 hunks, 1 lines changed
737 1 hunks, 1 lines changed
738 examine changes to 'subdir/f1'? [Ynesfdaq?]
738 examine changes to 'subdir/f1'? [Ynesfdaq?]
739 diff --git a/subdir/f2 b/subdir/f2
739 diff --git a/subdir/f2 b/subdir/f2
740 1 hunks, 1 lines changed
740 1 hunks, 1 lines changed
741 examine changes to 'subdir/f2'? [Ynesfdaq?]
741 examine changes to 'subdir/f2'? [Ynesfdaq?]
742
742
743 $ hg tip -p
743 $ hg tip -p
744 changeset: 20:b3df3dda369a
744 changeset: 20:b3df3dda369a
745 tag: tip
745 tag: tip
746 user: test
746 user: test
747 date: Thu Jan 01 00:00:18 1970 +0000
747 date: Thu Jan 01 00:00:18 1970 +0000
748 summary: x
748 summary: x
749
749
750 diff -r 6e02d6c9906d -r b3df3dda369a subdir/f2
750 diff -r 6e02d6c9906d -r b3df3dda369a subdir/f2
751 --- a/subdir/f2 Thu Jan 01 00:00:17 1970 +0000
751 --- a/subdir/f2 Thu Jan 01 00:00:17 1970 +0000
752 +++ b/subdir/f2 Thu Jan 01 00:00:18 1970 +0000
752 +++ b/subdir/f2 Thu Jan 01 00:00:18 1970 +0000
753 @@ -1,1 +1,2 @@
753 @@ -1,1 +1,2 @@
754 b
754 b
755 +b
755 +b
756
756
757
757
758 f
758 f
759
759
760 $ hg record -d '19 0' -my <<EOF
760 $ hg record -d '19 0' -my <<EOF
761 > f
761 > f
762 > EOF
762 > EOF
763 diff --git a/subdir/f1 b/subdir/f1
763 diff --git a/subdir/f1 b/subdir/f1
764 1 hunks, 1 lines changed
764 1 hunks, 1 lines changed
765 examine changes to 'subdir/f1'? [Ynesfdaq?]
765 examine changes to 'subdir/f1'? [Ynesfdaq?]
766
766
767 $ hg tip -p
767 $ hg tip -p
768 changeset: 21:38ec577f126b
768 changeset: 21:38ec577f126b
769 tag: tip
769 tag: tip
770 user: test
770 user: test
771 date: Thu Jan 01 00:00:19 1970 +0000
771 date: Thu Jan 01 00:00:19 1970 +0000
772 summary: y
772 summary: y
773
773
774 diff -r b3df3dda369a -r 38ec577f126b subdir/f1
774 diff -r b3df3dda369a -r 38ec577f126b subdir/f1
775 --- a/subdir/f1 Thu Jan 01 00:00:18 1970 +0000
775 --- a/subdir/f1 Thu Jan 01 00:00:18 1970 +0000
776 +++ b/subdir/f1 Thu Jan 01 00:00:19 1970 +0000
776 +++ b/subdir/f1 Thu Jan 01 00:00:19 1970 +0000
777 @@ -1,1 +1,2 @@
777 @@ -1,1 +1,2 @@
778 a
778 a
779 +a
779 +a
780
780
781
781
782 #if execbit
782 #if execbit
783
783
784 Preserve chmod +x
784 Preserve chmod +x
785
785
786 $ chmod +x f1
786 $ chmod +x f1
787 $ echo a >> f1
787 $ echo a >> f1
788 $ hg record -d '20 0' -mz <<EOF
788 $ hg record -d '20 0' -mz <<EOF
789 > y
789 > y
790 > y
790 > y
791 > y
791 > y
792 > EOF
792 > EOF
793 diff --git a/subdir/f1 b/subdir/f1
793 diff --git a/subdir/f1 b/subdir/f1
794 old mode 100644
794 old mode 100644
795 new mode 100755
795 new mode 100755
796 1 hunks, 1 lines changed
796 1 hunks, 1 lines changed
797 examine changes to 'subdir/f1'? [Ynesfdaq?]
797 examine changes to 'subdir/f1'? [Ynesfdaq?]
798 @@ -1,2 +1,3 @@
798 @@ -1,2 +1,3 @@
799 a
799 a
800 a
800 a
801 +a
801 +a
802 record this change to 'subdir/f1'? [Ynesfdaq?]
802 record this change to 'subdir/f1'? [Ynesfdaq?]
803
803
804 $ hg tip --config diff.git=True -p
804 $ hg tip --config diff.git=True -p
805 changeset: 22:3261adceb075
805 changeset: 22:3261adceb075
806 tag: tip
806 tag: tip
807 user: test
807 user: test
808 date: Thu Jan 01 00:00:20 1970 +0000
808 date: Thu Jan 01 00:00:20 1970 +0000
809 summary: z
809 summary: z
810
810
811 diff --git a/subdir/f1 b/subdir/f1
811 diff --git a/subdir/f1 b/subdir/f1
812 old mode 100644
812 old mode 100644
813 new mode 100755
813 new mode 100755
814 --- a/subdir/f1
814 --- a/subdir/f1
815 +++ b/subdir/f1
815 +++ b/subdir/f1
816 @@ -1,2 +1,3 @@
816 @@ -1,2 +1,3 @@
817 a
817 a
818 a
818 a
819 +a
819 +a
820
820
821
821
822 Preserve execute permission on original
822 Preserve execute permission on original
823
823
824 $ echo b >> f1
824 $ echo b >> f1
825 $ hg record -d '21 0' -maa <<EOF
825 $ hg record -d '21 0' -maa <<EOF
826 > y
826 > y
827 > y
827 > y
828 > y
828 > y
829 > EOF
829 > EOF
830 diff --git a/subdir/f1 b/subdir/f1
830 diff --git a/subdir/f1 b/subdir/f1
831 1 hunks, 1 lines changed
831 1 hunks, 1 lines changed
832 examine changes to 'subdir/f1'? [Ynesfdaq?]
832 examine changes to 'subdir/f1'? [Ynesfdaq?]
833 @@ -1,3 +1,4 @@
833 @@ -1,3 +1,4 @@
834 a
834 a
835 a
835 a
836 a
836 a
837 +b
837 +b
838 record this change to 'subdir/f1'? [Ynesfdaq?]
838 record this change to 'subdir/f1'? [Ynesfdaq?]
839
839
840 $ hg tip --config diff.git=True -p
840 $ hg tip --config diff.git=True -p
841 changeset: 23:b429867550db
841 changeset: 23:b429867550db
842 tag: tip
842 tag: tip
843 user: test
843 user: test
844 date: Thu Jan 01 00:00:21 1970 +0000
844 date: Thu Jan 01 00:00:21 1970 +0000
845 summary: aa
845 summary: aa
846
846
847 diff --git a/subdir/f1 b/subdir/f1
847 diff --git a/subdir/f1 b/subdir/f1
848 --- a/subdir/f1
848 --- a/subdir/f1
849 +++ b/subdir/f1
849 +++ b/subdir/f1
850 @@ -1,3 +1,4 @@
850 @@ -1,3 +1,4 @@
851 a
851 a
852 a
852 a
853 a
853 a
854 +b
854 +b
855
855
856
856
857 Preserve chmod -x
857 Preserve chmod -x
858
858
859 $ chmod -x f1
859 $ chmod -x f1
860 $ echo c >> f1
860 $ echo c >> f1
861 $ hg record -d '22 0' -mab <<EOF
861 $ hg record -d '22 0' -mab <<EOF
862 > y
862 > y
863 > y
863 > y
864 > y
864 > y
865 > EOF
865 > EOF
866 diff --git a/subdir/f1 b/subdir/f1
866 diff --git a/subdir/f1 b/subdir/f1
867 old mode 100755
867 old mode 100755
868 new mode 100644
868 new mode 100644
869 1 hunks, 1 lines changed
869 1 hunks, 1 lines changed
870 examine changes to 'subdir/f1'? [Ynesfdaq?]
870 examine changes to 'subdir/f1'? [Ynesfdaq?]
871 @@ -2,3 +2,4 @@
871 @@ -2,3 +2,4 @@
872 a
872 a
873 a
873 a
874 b
874 b
875 +c
875 +c
876 record this change to 'subdir/f1'? [Ynesfdaq?]
876 record this change to 'subdir/f1'? [Ynesfdaq?]
877
877
878 $ hg tip --config diff.git=True -p
878 $ hg tip --config diff.git=True -p
879 changeset: 24:0b082130c20a
879 changeset: 24:0b082130c20a
880 tag: tip
880 tag: tip
881 user: test
881 user: test
882 date: Thu Jan 01 00:00:22 1970 +0000
882 date: Thu Jan 01 00:00:22 1970 +0000
883 summary: ab
883 summary: ab
884
884
885 diff --git a/subdir/f1 b/subdir/f1
885 diff --git a/subdir/f1 b/subdir/f1
886 old mode 100755
886 old mode 100755
887 new mode 100644
887 new mode 100644
888 --- a/subdir/f1
888 --- a/subdir/f1
889 +++ b/subdir/f1
889 +++ b/subdir/f1
890 @@ -2,3 +2,4 @@
890 @@ -2,3 +2,4 @@
891 a
891 a
892 a
892 a
893 b
893 b
894 +c
894 +c
895
895
896
896
897 #else
897 #else
898
898
899 Slightly bogus tests to get almost same repo structure as when x bit is used
899 Slightly bogus tests to get almost same repo structure as when x bit is used
900 - but with different hashes.
900 - but with different hashes.
901
901
902 Mock "Preserve chmod +x"
902 Mock "Preserve chmod +x"
903
903
904 $ echo a >> f1
904 $ echo a >> f1
905 $ hg record -d '20 0' -mz <<EOF
905 $ hg record -d '20 0' -mz <<EOF
906 > y
906 > y
907 > y
907 > y
908 > y
908 > y
909 > EOF
909 > EOF
910 diff --git a/subdir/f1 b/subdir/f1
910 diff --git a/subdir/f1 b/subdir/f1
911 1 hunks, 1 lines changed
911 1 hunks, 1 lines changed
912 examine changes to 'subdir/f1'? [Ynesfdaq?]
912 examine changes to 'subdir/f1'? [Ynesfdaq?]
913 @@ -1,2 +1,3 @@
913 @@ -1,2 +1,3 @@
914 a
914 a
915 a
915 a
916 +a
916 +a
917 record this change to 'subdir/f1'? [Ynesfdaq?]
917 record this change to 'subdir/f1'? [Ynesfdaq?]
918
918
919 $ hg tip --config diff.git=True -p
919 $ hg tip --config diff.git=True -p
920 changeset: 22:0d463bd428f5
920 changeset: 22:0d463bd428f5
921 tag: tip
921 tag: tip
922 user: test
922 user: test
923 date: Thu Jan 01 00:00:20 1970 +0000
923 date: Thu Jan 01 00:00:20 1970 +0000
924 summary: z
924 summary: z
925
925
926 diff --git a/subdir/f1 b/subdir/f1
926 diff --git a/subdir/f1 b/subdir/f1
927 --- a/subdir/f1
927 --- a/subdir/f1
928 +++ b/subdir/f1
928 +++ b/subdir/f1
929 @@ -1,2 +1,3 @@
929 @@ -1,2 +1,3 @@
930 a
930 a
931 a
931 a
932 +a
932 +a
933
933
934
934
935 Mock "Preserve execute permission on original"
935 Mock "Preserve execute permission on original"
936
936
937 $ echo b >> f1
937 $ echo b >> f1
938 $ hg record -d '21 0' -maa <<EOF
938 $ hg record -d '21 0' -maa <<EOF
939 > y
939 > y
940 > y
940 > y
941 > y
941 > y
942 > EOF
942 > EOF
943 diff --git a/subdir/f1 b/subdir/f1
943 diff --git a/subdir/f1 b/subdir/f1
944 1 hunks, 1 lines changed
944 1 hunks, 1 lines changed
945 examine changes to 'subdir/f1'? [Ynesfdaq?]
945 examine changes to 'subdir/f1'? [Ynesfdaq?]
946 @@ -1,3 +1,4 @@
946 @@ -1,3 +1,4 @@
947 a
947 a
948 a
948 a
949 a
949 a
950 +b
950 +b
951 record this change to 'subdir/f1'? [Ynesfdaq?]
951 record this change to 'subdir/f1'? [Ynesfdaq?]
952
952
953 $ hg tip --config diff.git=True -p
953 $ hg tip --config diff.git=True -p
954 changeset: 23:0eab41a3e524
954 changeset: 23:0eab41a3e524
955 tag: tip
955 tag: tip
956 user: test
956 user: test
957 date: Thu Jan 01 00:00:21 1970 +0000
957 date: Thu Jan 01 00:00:21 1970 +0000
958 summary: aa
958 summary: aa
959
959
960 diff --git a/subdir/f1 b/subdir/f1
960 diff --git a/subdir/f1 b/subdir/f1
961 --- a/subdir/f1
961 --- a/subdir/f1
962 +++ b/subdir/f1
962 +++ b/subdir/f1
963 @@ -1,3 +1,4 @@
963 @@ -1,3 +1,4 @@
964 a
964 a
965 a
965 a
966 a
966 a
967 +b
967 +b
968
968
969
969
970 Mock "Preserve chmod -x"
970 Mock "Preserve chmod -x"
971
971
972 $ chmod -x f1
972 $ chmod -x f1
973 $ echo c >> f1
973 $ echo c >> f1
974 $ hg record -d '22 0' -mab <<EOF
974 $ hg record -d '22 0' -mab <<EOF
975 > y
975 > y
976 > y
976 > y
977 > y
977 > y
978 > EOF
978 > EOF
979 diff --git a/subdir/f1 b/subdir/f1
979 diff --git a/subdir/f1 b/subdir/f1
980 1 hunks, 1 lines changed
980 1 hunks, 1 lines changed
981 examine changes to 'subdir/f1'? [Ynesfdaq?]
981 examine changes to 'subdir/f1'? [Ynesfdaq?]
982 @@ -2,3 +2,4 @@
982 @@ -2,3 +2,4 @@
983 a
983 a
984 a
984 a
985 b
985 b
986 +c
986 +c
987 record this change to 'subdir/f1'? [Ynesfdaq?]
987 record this change to 'subdir/f1'? [Ynesfdaq?]
988
988
989 $ hg tip --config diff.git=True -p
989 $ hg tip --config diff.git=True -p
990 changeset: 24:f4f718f27b7c
990 changeset: 24:f4f718f27b7c
991 tag: tip
991 tag: tip
992 user: test
992 user: test
993 date: Thu Jan 01 00:00:22 1970 +0000
993 date: Thu Jan 01 00:00:22 1970 +0000
994 summary: ab
994 summary: ab
995
995
996 diff --git a/subdir/f1 b/subdir/f1
996 diff --git a/subdir/f1 b/subdir/f1
997 --- a/subdir/f1
997 --- a/subdir/f1
998 +++ b/subdir/f1
998 +++ b/subdir/f1
999 @@ -2,3 +2,4 @@
999 @@ -2,3 +2,4 @@
1000 a
1000 a
1001 a
1001 a
1002 b
1002 b
1003 +c
1003 +c
1004
1004
1005
1005
1006 #endif
1006 #endif
1007
1007
1008 $ cd ..
1008 $ cd ..
1009
1009
1010
1010
1011 Abort early when a merge is in progress
1011 Abort early when a merge is in progress
1012
1012
1013 $ hg up 4
1013 $ hg up 4
1014 1 files updated, 0 files merged, 6 files removed, 0 files unresolved
1014 1 files updated, 0 files merged, 6 files removed, 0 files unresolved
1015
1015
1016 $ touch iwillmergethat
1016 $ touch iwillmergethat
1017 $ hg add iwillmergethat
1017 $ hg add iwillmergethat
1018
1018
1019 $ hg branch thatbranch
1019 $ hg branch thatbranch
1020 marked working directory as branch thatbranch
1020 marked working directory as branch thatbranch
1021 (branches are permanent and global, did you want a bookmark?)
1021 (branches are permanent and global, did you want a bookmark?)
1022
1022
1023 $ hg ci -m'new head'
1023 $ hg ci -m'new head'
1024
1024
1025 $ hg up default
1025 $ hg up default
1026 6 files updated, 0 files merged, 2 files removed, 0 files unresolved
1026 6 files updated, 0 files merged, 2 files removed, 0 files unresolved
1027
1027
1028 $ hg merge thatbranch
1028 $ hg merge thatbranch
1029 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1029 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1030 (branch merge, don't forget to commit)
1030 (branch merge, don't forget to commit)
1031
1031
1032 $ hg record -m'will abort'
1032 $ hg record -m'will abort'
1033 abort: cannot partially commit a merge (use "hg commit" instead)
1033 abort: cannot partially commit a merge (use "hg commit" instead)
1034 [255]
1034 [255]
1035
1035
1036 $ hg up -C
1036 $ hg up -C
1037 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
1037 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
1038
1038
1039 Editing patch (and ignoring trailing text)
1039 Editing patch (and ignoring trailing text)
1040
1040
1041 $ cat > editor.sh << '__EOF__'
1041 $ cat > editor.sh << '__EOF__'
1042 > sed -e 7d -e '5s/^-/ /' -e '/^# ---/itrailing\nditto' "$1" > tmp
1042 > sed -e 7d -e '5s/^-/ /' -e '/^# ---/i\
1043 > trailing\nditto' "$1" > tmp
1043 > mv tmp "$1"
1044 > mv tmp "$1"
1044 > __EOF__
1045 > __EOF__
1045 $ cat > editedfile << '__EOF__'
1046 $ cat > editedfile << '__EOF__'
1046 > This is the first line
1047 > This is the first line
1047 > This is the second line
1048 > This is the second line
1048 > This is the third line
1049 > This is the third line
1049 > __EOF__
1050 > __EOF__
1050 $ hg add editedfile
1051 $ hg add editedfile
1051 $ hg commit -medit-patch-1
1052 $ hg commit -medit-patch-1
1052 $ cat > editedfile << '__EOF__'
1053 $ cat > editedfile << '__EOF__'
1053 > This line has changed
1054 > This line has changed
1054 > This change will be committed
1055 > This change will be committed
1055 > This is the third line
1056 > This is the third line
1056 > __EOF__
1057 > __EOF__
1057 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record -d '23 0' -medit-patch-2 <<EOF
1058 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record -d '23 0' -medit-patch-2 <<EOF
1058 > y
1059 > y
1059 > e
1060 > e
1060 > EOF
1061 > EOF
1061 diff --git a/editedfile b/editedfile
1062 diff --git a/editedfile b/editedfile
1062 1 hunks, 2 lines changed
1063 1 hunks, 2 lines changed
1063 examine changes to 'editedfile'? [Ynesfdaq?]
1064 examine changes to 'editedfile'? [Ynesfdaq?]
1064 @@ -1,3 +1,3 @@
1065 @@ -1,3 +1,3 @@
1065 -This is the first line
1066 -This is the first line
1066 -This is the second line
1067 -This is the second line
1067 +This line has changed
1068 +This line has changed
1068 +This change will be committed
1069 +This change will be committed
1069 This is the third line
1070 This is the third line
1070 record this change to 'editedfile'? [Ynesfdaq?]
1071 record this change to 'editedfile'? [Ynesfdaq?]
1071 $ cat editedfile
1072 $ cat editedfile
1072 This line has changed
1073 This line has changed
1073 This change will be committed
1074 This change will be committed
1074 This is the third line
1075 This is the third line
1075 $ hg cat -r tip editedfile
1076 $ hg cat -r tip editedfile
1076 This is the first line
1077 This is the first line
1077 This change will be committed
1078 This change will be committed
1078 This is the third line
1079 This is the third line
1079 $ hg revert editedfile
1080 $ hg revert editedfile
1080
1081
1081 Trying to edit patch for whole file
1082 Trying to edit patch for whole file
1082
1083
1083 $ echo "This is the fourth line" >> editedfile
1084 $ echo "This is the fourth line" >> editedfile
1084 $ hg record <<EOF
1085 $ hg record <<EOF
1085 > e
1086 > e
1086 > q
1087 > q
1087 > EOF
1088 > EOF
1088 diff --git a/editedfile b/editedfile
1089 diff --git a/editedfile b/editedfile
1089 1 hunks, 1 lines changed
1090 1 hunks, 1 lines changed
1090 examine changes to 'editedfile'? [Ynesfdaq?]
1091 examine changes to 'editedfile'? [Ynesfdaq?]
1091 cannot edit patch for whole file
1092 cannot edit patch for whole file
1092 examine changes to 'editedfile'? [Ynesfdaq?]
1093 examine changes to 'editedfile'? [Ynesfdaq?]
1093 abort: user quit
1094 abort: user quit
1094 [255]
1095 [255]
1095 $ hg revert editedfile
1096 $ hg revert editedfile
1096
1097
1097 Removing changes from patch
1098 Removing changes from patch
1098
1099
1099 $ sed -e '3s/third/second/' -e '2s/will/will not/' -e 1d editedfile > tmp
1100 $ sed -e '3s/third/second/' -e '2s/will/will not/' -e 1d editedfile > tmp
1100 $ mv tmp editedfile
1101 $ mv tmp editedfile
1101 $ echo "This line has been added" >> editedfile
1102 $ echo "This line has been added" >> editedfile
1102 $ cat > editor.sh << '__EOF__'
1103 $ cat > editor.sh << '__EOF__'
1103 > sed -e 's/^[-+]/ /' "$1" > tmp
1104 > sed -e 's/^[-+]/ /' "$1" > tmp
1104 > mv tmp "$1"
1105 > mv tmp "$1"
1105 > __EOF__
1106 > __EOF__
1106 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1107 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1107 > y
1108 > y
1108 > e
1109 > e
1109 > EOF
1110 > EOF
1110 diff --git a/editedfile b/editedfile
1111 diff --git a/editedfile b/editedfile
1111 1 hunks, 3 lines changed
1112 1 hunks, 3 lines changed
1112 examine changes to 'editedfile'? [Ynesfdaq?]
1113 examine changes to 'editedfile'? [Ynesfdaq?]
1113 @@ -1,3 +1,3 @@
1114 @@ -1,3 +1,3 @@
1114 -This is the first line
1115 -This is the first line
1115 -This change will be committed
1116 -This change will be committed
1116 -This is the third line
1117 -This is the third line
1117 +This change will not be committed
1118 +This change will not be committed
1118 +This is the second line
1119 +This is the second line
1119 +This line has been added
1120 +This line has been added
1120 record this change to 'editedfile'? [Ynesfdaq?]
1121 record this change to 'editedfile'? [Ynesfdaq?]
1121 no changes to record
1122 no changes to record
1122 $ cat editedfile
1123 $ cat editedfile
1123 This change will not be committed
1124 This change will not be committed
1124 This is the second line
1125 This is the second line
1125 This line has been added
1126 This line has been added
1126 $ hg cat -r tip editedfile
1127 $ hg cat -r tip editedfile
1127 This is the first line
1128 This is the first line
1128 This change will be committed
1129 This change will be committed
1129 This is the third line
1130 This is the third line
1130 $ hg revert editedfile
1131 $ hg revert editedfile
1131
1132
1132 Invalid patch
1133 Invalid patch
1133
1134
1134 $ sed -e '3s/third/second/' -e '2s/will/will not/' -e 1d editedfile > tmp
1135 $ sed -e '3s/third/second/' -e '2s/will/will not/' -e 1d editedfile > tmp
1135 $ mv tmp editedfile
1136 $ mv tmp editedfile
1136 $ echo "This line has been added" >> editedfile
1137 $ echo "This line has been added" >> editedfile
1137 $ cat > editor.sh << '__EOF__'
1138 $ cat > editor.sh << '__EOF__'
1138 > sed s/This/That/ "$1" > tmp
1139 > sed s/This/That/ "$1" > tmp
1139 > mv tmp "$1"
1140 > mv tmp "$1"
1140 > __EOF__
1141 > __EOF__
1141 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1142 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1142 > y
1143 > y
1143 > e
1144 > e
1144 > EOF
1145 > EOF
1145 diff --git a/editedfile b/editedfile
1146 diff --git a/editedfile b/editedfile
1146 1 hunks, 3 lines changed
1147 1 hunks, 3 lines changed
1147 examine changes to 'editedfile'? [Ynesfdaq?]
1148 examine changes to 'editedfile'? [Ynesfdaq?]
1148 @@ -1,3 +1,3 @@
1149 @@ -1,3 +1,3 @@
1149 -This is the first line
1150 -This is the first line
1150 -This change will be committed
1151 -This change will be committed
1151 -This is the third line
1152 -This is the third line
1152 +This change will not be committed
1153 +This change will not be committed
1153 +This is the second line
1154 +This is the second line
1154 +This line has been added
1155 +This line has been added
1155 record this change to 'editedfile'? [Ynesfdaq?]
1156 record this change to 'editedfile'? [Ynesfdaq?]
1156 patching file editedfile
1157 patching file editedfile
1157 Hunk #1 FAILED at 0
1158 Hunk #1 FAILED at 0
1158 1 out of 1 hunks FAILED -- saving rejects to file editedfile.rej
1159 1 out of 1 hunks FAILED -- saving rejects to file editedfile.rej
1159 abort: patch failed to apply
1160 abort: patch failed to apply
1160 [255]
1161 [255]
1161 $ cat editedfile
1162 $ cat editedfile
1162 This change will not be committed
1163 This change will not be committed
1163 This is the second line
1164 This is the second line
1164 This line has been added
1165 This line has been added
1165 $ hg cat -r tip editedfile
1166 $ hg cat -r tip editedfile
1166 This is the first line
1167 This is the first line
1167 This change will be committed
1168 This change will be committed
1168 This is the third line
1169 This is the third line
1169 $ cat editedfile.rej
1170 $ cat editedfile.rej
1170 --- editedfile
1171 --- editedfile
1171 +++ editedfile
1172 +++ editedfile
1172 @@ -1,3 +1,3 @@
1173 @@ -1,3 +1,3 @@
1173 -That is the first line
1174 -That is the first line
1174 -That change will be committed
1175 -That change will be committed
1175 -That is the third line
1176 -That is the third line
1176 +That change will not be committed
1177 +That change will not be committed
1177 +That is the second line
1178 +That is the second line
1178 +That line has been added
1179 +That line has been added
1179
1180
1180 Malformed patch - error handling
1181 Malformed patch - error handling
1181
1182
1182 $ cat > editor.sh << '__EOF__'
1183 $ cat > editor.sh << '__EOF__'
1183 > sed -e '/^@/p' "$1" > tmp
1184 > sed -e '/^@/p' "$1" > tmp
1184 > mv tmp "$1"
1185 > mv tmp "$1"
1185 > __EOF__
1186 > __EOF__
1186 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1187 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1187 > y
1188 > y
1188 > e
1189 > e
1189 > EOF
1190 > EOF
1190 diff --git a/editedfile b/editedfile
1191 diff --git a/editedfile b/editedfile
1191 1 hunks, 3 lines changed
1192 1 hunks, 3 lines changed
1192 examine changes to 'editedfile'? [Ynesfdaq?]
1193 examine changes to 'editedfile'? [Ynesfdaq?]
1193 @@ -1,3 +1,3 @@
1194 @@ -1,3 +1,3 @@
1194 -This is the first line
1195 -This is the first line
1195 -This change will be committed
1196 -This change will be committed
1196 -This is the third line
1197 -This is the third line
1197 +This change will not be committed
1198 +This change will not be committed
1198 +This is the second line
1199 +This is the second line
1199 +This line has been added
1200 +This line has been added
1200 record this change to 'editedfile'? [Ynesfdaq?]
1201 record this change to 'editedfile'? [Ynesfdaq?]
1201 abort: error parsing patch: unhandled transition: range -> range
1202 abort: error parsing patch: unhandled transition: range -> range
1202 [255]
1203 [255]
1203
1204
1204 random text in random positions is still an error
1205 random text in random positions is still an error
1205
1206
1206 $ cat > editor.sh << '__EOF__'
1207 $ cat > editor.sh << '__EOF__'
1207 > sed -e '/^@/iother' "$1" > tmp
1208 > sed -e '/^@/i\
1209 > other' "$1" > tmp
1208 > mv tmp "$1"
1210 > mv tmp "$1"
1209 > __EOF__
1211 > __EOF__
1210 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1212 $ HGEDITOR="\"sh\" \"`pwd`/editor.sh\"" hg record <<EOF
1211 > y
1213 > y
1212 > e
1214 > e
1213 > EOF
1215 > EOF
1214 diff --git a/editedfile b/editedfile
1216 diff --git a/editedfile b/editedfile
1215 1 hunks, 3 lines changed
1217 1 hunks, 3 lines changed
1216 examine changes to 'editedfile'? [Ynesfdaq?]
1218 examine changes to 'editedfile'? [Ynesfdaq?]
1217 @@ -1,3 +1,3 @@
1219 @@ -1,3 +1,3 @@
1218 -This is the first line
1220 -This is the first line
1219 -This change will be committed
1221 -This change will be committed
1220 -This is the third line
1222 -This is the third line
1221 +This change will not be committed
1223 +This change will not be committed
1222 +This is the second line
1224 +This is the second line
1223 +This line has been added
1225 +This line has been added
1224 record this change to 'editedfile'? [Ynesfdaq?]
1226 record this change to 'editedfile'? [Ynesfdaq?]
1225 abort: error parsing patch: unhandled transition: file -> other
1227 abort: error parsing patch: unhandled transition: file -> other
1226 [255]
1228 [255]
1227
1229
1228 $ hg up -C
1230 $ hg up -C
1229 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1231 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1230
1232
1231 With win32text
1233 With win32text
1232
1234
1233 $ echo '[extensions]' >> .hg/hgrc
1235 $ echo '[extensions]' >> .hg/hgrc
1234 $ echo 'win32text = ' >> .hg/hgrc
1236 $ echo 'win32text = ' >> .hg/hgrc
1235 $ echo '[decode]' >> .hg/hgrc
1237 $ echo '[decode]' >> .hg/hgrc
1236 $ echo '** = cleverdecode:' >> .hg/hgrc
1238 $ echo '** = cleverdecode:' >> .hg/hgrc
1237 $ echo '[encode]' >> .hg/hgrc
1239 $ echo '[encode]' >> .hg/hgrc
1238 $ echo '** = cleverencode:' >> .hg/hgrc
1240 $ echo '** = cleverencode:' >> .hg/hgrc
1239 $ echo '[patch]' >> .hg/hgrc
1241 $ echo '[patch]' >> .hg/hgrc
1240 $ echo 'eol = crlf' >> .hg/hgrc
1242 $ echo 'eol = crlf' >> .hg/hgrc
1241
1243
1242 Ignore win32text deprecation warning for now:
1244 Ignore win32text deprecation warning for now:
1243
1245
1244 $ echo '[win32text]' >> .hg/hgrc
1246 $ echo '[win32text]' >> .hg/hgrc
1245 $ echo 'warn = no' >> .hg/hgrc
1247 $ echo 'warn = no' >> .hg/hgrc
1246
1248
1247 $ echo d >> subdir/f1
1249 $ echo d >> subdir/f1
1248 $ hg record -d '24 0' -mw1 <<EOF
1250 $ hg record -d '24 0' -mw1 <<EOF
1249 > y
1251 > y
1250 > y
1252 > y
1251 > EOF
1253 > EOF
1252 diff --git a/subdir/f1 b/subdir/f1
1254 diff --git a/subdir/f1 b/subdir/f1
1253 1 hunks, 1 lines changed
1255 1 hunks, 1 lines changed
1254 examine changes to 'subdir/f1'? [Ynesfdaq?]
1256 examine changes to 'subdir/f1'? [Ynesfdaq?]
1255 @@ -3,3 +3,4 @@
1257 @@ -3,3 +3,4 @@
1256 a
1258 a
1257 b
1259 b
1258 c
1260 c
1259 +d
1261 +d
1260 record this change to 'subdir/f1'? [Ynesfdaq?]
1262 record this change to 'subdir/f1'? [Ynesfdaq?]
1261
1263
1262 $ hg tip -p
1264 $ hg tip -p
1263 changeset: 28:* (glob)
1265 changeset: 28:* (glob)
1264 tag: tip
1266 tag: tip
1265 user: test
1267 user: test
1266 date: Thu Jan 01 00:00:24 1970 +0000
1268 date: Thu Jan 01 00:00:24 1970 +0000
1267 summary: w1
1269 summary: w1
1268
1270
1269 diff -r ???????????? -r ???????????? subdir/f1 (glob)
1271 diff -r ???????????? -r ???????????? subdir/f1 (glob)
1270 --- a/subdir/f1 Thu Jan 01 00:00:23 1970 +0000
1272 --- a/subdir/f1 Thu Jan 01 00:00:23 1970 +0000
1271 +++ b/subdir/f1 Thu Jan 01 00:00:24 1970 +0000
1273 +++ b/subdir/f1 Thu Jan 01 00:00:24 1970 +0000
1272 @@ -3,3 +3,4 @@
1274 @@ -3,3 +3,4 @@
1273 a
1275 a
1274 b
1276 b
1275 c
1277 c
1276 +d
1278 +d
1277
1279
1278
1280
1279 $ cd ..
1281 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now