Mercurial > public > mercurial-scm > hg-stable
view tests/test-mq-qrefresh-replace-log-message @ 2712:8e5cd8d11b51
mq: move many error messages to util.Abort
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Thu, 27 Jul 2006 16:41:59 -0700 |
parents | 58913ed8f7f5 |
children | 79c31b6b9c83 |
line wrap: on
line source
#!/bin/sh # Environement setup for MQ HGRCPATH=$HGTMP/.hgrc; export HGRCPATH echo "[extensions]" >> $HGTMP/.hgrc echo "mq=" >> $HGTMP/.hgrc #Repo init hg init hg qinit hg qnew -m "First commit message" first-patch echo aaaa > file hg add file hg qrefresh echo ======================= echo "Should display 'First commit message'" hg log -l1 -v | sed -n '/description/,$p' echo # Testing changing message with -m echo bbbb > file hg qrefresh -m "Second commit message" echo ======================= echo "Should display 'Second commit message'" hg log -l1 -v | sed -n '/description/,$p' echo # Testing changing message with -l echo "Third commit message" > logfile echo " This is the 3rd log message" >> logfile echo bbbb > file hg qrefresh -l logfile echo ======================= echo "Should display 'Third commit message\n This is the 3rd log message'" hg log -l1 -v | sed -n '/description/,$p' echo # Testing changing message with -l- hg qnew -m "First commit message" second-patch echo aaaa > file2 hg add file2 echo bbbb > file2 (echo "Fifth commit message" echo " This is the 5th log message" >> logfile) |\ hg qrefresh -l- echo ======================= echo "Should display 'Fifth commit message\n This is the 5th log message'" hg log -l1 -v | sed -n '/description/,$p' echo