]> granicus.if.org Git - clang/commitdiff
clang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 12 Sep 2012 10:38:08 +0000 (10:38 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 12 Sep 2012 10:38:08 +0000 (10:38 +0000)
%t.h might be touched by scanners as a hot file on Windows, to fail to remove %.h with single run.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163697 91177308-0d34-0410-b5e6-96231b3b80d8

test/PCH/missing-file.cpp

index 7d5cd111101c743a69adbd3c1707f31c83e5eea8..8edaaea79d96c4351dbd902c39dd0cb714bdaa29 100644 (file)
@@ -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