tests/test-audit-path
author Matt Mackall <mpm@selenic.com>
Mon, 08 Oct 2007 18:47:14 -0500
changeset 5423 e5f238a8b0d2
parent 5141 d316124ebbea
permissions -rwxr-xr-x
osutil: more cleanups - eliminate a level of nesting - untab targets of gotos

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