tests/test-permissions
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 10 Mar 2006 10:44:17 +0100
changeset 1873 205f04b04ec6
parent 1497 f0b13c019b04
child 1933 7544700fd931
permissions -rwxr-xr-x
Added check for minimal python version to setup.py

#!/bin/sh

hg init
echo foo > a
hg add a
hg commit -m "1" -d "0 0"
hg verify
chmod -r .hg/data/a.d
hg verify 2>/dev/null || echo verify failed
chmod +r .hg/data/a.d
hg verify 2>/dev/null || echo verify failed
chmod -w .hg/data/a.d
echo barber > a
hg commit -m "2" -d "0 0" 2>/dev/null || echo commit failed