Mercurial > hg
view tests/test-execute-bit @ 5607:e9bae5c80ab4
copy: minor cleanups
- add after and dryrun variables
- add some comments
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 07 Dec 2007 02:01:10 -0600 |
parents | 363ba35f55bd |
children | 23ffe82615d8 |
line wrap: on
line source
#!/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