]> granicus.if.org Git - clang/commitdiff
Use tempfiles for the .o outputs.
authorMatt Beaumont-Gay <matthewbg@google.com>
Tue, 1 Feb 2011 22:44:06 +0000 (22:44 +0000)
committerMatt Beaumont-Gay <matthewbg@google.com>
Tue, 1 Feb 2011 22:44:06 +0000 (22:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124697 91177308-0d34-0410-b5e6-96231b3b80d8

test/PCH/missing-file.cpp

index f7d00e1aef458f0f2bf7f0d86ea84d979a5ca484..79397a0bde513d5b1ff253940fd7d6afe099de53 100644 (file)
@@ -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*) {}