Mercurial > hg
view tests/test-check-commit.t @ 27709:da6b457e668c
commands: get rid of empty try/finally block from _dobackout
This diff is purely an indentation change to clean up a block that
was kept in place to make c7217f1458bf easier to read.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 11 Jan 2016 09:49:47 -0800 |
parents | 409a20314c64 |
children | 598e21079884 |
line wrap: on
line source
#require test-repo Enable obsolescence to avoid the warning issue when obsmarker are found $ cat >> $HGRCPATH << EOF > [experimental] > evolution=createmarkers > EOF Go back in the hg repo $ cd $TESTDIR/.. $ for node in `hg log --rev 'draft() and ::.' --template '{node|short}\n'`; do > hg export $node | contrib/check-commit > ${TESTTMP}/check-commit.out > if [ $? -ne 0 ]; then > echo "Revision $node does not comply to rules" > echo '------------------------------------------------------' > cat ${TESTTMP}/check-commit.out > echo > fi > done