view tests/test-execute-bit @ 5482:7ceb740f2fef

See if execute bit is honoured when we go back in time
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 26 Oct 2007 16:43:13 -0700
parents
children
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