tests/test-execute-bit
author Patrick Mezard <pmezard@gmail.com>
Sat, 27 Oct 2007 20:23:46 +0200
changeset 5495 363ba35f55bd
parent 5494 7ceb740f2fef
child 6158 23ffe82615d8
permissions -rwxr-xr-x
test-execute-bit: skip if execute-bit is not supported

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