view tests/test-check-clang-format.t @ 45456:65960fe9a769

test-simple-update: add test for -d DATE option I couldn't find any tests for cmdutil.finddate() except for the abort case.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 13 Sep 2020 18:14:51 +0900
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