diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2011-02-01 22:44:06 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2011-02-01 22:44:06 +0000 |
commit | 06cebfd9a5047f40255f2d94b8b46f900bf10b15 (patch) | |
tree | 77237d30f432f882e65bdb34aa43f72da1c25680 /clang/test/PCH/missing-file.cpp | |
parent | 1dd5646da0ad86e245be7a11473c2ea5ef7b8b00 (diff) | |
download | bcm5719-llvm-06cebfd9a5047f40255f2d94b8b46f900bf10b15.tar.gz bcm5719-llvm-06cebfd9a5047f40255f2d94b8b46f900bf10b15.zip |
Use tempfiles for the .o outputs.
llvm-svn: 124697
Diffstat (limited to 'clang/test/PCH/missing-file.cpp')
-rw-r--r-- | clang/test/PCH/missing-file.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/PCH/missing-file.cpp b/clang/test/PCH/missing-file.cpp index f7d00e1aef4..79397a0bde5 100644 --- a/clang/test/PCH/missing-file.cpp +++ b/clang/test/PCH/missing-file.cpp @@ -8,15 +8,15 @@ // RUN: rm %t.h // Check diagnostic with location in original source: -// RUN: %clang_cc1 -include-pch %t.h.pch -Wpadded -emit-obj %s 2> %t.stderr +// RUN: %clang_cc1 -include-pch %t.h.pch -Wpadded -emit-obj -o %t.o %s 2> %t.stderr // RUN: grep 'bytes to align' %t.stderr // Check diagnostic with 2nd location in original source: -// RUN: not %clang_cc1 -DREDECL -include-pch %t.h.pch -emit-obj %s 2> %t.stderr +// RUN: not %clang_cc1 -DREDECL -include-pch %t.h.pch -emit-obj -o %t.o %s 2> %t.stderr // RUN: grep 'previous definition is here' %t.stderr // Check diagnostic with instantiation location in original source: -// RUN: not %clang_cc1 -DINSTANTIATION -include-pch %t.h.pch -emit-obj %s 2> %t.stderr +// RUN: not %clang_cc1 -DINSTANTIATION -include-pch %t.h.pch -emit-obj -o %t.o %s 2> %t.stderr // RUN: grep 'cannot be used prior to' %t.stderr void qq(S*) {} |