##// END OF EJS Templates
run-tests.py must print changed test output no matter what exit code is.
run-tests.py must print changed test output no matter what exit code is.

File last commit:

r1933:7544700f default
r2213:6f76a479 default
Show More
test-empty-dir
16 lines | 281 B | text/plain | TextLexer
mpm@selenic.com
Remove empty directories on update...
r578 #!/bin/sh
hg init
echo 123 > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "first" -d "1000000 0" a
mpm@selenic.com
Remove empty directories on update...
r578 mkdir sub
echo 321 > sub/b
hg add sub/b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "second" -d "1000000 0" sub/b
mpm@selenic.com
Remove empty directories on update...
r578 cat sub/b
hg co 0
Peter van Dijk
changes by John Levon to standardize some erroroutput
r1926 cat sub/b 2>/dev/null || echo "sub/b not present"
ls sub 2>/dev/null || echo "sub not present"
mpm@selenic.com
Remove empty directories on update...
r578
true