[cfe-commits] r163697 - /cfe/trunk/test/PCH/missing-file.cpp

NAKAMURA Takumi geek4civic at gmail.com
Wed Sep 12 03:38:08 PDT 2012


Author: chapuni
Date: Wed Sep 12 05:38:08 2012
New Revision: 163697

URL: http://llvm.org/viewvc/llvm-project?rev=163697&view=rev
Log:
clang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.

%t.h might be touched by scanners as a hot file on Windows, to fail to remove %.h with single run.

Modified:
    cfe/trunk/test/PCH/missing-file.cpp

Modified: cfe/trunk/test/PCH/missing-file.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/PCH/missing-file.cpp?rev=163697&r1=163696&r2=163697&view=diff
==============================================================================
--- cfe/trunk/test/PCH/missing-file.cpp (original)
+++ cfe/trunk/test/PCH/missing-file.cpp Wed Sep 12 05:38:08 2012
@@ -4,7 +4,10 @@
 // RUN: echo 'struct S{char c; int i; }; void foo() {}' > %t.h
 // RUN: echo 'template <typename T> void tf() { T::foo(); }' >> %t.h
 // RUN: %clang_cc1 -x c++ -emit-pch -o %t.h.pch %t.h
-// RUN: rm %t.h
+
+// %t.h might be touched by scanners as a hot file on Windows,
+// to fail to remove %.h with single run.
+// RUN: rm %t.h || rm %t.h || rm %t.h
 
 // Check diagnostic with location in original source:
 // RUN: %clang_cc1 -include-pch %t.h.pch -Wpadded -emit-obj -o %t.o %s 2> %t.stderr





More information about the cfe-commits mailing list