##// END OF EJS Templates
run-tests.py: skip tests that should not run....
run-tests.py: skip tests that should not run. print message when any test is skipped. count skipped tests.

File last commit:

r1933:7544700f default
r2710:e475fe2a default
Show More
test-addremove
12 lines | 197 B | text/plain | TextLexer
Thomas Arendsen Hein
Added test for the currently broken addremove with the expected output.
r1623 #!/bin/sh
hg init rep
cd rep
mkdir dir
touch foo dir/bar
hg -v addremove
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg -v commit -m "add 1" -d "1000000 0"
Thomas Arendsen Hein
Added test for the currently broken addremove with the expected output.
r1623 cd dir/
touch ../foo_2 bar_2
hg -v addremove
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg -v commit -m "add 2" -d "1000000 0"