tests/test-check-clang-format.t
author Augie Fackler <raf@durin42.com>
Tue, 10 Mar 2020 13:10:53 -0400
changeset 44493 02c47b74366c
parent 37184 0024961aa493
permissions -rw-r--r--
git: key off `git` in .hg/requires rather than separate file Differential Revision: https://phab.mercurial-scm.org/D8265

#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