view tests/test-check-clang-format.t @ 35074:62e10bf001a9

test-pattern: actually update tests using the patterns We mass update the tests now. This will help the next soul touching the http protocol.
author Boris Feld <boris.feld@octobus.net>
date Sun, 05 Nov 2017 08:23:12 +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