diff options
author | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
commit | 8f9e44406165c1f57e0b28ba159cace972220921 (patch) | |
tree | dadfa84f9f52079b918ef2959b483523aa85c24e /clang-tools-extra/test/clang-tidy/readability-function-size.cpp | |
parent | 5884a1f5a61d0dbb62cc2916d14d659dd8f28fcd (diff) | |
download | bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.tar.gz bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.zip |
Switch check_clang_tidy to argparse and add a -resource-dir argument.
-resource-dir can be used to inject non-standard resource dirs via the
lit site config.
llvm-svn: 251021
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/readability-function-size.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/readability-function-size.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/readability-function-size.cpp b/clang-tools-extra/test/clang-tidy/readability-function-size.cpp index 9536bb6fe1a..03c94bd7b55 100644 --- a/clang-tools-extra/test/clang-tidy/readability-function-size.cpp +++ b/clang-tools-extra/test/clang-tidy/readability-function-size.cpp @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s readability-function-size %t -config='{CheckOptions: [{key: readability-function-size.LineThreshold, value: 0}, {key: readability-function-size.StatementThreshold, value: 0}, {key: readability-function-size.BranchThreshold, value: 0}]}' -- -std=c++11 +// RUN: %check_clang_tidy %s readability-function-size %t -- -config='{CheckOptions: [{key: readability-function-size.LineThreshold, value: 0}, {key: readability-function-size.StatementThreshold, value: 0}, {key: readability-function-size.BranchThreshold, value: 0}]}' -- -std=c++11 void foo1() { } |