aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-10-04 20:46:41 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-10-04 20:46:41 +0000
commitae3c16cc544d21b49936d9da51fd1f8ca8bc064e (patch)
treef9952d721156d04800d1c25ae90bbc3af6b29dc0
parentf7a726b5f220c0ea924c47b4b1f59b99eb2e5712 (diff)
Add test/Driver.
- env-include-paths.c is XFAIL as it exposed a bug. Add test/Coverage. - For tests which achieve code coverage but don't validate anything. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57070 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Coverage/html-diagnostics.c15
-rw-r--r--test/Coverage/verbose.c1
-rw-r--r--test/Driver/env-include-paths.c27
3 files changed, 43 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
diff --git a/test/Driver/env-include-paths.c b/test/Driver/env-include-paths.c
new file mode 100644
index 0000000000..de4ba5b1b7
--- /dev/null
+++ b/test/Driver/env-include-paths.c
@@ -0,0 +1,27 @@
+// RUN: clang -fsyntax-only -verify -DAS_SOURCE %s &&
+// RUN: env CPATH="" clang -fsyntax-only -verify -DAS_SOURCE %s &&
+// RUN: env CPATH="xyz:xyz" clang -fsyntax-only -verify -DAS_SOURCE %s &&
+// RUN: env CPATH="xyz::xyz" clang -fsyntax-only -verify -DSHOULD_FIND -DAS_SOURCE %s &&
+// RUN: env CPATH="../Driver" clang -fsyntax-only -verify -DSHOULD_FIND -DAS_SOURCE %s
+// XFAIL
+
+#ifdef AS_SOURCE
+#undef AS_SOURCE
+
+#define AS_INCLUDE
+
+#ifdef SHOULD_FIND
+#include <env-include-paths.c>
+#else
+/* expected-error {{file not found}} */ #include <env-include-paths.c>
+#endif
+
+#undef AS_INCLUDE
+
+#endif
+
+#ifdef AS_INCLUDE
+
+/* expected-warning {{Hello}} */ #warning "Hello"
+
+#endif