From: Daniel Dunbar Date: Fri, 11 Dec 2009 00:27:30 +0000 (+0000) Subject: Remove this test for now, it is flaky. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c2609a1f9c68bbbb3dc665df212988133e85439;p=clang Remove this test for now, it is flaky. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91083 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/PCH/inconsistent-pch.c b/test/PCH/inconsistent-pch.c deleted file mode 100644 index 9573118c53..0000000000 --- a/test/PCH/inconsistent-pch.c +++ /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);