Mercurial > hg > mercurial-source
comparison tests/test-status.t @ 12156:4c94b6d0fb1c
tests: remove unneeded -d flags
Many tests fixed the commit date of their changesets at '1000000 0' or
similar. However testing with "Mon Jan 12 13:46:40 1970 +0000" is not
better than testing with "Thu Jan 01 00:00:00 1970 +0000", which is
the default run-tests.py installs.
Removing the unnecessary flag removes some clutter and will hopefully
make it clearer what the tests are really trying to test. Some tests
did not even change their output when the dates were changed, in which
case the -d flag was truly irrelevant.
Dates used in sequence (such as '0 0', '1 0', etc...) were left alone
since they may make the test easier to understand.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Thu, 02 Sep 2010 23:22:51 +0200 |
parents | 992506c14217 |
children | b63f6422d2a7 |
comparison
equal
deleted
inserted
replaced
12155:94ad12aa0530 | 12156:4c94b6d0fb1c |
---|---|
104 | 104 |
105 $ hg init repo2 | 105 $ hg init repo2 |
106 $ cd repo2 | 106 $ cd repo2 |
107 $ touch modified removed deleted ignored | 107 $ touch modified removed deleted ignored |
108 $ echo "^ignored$" > .hgignore | 108 $ echo "^ignored$" > .hgignore |
109 $ hg ci -A -m 'initial checkin' -d "1000000 0" | 109 $ hg ci -A -m 'initial checkin' |
110 adding .hgignore | 110 adding .hgignore |
111 adding deleted | 111 adding deleted |
112 adding modified | 112 adding modified |
113 adding removed | 113 adding removed |
114 $ touch modified added unknown ignored | 114 $ touch modified added unknown ignored |
229 $ cd .. | 229 $ cd .. |
230 | 230 |
231 $ hg init repo4 | 231 $ hg init repo4 |
232 $ cd repo4 | 232 $ cd repo4 |
233 $ touch modified removed deleted | 233 $ touch modified removed deleted |
234 $ hg ci -q -A -m 'initial checkin' -d "1000000 0" | 234 $ hg ci -q -A -m 'initial checkin' |
235 $ touch added unknown | 235 $ touch added unknown |
236 $ hg add added | 236 $ hg add added |
237 $ hg remove removed | 237 $ hg remove removed |
238 $ rm deleted | 238 $ rm deleted |
239 $ echo x > modified | 239 $ echo x > modified |