tests/test-permissions
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 27 Sep 2006 21:43:45 +0200
changeset 3174 3637d5d17cbc
parent 2223 b72562060e45
child 3853 c0b449154a90
permissions -rwxr-xr-x
Documentation fixes for addremove. - It is no longer deprecated, but the short help still included (DEPRECATED). - Similarity parameter has to be 0<=s<=100 and not 0<=s<=1.

#!/bin/sh

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