[PATCH] tests: avoid renamed files triggering check-commit failures

Augie Fackler raf at durin42.com
Sun May 21 00:55:40 UTC 2017


# HG changeset patch
# User Augie Fackler <augie at google.com>
# Date 1495327829 14400
#      Sat May 20 20:50:29 2017 -0400
# Node ID 5db6d70fd30b2f76058abfa3c39fae66f9d97812
# Parent  71e735bd8170bccd74f556388b7c4d491f890701
tests: avoid renamed files triggering check-commit failures

I had to flag some revisions to not undergo check-commit scrutiny
today to get the tests to pass, because they renamed files that had
existing failures which we're not cleaning up. Let's prevent that in
the future by using the extended git diff format to elide moved code.

diff --git a/tests/test-check-commit.t b/tests/test-check-commit.t
--- a/tests/test-check-commit.t
+++ b/tests/test-check-commit.t
@@ -9,7 +9,7 @@ Go back in the hg repo
   $ cd $TESTDIR/..
 
   $ for node in `hg log --rev 'not public() and ::. and not desc("# no-check-commit")' --template '{node|short}\n'`; do
-  >    hg export $node | contrib/check-commit > ${TESTTMP}/check-commit.out
+  >    hg export --git $node | contrib/check-commit > ${TESTTMP}/check-commit.out
   >    if [ $? -ne 0 ]; then
   >        echo "Revision $node does not comply with rules"
   >        echo '------------------------------------------------------'


More information about the Mercurial-devel mailing list