tests/test-check-commit.t
author timeless <timeless@mozdev.org>
Fri, 06 May 2016 19:15:37 +0000
changeset 29177 df6b5c6d252a
parent 28293 a22b6fa5a844
child 29219 3c9066ed557c
permissions -rw-r--r--
tests: test-archive.t use print_function

#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