tests/test-check-clang-format.t
author Denis Laxalde <denis@laxalde.org>
Sat, 06 Apr 2019 15:21:55 +0200
changeset 42081 bf777c1e78dd
parent 37184 0024961aa493
permissions -rw-r--r--
match: add a docstring with doctest examples to patternmatcher Doctest examples aim at illustrating how __call__() and exact() are different, depending on the pattern kind.

#require clang-format test-repo

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

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