test-glog: pass the list of files to commit
test-glog uses debugsetparents instead of update+merge to create
some funky DAGs, and so the dirstate contents won't be consistent
with the checked out revision.
Passing an explicit list of files to commit reduces a bit the
dependency on the dirstate.
Using a non-deprecated rawcommit might be better here.
#!/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