tests/test-permissions
author Christian Boos <cboos@neuf.fr>
Thu, 01 Dec 2005 10:48:18 -0600
changeset 1562 2f97af0b522c
parent 1497 f0b13c019b04
child 1933 7544700fd931
permissions -rwxr-xr-x
Fix walkhelper on windows. The ''seen'' dictionary stores paths in canonical form, so the walkhelp must also provide paths in that form, otherwise the changed files are listed twice.

#!/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