tests/test-check-clang-format.t
author Simon Sapin <simon.sapin@octobus.net>
Tue, 06 Apr 2021 14:35:39 +0200
changeset 47099 3da19db33cbc
parent 37184 0024961aa493
permissions -rw-r--r--
dirstate-tree: Add map `get` and `contains_key` methods Differential Revision: https://phab.mercurial-scm.org/D10369

#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