tests/test-check-clang-format.t
author Augie Fackler <raf@durin42.com>
Fri, 18 Jan 2019 13:32:02 -0500
branchstable
changeset 41292 74525c3e9476
parent 37184 0024961aa493
permissions -rw-r--r--
Added signature for changeset 593718ff5844

#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