##// END OF EJS Templates
issue1577: fix broken test by assuming less about CVS output....
issue1577: fix broken test by assuming less about CVS output. Specifically, output of "cvs ci" varies unpredictably across CVS versions, so any test that includes the output of "cvs ci" is doomed to fail some of the time. This fixes that by discarding the output of "cvs ci".

File last commit:

r6649:05a682c8 default
r8081:6c3b8132 default
Show More
test-mq-qrename
36 lines | 524 B | text/plain | TextLexer
Brendan Cully
Make qrename handle directory targets; closes #333.
r3083 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg init a
cd a
echo 'base' > base
hg ci -Ambase -d '1 0'
hg qnew -mmqbase mqbase
hg qrename mqbase renamed
mkdir .hg/patches/foo
hg qrename renamed foo
hg qseries
ls .hg/patches/foo
mkdir .hg/patches/bar
hg qrename foo/renamed bar
hg qseries
ls .hg/patches/bar
hg qrename bar/renamed baz
hg qseries
ls .hg/patches/baz
Patrick Mezard
test-mq-qrename: test added patch renaming
r6649 cd ..
Brendan Cully
Make qrename handle directory targets; closes #333.
r3083
Patrick Mezard
test-mq-qrename: test added patch renaming
r6649 echo % test patch being renamed before committed
hg init b
cd b
hg qinit -c
hg qnew x
hg qrename y
hg qcommit -m rename
cd ..