Mercurial > hg
view tests/test-check-clang-format.t @ 40311:4aa04d009167
revset: drop special case of 'revset(...)' function in analyze
We now have a valid no-op function. We no longer need the special case.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Thu, 11 Oct 2018 03:15:04 +0200 |
parents | 0024961aa493 |
children |
line wrap: on
line source
#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