]> granicus.if.org Git - clang/commitdiff
Add failing test case.
authorTed Kremenek <kremenek@apple.com>
Sun, 3 May 2009 19:09:37 +0000 (19:09 +0000)
committerTed Kremenek <kremenek@apple.com>
Sun, 3 May 2009 19:09:37 +0000 (19:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70791 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/xfail_wine_crash.c [new file with mode: 0644]

diff --git a/test/Analysis/xfail_wine_crash.c b/test/Analysis/xfail_wine_crash.c
new file mode 100644 (file)
index 0000000..55143f8
--- /dev/null
@@ -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;
+}