Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: tools/clang/plugins/tests/test.sh

Issue 213403010: Re-enable the clang check for enum constants. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change "dont" to "don't". Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/clang/plugins/tests/test.sh
diff --git a/tools/clang/plugins/tests/test.sh b/tools/clang/plugins/tests/test.sh
index cf3acc3afa0e540986eedf09fc203610df16c1ed..1a27f48e748cc4d4f440d7300c29e27301644f74 100755
--- a/tools/clang/plugins/tests/test.sh
+++ b/tools/clang/plugins/tests/test.sh
@@ -71,6 +71,10 @@ for input in *.cpp; do
do_testcase "${input}" "${input%cpp}txt" "${input%cpp}flags"
done
+for input in *.c; do
+ do_testcase "${input}" "${input%c}txt" "${input%c}flags"
+done
+
if [[ "${failed_any_test}" ]]; then
exit ${E_FAILEDTEST}
fi

Powered by Google App Engine
This is Rietveld 408576698