diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-12 10:38:08 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-12 10:38:08 +0000 |
| commit | efbb1ab92a5bb3b749f99a6661fc6cf4ce8a050f (patch) | |
| tree | 6203c227ca71da47052febbde01acf997ff81954 /clang/test | |
| parent | 6bbc981d37c2820d1d5455b319d6b7c3fb855fae (diff) | |
| download | bcm5719-llvm-efbb1ab92a5bb3b749f99a6661fc6cf4ce8a050f.tar.gz bcm5719-llvm-efbb1ab92a5bb3b749f99a6661fc6cf4ce8a050f.zip | |
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.
llvm-svn: 163697
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/PCH/missing-file.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/test/PCH/missing-file.cpp b/clang/test/PCH/missing-file.cpp index 7d5cd111101..8edaaea79d9 100644 --- a/clang/test/PCH/missing-file.cpp +++ b/clang/test/PCH/missing-file.cpp @@ -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 |

