view tests/test-mq-qnew-twice @ 2713:85070b784896

Fix test-mq-qnew-twice exit code and output.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Jul 2006 09:00:30 +0200
parents ca97be5babf8
children 61fcd9fac434
line wrap: on
line source

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