tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 28 Jul 2006 09:00:30 +0200
changeset 2713 85070b784896
parent 2710 ca97be5babf8
child 2976 61fcd9fac434
permissions -rwxr-xr-x
Fix test-mq-qnew-twice exit code and output.

#!/bin/sh

HGRCPATH=$HGTMP/.hgrc; export HGRCPATH
echo "[extensions]" >> $HGTMP/.hgrc
echo "mq=" >> $HGTMP/.hgrc

hg init a
cd a
hg qnew first.patch
hg qnew first.patch

touch ../first.patch
hg qimport ../first.patch

exit 0