tests/test-revert-flags
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Mon, 24 Aug 2009 21:00:34 +0200
changeset 9391 2705e6816d33
parent 6030 d0dbae32517c
permissions -rwxr-xr-x
use 'x in dict' instead of 'dict.has_key(x)' "in" is faster, and has_key will be removed in py3k

#!/bin/sh

"$TESTDIR/hghave" execbit || exit 80

hg init repo
cd repo
echo foo > foo
chmod 644 foo
hg ci -qAm '644'

chmod 755 foo
hg ci -qAm '755'

echo '% reverting to rev 0'
hg revert -a -r 0
hg st
hg diff --git