tests/test-check-clang-format.t
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 11 Sep 2018 18:45:05 -0700
changeset 39602 2d2bbf3f3e09
parent 37184 0024961aa493
permissions -rw-r--r--
bundlerepo: pass create=True I don't want to know how this came to be. Maybe a holdover from the days before Python had a bool type? Differential Revision: https://phab.mercurial-scm.org/D4553

#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