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
This commit is contained in:
Daniel Dunbar 2009-12-11 00:27:30 +00:00
Родитель 475ddb4547
Коммит 5c2609a1f9
1 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -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);