tests/test-mq-symlinks
author Steve Borho <steve@borho.org>
Fri, 07 Dec 2007 18:18:11 -0600
changeset 5624 3da5ff2a9b11
parent 5157 f6c520fd70cf
child 5683 396c7010b0cd
permissions -rwxr-xr-x
win32: it is no longer necessary to bundle patch.exe Mercurial can use it's built-in mpatch library

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH

cat >> readlink.py <<EOF
import errno, os, sys

for f in sys.argv[1:]:
    try:
        print f, '->', os.readlink(f)
    except OSError, err:
        if err.errno != errno.EINVAL: raise
        print f, 'not a symlink'
EOF

hg init
hg qinit
hg qnew base.patch
echo a > a
echo b > b
hg add a b
hg qrefresh
python readlink.py a

hg qnew symlink.patch
rm a
ln -s b a
hg qrefresh --git
python readlink.py a

hg qpop
hg qpush
python readlink.py a