##// END OF EJS Templates
patch: return list of modified files even when an exception is raised...
patch: return list of modified files even when an exception is raised The file list is passed in as an argument and updated in place. This fixes issue399.

File last commit:

r2223:b7256206 default
r3465:2d35a8d2 default
Show More
test-permissions
15 lines | 320 B | text/plain | TextLexer
Matt Mackall
Add permissions handling test
r1497 #!/bin/sh
hg init
echo foo > 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 "1" -d "1000000 0"
Matt Mackall
Add permissions handling test
r1497 hg verify
Matt Mackall
Update tests for revlogng
r2223 chmod -r .hg/data/a.i
Matt Mackall
Add permissions handling test
r1497 hg verify 2>/dev/null || echo verify failed
Matt Mackall
Update tests for revlogng
r2223 chmod +r .hg/data/a.i
Matt Mackall
Add permissions handling test
r1497 hg verify 2>/dev/null || echo verify failed
Matt Mackall
Update tests for revlogng
r2223 chmod -w .hg/data/a.i
Matt Mackall
Add permissions handling test
r1497 echo barber > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "2" -d "1000000 0" 2>/dev/null || echo commit failed
Matt Mackall
Add permissions handling test
r1497