tests/test-check-clang-format.t
changeset 35669 39499bc31fcd
parent 34834 2e8477059d4f
child 37184 0024961aa493
--- a/tests/test-check-clang-format.t	Wed Jan 17 15:28:38 2018 -0500
+++ b/tests/test-check-clang-format.t	Wed Jan 17 15:56:12 2018 -0500
@@ -3,7 +3,7 @@
   $ . "$TESTDIR/helpers-testrepo.sh"
 
   $ cd "$TESTDIR"/..
-  $ for f in `testrepohg files 'set:(**.c or **.h) and not "listfile:contrib/clang-format-blacklist"'` ; do
+  $ 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