view tests/test-check-code-hg.t @ 18735:716cad930691

util: generalize bytecount to unitcountfn This gives us a function we can reuse to count units of other kinds.
author Bryan O'Sullivan <bryano@fb.com>
date Thu, 28 Feb 2013 12:51:18 -0800
parents 339a3fa19695
children cba222f01056
line wrap: on
line source

  $ check_code="$TESTDIR"/../contrib/check-code.py
  $ cd "$TESTDIR"/..
  $ if hg identify -q > /dev/null 2>&1; then :
  > else
  >     echo "skipped: not a Mercurial working dir" >&2
  >     exit 80
  > fi

New errors are not allowed. Warnings are strongly discouraged.

  $ hg manifest 2>/dev/null \
  >   | xargs "$check_code" --warnings --nolineno --per-file=0 \
  >   || false