tests/test-check-commit.t
author Kevin Bullock <kbullock+mercurial@ringworld.org>
Tue, 01 Nov 2016 13:03:42 -0500
branchstable
changeset 30249 eab274469952
parent 29219 3c9066ed557c
child 30648 2cab496db1e0
permissions -rw-r--r--
merge with i18n

#require test-repo

Enable obsolescence to avoid the warning issue when obsmarker are found

  $ . "$TESTDIR/helpers-testrepo.sh"

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