Show More
@@ -63,6 +63,7 b' testpats = [' | |||||
63 | (r'export.*=', "don't export and assign at once"), |
|
63 | (r'export.*=', "don't export and assign at once"), | |
64 | ('^([^"\']|("[^"]*")|(\'[^\']*\'))*\\^', "^ must be quoted"), |
|
64 | ('^([^"\']|("[^"]*")|(\'[^\']*\'))*\\^', "^ must be quoted"), | |
65 | (r'^source\b', "don't use 'source', use '.'"), |
|
65 | (r'^source\b', "don't use 'source', use '.'"), | |
|
66 | (r'touch -d', "don't use 'touch -d', use 'touch -t' instead"), | |||
66 | ] |
|
67 | ] | |
67 |
|
68 | |||
68 | testfilters = [ |
|
69 | testfilters = [ |
@@ -221,7 +221,7 b' empty repo' | |||||
221 | [255] |
|
221 | [255] | |
222 | old file -- date clamped to 1980 |
|
222 | old file -- date clamped to 1980 | |
223 |
|
223 | |||
224 |
$ touch - |
|
224 | $ touch -t 19750101 old | |
225 | $ hg add old |
|
225 | $ hg add old | |
226 | $ hg commit -m old |
|
226 | $ hg commit -m old | |
227 | $ hg archive ../old.zip |
|
227 | $ hg archive ../old.zip |
General Comments 0
You need to be logged in to leave comments.
Login now