aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-05-03 19:09:37 +0000
committerTed Kremenek <kremenek@apple.com>2009-05-03 19:09:37 +0000
commit953e8abf9be9c3f7e17b3d972b933b241093b691 (patch)
tree2364c7b2b20e4b788a9d47f9aaaeb812fb13479c
parent43907e87c776391d7d96da04b48e7bf06d8baafc (diff)
Add failing test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70791 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/xfail_wine_crash.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Analysis/xfail_wine_crash.c b/test/Analysis/xfail_wine_crash.c
new file mode 100644
index 0000000000..55143f8805
--- /dev/null
+++ b/test/Analysis/xfail_wine_crash.c
@@ -0,0 +1,12 @@
+// RUN: clang-cc -checker-cfref -analyze -analyzer-store=region %s &&
+// RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic %s
+// XFAIL
+
+// When this test passes we should put it in the misc-ps.m test file.
+
+void foo() {
+ long x = 0;
+ char *y = (char *) &x;
+ if (!*y)
+ return;
+}