view tests/test-mq-symlinks @ 7042:0ada66dcc259

tests: fix reported patch tool name in test-mq Strip any path of the patch executable, which it might return on failure.
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 18 Sep 2008 13:45:36 +0200
parents 95413879bac9
children 49f34b43cf90
line wrap: on
line source

#!/bin/sh

"$TESTDIR/hghave" symlink || exit 80

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

hg init
hg qinit
hg qnew base.patch
echo a > a
echo b > b
hg add a b
hg qrefresh
$TESTDIR/readlink.py a

hg qnew symlink.patch
rm a
ln -s b a
hg qrefresh --git
$TESTDIR/readlink.py a

hg qpop
hg qpush
$TESTDIR/readlink.py a