view tests/test-check-clang-format.t @ 35091:6a8e85702121

run-test: use byte for 'common-pattern.py' path This is required for Python 3.
author Boris Feld <boris.feld@octobus.net>
date Sun, 19 Nov 2017 04:10:55 +0100
parents 2e8477059d4f
children 39499bc31fcd
line wrap: on
line source

#require clang-format test-repo

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

  $ cd "$TESTDIR"/..
  $ for f in `testrepohg files 'set:(**.c or **.h) and not "listfile:contrib/clang-format-blacklist"'` ; do
  >   clang-format --style file $f > $f.formatted
  >   cmp $f $f.formatted || diff -u $f $f.formatted
  >   rm $f.formatted
  > done