Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Analysis / scan-build / html_output.test
blobeed2051d4df62757da9d86a8c05c49eeebde4798
1 // FIXME: Actually, "perl".
2 REQUIRES: shell
4 RUN: rm -rf %t.output_dir && mkdir %t.output_dir
5 RUN: %scan-build -o %t.output_dir %clang -S %S/Inputs/single_null_dereference.c \
6 RUN:     | FileCheck %s -check-prefix CHECK-STDOUT
8 // Test html output
10 CHECK-STDOUT: scan-build: Using '{{.*}}' for static analysis
11 CHECK-STDOUT: scan-build: 1 bug found.
12 CHECK-STDOUT: scan-build: Run 'scan-view {{.*}}' to examine bug reports.
14 // We expect an index file, a file for the report, and sibling support files.
15 RUN: ls %t.output_dir/*/ | FileCheck %s -check-prefix CHECK-FILENAMES
17 CHECK-FILENAMES: index.html
18 CHECK-FILENAMES: report-{{.*}}.html
19 CHECK-FILENAMES: scanview.css
20 CHECK-FILENAMES: sorttable.js
23 // The index should have a link to the report for the single issue.
24 RUN: cat %t.output_dir/*/index.html \
25 RUN:     | FileCheck %s -check-prefix CHECK-INDEX-HTML
27 CHECK-INDEX-HTML: <!-- REPORTBUG id="report-{{.*}}.html" -->
29 // The report should describe the issue.
30 RUN: cat %t.output_dir/*/report-*.html \
31 RUN:     | FileCheck %s -check-prefix CHECK-REPORT-HTML
33 CHECK-REPORT-HTML: <!-- BUGTYPE Dereference of null pointer -->