brintos

brintos / llvm-project-archived public Read only

0
0
Text · 371 B · ace217a Raw
16 lines · c
1// RUN: mkdir -p %t.dir2// RUN: %clang_analyze_cc1 -analyzer-output=html -analyzer-checker=core -o %t.dir %s3// RUN: ls %t.dir | grep report4// RUN: rm -fR %t.dir5 6// This tests that we emit HTML diagnostics for reports that cross file boundaries.7 8#include "html-diags-multifile.h"9 10#define CALL_HAS_BUG(q) has_bug(q)11 12void test_call_macro(void) {13  CALL_HAS_BUG(0);14}15 16