Mercurial > hg
view tests/test-check-clang-format.t @ 36722:6bacb2f663cb
py3: use bytes() instead of str()
Differential Revision: https://phab.mercurial-scm.org/D2665
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Mon, 05 Mar 2018 01:08:40 +0530 |
parents | 39499bc31fcd |
children | 0024961aa493 |
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-blacklist"'` ; do > clang-format --style file $f > $f.formatted > cmp $f $f.formatted || diff -u $f $f.formatted > rm $f.formatted > done