aboutsummaryrefslogtreecommitdiff
path: root/test/Coverage
diff options
context:
space:
mode:
Diffstat (limited to 'test/Coverage')
-rw-r--r--test/Coverage/html-diagnostics.c15
-rw-r--r--test/Coverage/verbose.c1
2 files changed, 16 insertions, 0 deletions
diff --git a/test/Coverage/html-diagnostics.c b/test/Coverage/html-diagnostics.c
new file mode 100644
index 0000000000..75d4e067fc
--- /dev/null
+++ b/test/Coverage/html-diagnostics.c
@@ -0,0 +1,15 @@
+// RUN: rm -rf %t &&
+// RUN: clang --html-diags=%t -checker-simple %s
+
+void f0(int x) {
+ int *p = &x;
+
+ if (x > 10) {
+ if (x == 22)
+ p = 0;
+ }
+
+ *p = 10;
+}
+
+
diff --git a/test/Coverage/verbose.c b/test/Coverage/verbose.c
new file mode 100644
index 0000000000..6157bad395
--- /dev/null
+++ b/test/Coverage/verbose.c
@@ -0,0 +1 @@
+// RUN: clang -fsyntax-only -v %s