annotate tests/test-undo @ 766:b444a7e053f1

Get addremove to use new walk code. It is now more verbose than it used to be. If given file names, it prints nothing, as before. But if given patterns or nothing, it prints the names of the files it is operating on, to remove that air of mystery. It also now operates at or below the current directory.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 22 Jul 2005 19:45:48 -0800
parents 7e4843b7efd2
children ec85f9e6f3b1 8f5637f0a0c0 0902ffece4b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
544
3d4d5f2aba9a Remove bashisms and use /bin/sh instead of /bin/bash.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 350
diff changeset
1 #!/bin/sh
336
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
2
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
3 set -x
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
4 mkdir t
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
5 cd t
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
6 hg init
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
7 echo a > a
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
8 hg add a
749
7e4843b7efd2 Update tests to use commit -m and default -u
mpm@selenic.com
parents: 547
diff changeset
9 hg commit -m "test" -d "0 0"
336
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
10 hg verify
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
11 hg parents
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
12 hg status
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
13 hg undo
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
14 hg verify
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
15 hg parents
aa6cbde09f72 Add some more tests
mpm@selenic.com
parents:
diff changeset
16 hg status