##// END OF EJS Templates
py3: make test-bisect.t bytes-safe
py3: make test-bisect.t bytes-safe

File last commit:

r35687:39499bc3 default
r36847:4eb3bf22 default
Show More
test-check-clang-format.t
10 lines | 343 B | text/troff | Tads3Lexer
/ tests / test-check-clang-format.t
#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