view tests/test-check-clang-format.t @ 35165:27196b7fc1ac stable

cat: record the current behavior of wildcard matches in subrepos Mercurial subrepos support any match patterns.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 25 Nov 2017 15:29:34 +0900
parents 2e8477059d4f
children 39499bc31fcd
line wrap: on
line source

#require clang-format test-repo

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

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