]> granicus.if.org Git - clang/commitdiff
Remove this test for now, it is flaky.
authorDaniel Dunbar <daniel@zuster.org>
Fri, 11 Dec 2009 00:27:30 +0000 (00:27 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Fri, 11 Dec 2009 00:27:30 +0000 (00:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91083 91177308-0d34-0410-b5e6-96231b3b80d8

test/PCH/inconsistent-pch.c [deleted file]

diff --git a/test/PCH/inconsistent-pch.c b/test/PCH/inconsistent-pch.c
deleted file mode 100644 (file)
index 9573118..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Check that we don't crash in an inconsistent situation created by the stat
-// cache.
-
-// RUN: echo 'void f0(float *a0);' > %t.h
-// RUN: clang-cc -emit-pch -o %t.h.pch %t.h
-// RUN: rm %t.h
-// RUN: not clang-cc -include-pch %t.h.pch %s 2> %t.err
-// RUN: FileCheck %s < %t.err
-
-// CHECK: inconsistent-pch.c:{{.*}}:{{.*}}: error: conflicting types for 'f0'
-// CHECK: void f0(int *a0);
-// CHECK: inconsistent-pch.c.tmp.h:{{.*}}:{{.*}}: note: previous declaration is here
-// CHECK: 2 diagnostics generated.
-
-void f0(int *a0);