tests/test-check-clang-format.t
changeset 37184 0024961aa493
parent 35669 39499bc31fcd
equal deleted inserted replaced
37183:ded5ea279a93 37184:0024961aa493
     1 #require clang-format test-repo
     1 #require clang-format test-repo
     2 
     2 
     3   $ . "$TESTDIR/helpers-testrepo.sh"
     3   $ . "$TESTDIR/helpers-testrepo.sh"
     4 
     4 
     5   $ cd "$TESTDIR"/..
     5   $ cd "$TESTDIR"/..
     6   $ for f in `testrepohg files 'set:(**.c or **.cc or **.h) and not "listfile:contrib/clang-format-blacklist"'` ; do
     6   $ for f in `testrepohg files 'set:(**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist"'` ; do
     7   >   clang-format --style file $f > $f.formatted
     7   >   clang-format --style file $f > $f.formatted
     8   >   cmp $f $f.formatted || diff -u $f $f.formatted
     8   >   cmp $f $f.formatted || diff -u $f $f.formatted
     9   >   rm $f.formatted
     9   >   rm $f.formatted
    10   > done
    10   > done