view tests/test-mq-symlinks @ 5470:8374f3f081f2

tests: tidy up reporting of skipped tests if not verbose: - print 's' rather than '.' - pass skipped test reports back to parent for -j - report which tests were skipped at the end - print '.' after test completion
author Matt Mackall <mpm@selenic.com>
date Fri, 19 Oct 2007 12:53:43 -0500
parents f6c520fd70cf
children
line wrap: on
line source

#!/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