[cfe-commits] r139729 - /cfe/trunk/test/PCH/modified-header-error.c
Douglas Gregor
dgregor at apple.com
Wed Sep 14 13:38:11 PDT 2011
Author: dgregor
Date: Wed Sep 14 15:38:11 2011
New Revision: 139729
URL: http://llvm.org/viewvc/llvm-project?rev=139729&view=rev
Log:
Disable this test on win32. My "sleep 2" trick didn't seem to work
Modified:
cfe/trunk/test/PCH/modified-header-error.c
Modified: cfe/trunk/test/PCH/modified-header-error.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/PCH/modified-header-error.c?rev=139729&r1=139728&r2=139729&view=diff
==============================================================================
--- cfe/trunk/test/PCH/modified-header-error.c (original)
+++ cfe/trunk/test/PCH/modified-header-error.c Wed Sep 14 15:38:11 2011
@@ -3,10 +3,11 @@
// RUN: echo > %t.dir/header2.h
// RUN: cp %s %t.dir/t.c
// RUN: %clang_cc1 -x c-header %t.dir/header1.h -emit-pch -o %t.pch
-// RUN: sleep 2
// RUN: echo >> %t.dir/header2.h
// RUN: %clang_cc1 %t.dir/t.c -include-pch %t.pch -fsyntax-only 2>&1 | FileCheck %s
#include "header2.h"
// CHECK: fatal error: file {{.*}} has been modified since the precompiled header was built
+// DISABLE: win32
+
More information about the cfe-commits
mailing list