##// END OF EJS Templates
test-serve: wait before killing to always hide the "killed!" message....
test-serve: wait before killing to always hide the "killed!" message. Without the sleeps slower systems never display never display "killed!" while faster systems sometimes or nearly always display it.

File last commit:

r2990:61fcd9fa default
r6000:8e7d6498 default
Show More
test-mq-qnew-twice
14 lines | 180 B | text/plain | TextLexer
/ tests / test-mq-qnew-twice
Vadim Gelfer
mq: do not allow to qnew a patch twice
r2711 #!/bin/sh
Thomas Arendsen Hein
Make tests append settings to $HGRCPATH instead of $HGTMP/.hgrc...
r2990 echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
Vadim Gelfer
mq: do not allow to qnew a patch twice
r2711
hg init a
cd a
hg qnew first.patch
hg qnew first.patch
touch ../first.patch
hg qimport ../first.patch
Thomas Arendsen Hein
Fix test-mq-qnew-twice exit code and output.
r2714
exit 0