Mercurial > hg
view tests/test-check-clang-format.t @ 51125:4224b1aa7ad8 stable
branching: merge default into stable for 6.6rc0
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 07 Nov 2023 15:21:11 +0100 |
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