tests/test-execute-bit
author Christian Ebert <blacktrash@gmx.net>
Sun, 10 Feb 2008 08:25:09 +0100
changeset 6081 beb775df5630
parent 5495 363ba35f55bd
child 6158 23ffe82615d8
permissions -rwxr-xr-x
keyword: enable all monkey patches using _kwtemplater at reposetup - no need for try-except block - underscore prefix for private methods - add doc strings

#!/bin/sh

"$TESTDIR/hghave" execbit || exit 80

hg init
echo a > a
hg ci -d'0 0' -Am'not executable'

chmod +x a
hg ci -d'1 0' -m'executable'
hg id

hg up 0
hg id
test -x a && echo executable -- eek || echo not executable -- whew