diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-03-02 01:27:31 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-03-02 01:27:31 +0000 |
commit | f9e9d330199680204d88e589f0b20c14d1843511 (patch) | |
tree | ba462a9d3eaba75576a5c92cc7e92040e97d2db1 /clang/test/Analysis/html-diags-multifile.c | |
parent | 362eb69f24513ea181b72f7ef7d90f2ed47c08a1 (diff) | |
download | bcm5719-llvm-f9e9d330199680204d88e589f0b20c14d1843511.tar.gz bcm5719-llvm-f9e9d330199680204d88e589f0b20c14d1843511.zip |
[analyzer diagnostics] Change CompactPathDiagnostic to recursively compact diagnostics in calls into macro pieces.
Also fix handling of macros within calls in the HTMLDiagnostics.
This also adds a test case for r151774.
llvm-svn: 151872
Diffstat (limited to 'clang/test/Analysis/html-diags-multifile.c')
-rw-r--r-- | clang/test/Analysis/html-diags-multifile.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clang/test/Analysis/html-diags-multifile.c b/clang/test/Analysis/html-diags-multifile.c new file mode 100644 index 00000000000..611dd072635 --- /dev/null +++ b/clang/test/Analysis/html-diags-multifile.c @@ -0,0 +1,17 @@ +// RUN: mkdir -p %t.dir +// RUN: %clang_cc1 -analyze -analyzer-output=html -analyzer-checker=core -o %t.dir +// RUN: ls %t.dir | grep report | count 0 +// RUN: rm -fR %t.dir +// REQUIRES: shell + +// This tests that we do not currently emit HTML diagnostics for reports that +// cross file boundaries. + +#include "html-diags-multifile.h" + +#define CALL_HAS_BUG(q) has_bug(q) + +void test_call_macro() { + CALL_HAS_BUG(0); +} + |