1*67e74705SXin Li // RUN: mkdir -p %t.dir 2*67e74705SXin Li // RUN: %clang_cc1 -analyze -analyzer-output=html -analyzer-checker=core -o %t.dir %s 3*67e74705SXin Li // RUN: ls %t.dir | not grep report 4*67e74705SXin Li // RUN: rm -fR %t.dir 5*67e74705SXin Li 6*67e74705SXin Li // This tests that we do not currently emit HTML diagnostics for reports that 7*67e74705SXin Li // cross file boundaries. 8*67e74705SXin Li 9*67e74705SXin Li #include "html-diags-multifile.h" 10*67e74705SXin Li 11*67e74705SXin Li #define CALL_HAS_BUG(q) has_bug(q) 12*67e74705SXin Li test_call_macro()13*67e74705SXin Livoid test_call_macro() { 14*67e74705SXin Li CALL_HAS_BUG(0); 15*67e74705SXin Li } 16*67e74705SXin Li 17