view tests/test-execute-bit @ 5753:ea1016b32e94

patchbomb: make --bundle respect --desc
author Patrick Mezard <pmezard@gmail.com>
date Thu, 27 Dec 2007 22:40:07 -0600
parents bf2bb53e5d2b
children 363ba35f55bd
line wrap: on
line source

#!/bin/sh

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