Make test more lenient for custom clang version strings
[llvm-project.git] / clang / test / Analysis / scan-build / html_output.test
blobc2b509d9ef661126902f95828ffd61871f8b24b2
1 REQUIRES: shell
3 RUN: rm -rf %t.output_dir && mkdir %t.output_dir
4 RUN: %scan-build -o %t.output_dir %clang -S %S/Inputs/single_null_dereference.c \
5 RUN:     | FileCheck %s -check-prefix CHECK-STDOUT
7 // Test html output
9 CHECK-STDOUT: scan-build: Using '{{.*}}' for static analysis
10 CHECK-STDOUT: scan-build: 1 bug found.
11 CHECK-STDOUT: scan-build: Run 'scan-view {{.*}}' to examine bug reports.
13 // We expect an index file, a file for the report, and sibling support files.
14 RUN: ls %t.output_dir/*/ | FileCheck %s -check-prefix CHECK-FILENAMES
16 CHECK-FILENAMES: index.html
17 CHECK-FILENAMES: report-{{.*}}.html
18 CHECK-FILENAMES: scanview.css
19 CHECK-FILENAMES: sorttable.js
21 // Tests for the front page.
22 RUN: cat %t.output_dir/*/index.html \
23 RUN:     | FileCheck %s -check-prefix CHECK-INDEX-HTML
25 // Let's confirm that the new filtering facility is present.
26 CHECK-INDEX-HTML: Filter Results by File
28 // The index should have a link to the report for the single issue.
29 CHECK-INDEX-HTML: <!-- REPORTBUG id="report-{{.*}}.html" -->
32 // The report should describe the issue.
33 RUN: cat %t.output_dir/*/report-*.html \
34 RUN:     | FileCheck %s -check-prefix CHECK-REPORT-HTML
36 CHECK-REPORT-HTML: <!-- BUGTYPE Dereference of null pointer -->