forked from OSchip/llvm-project
Add a test for Static Analyzer checker plugins
llvm-svn: 198820
This commit is contained in:
parent
5e10aaeb18
commit
099d4ee125
|
@ -0,0 +1,10 @@
|
|||
// RUN: %clang_cc1 -load %llvmshlibdir/SampleAnalyzerPlugin%pluginext -analyze -analyzer-checker='example.MainCallChecker' -verify %s
|
||||
// REQUIRES: plugins, examples
|
||||
|
||||
// Test that the MainCallChecker example analyzer plugin loads and runs.
|
||||
|
||||
int main();
|
||||
|
||||
void caller() {
|
||||
main(); // expected-warning {{call to main}}
|
||||
}
|
Loading…
Reference in New Issue