tests/test-audit-path
author Kirill Smelkov <kirr@landau.phys.spbu.ru>
Sat, 13 Oct 2007 15:25:11 +0400
changeset 5462 91a522a69c13
parent 5141 d316124ebbea
permissions -rwxr-xr-x
convert: svn -- fix tags handling They were simply not detected.

#!/bin/sh

hg init

echo % should fail
hg add .hg/00changelog.i

mkdir a
echo a > a/a
hg ci -Ama
ln -s a b
echo b > a/b

echo % should fail
hg add b/b

echo % should succeed
hg add b

echo % should still fail - maybe
hg add b/b

exit 0