test-permissions
27 lines
| 517 B
| text/plain
|
TextLexer
/ tests / test-permissions
Matt Mackall
|
r1497 | #!/bin/sh | ||
Benoit Boissinot
|
r5214 | hg init t | ||
cd t | ||||
Matt Mackall
|
r1497 | echo foo > a | ||
hg add a | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m "1" -d "1000000 0" | ||
Matt Mackall
|
r1497 | hg verify | ||
Benoit Boissinot
|
r3853 | chmod -r .hg/store/data/a.i | ||
Matt Mackall
|
r1497 | hg verify 2>/dev/null || echo verify failed | ||
Benoit Boissinot
|
r3853 | chmod +r .hg/store/data/a.i | ||
Matt Mackall
|
r1497 | hg verify 2>/dev/null || echo verify failed | ||
Benoit Boissinot
|
r3853 | chmod -w .hg/store/data/a.i | ||
Matt Mackall
|
r1497 | echo barber > a | ||
Thomas Arendsen Hein
|
r1933 | hg commit -m "2" -d "1000000 0" 2>/dev/null || echo commit failed | ||
Alexis S. L. Carvalho
|
r5519 | chmod -w . | ||
Benoit Boissinot
|
r5215 | hg diff --nodates | ||
Alexis S. L. Carvalho
|
r5519 | chmod +w . | ||
Benoit Boissinot
|
r7099 | |||
chmod +w .hg/store/data/a.i | ||||
mkdir dir | ||||
touch dir/a | ||||
hg status | ||||
chmod -rx dir | ||||
hg status | ||||
Benoit Boissinot
|
r7138 | # reenable perm to allow deletion | ||
chmod +rx dir | ||||