tests/test-check-commit.t
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Dec 2015 22:26:31 -0800
changeset 28323 ffc693f87148
parent 28293 a22b6fa5a844
child 29219 3c9066ed557c
permissions -rw-r--r--
commands: use absolute_import All mercurial.* modules are now using absolute_import \o/

#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 'not public() 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 with rules"
  >        echo '------------------------------------------------------'
  >        cat ${TESTTMP}/check-commit.out
  >        echo
  >   fi
  > done