Author: matthewbg
Date: Tue Feb  1 16:44:06 2011
New Revision: 124697

URL: http://llvm.org/viewvc/llvm-project?rev=124697&view=rev
Log:
Use tempfiles for the .o outputs.

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=124697&r1=124696&r2=124697&view=diff
==============================================================================
--- cfe/trunk/test/PCH/missing-file.cpp (original)
+++ cfe/trunk/test/PCH/missing-file.cpp Tue Feb  1 16:44:06 2011
@@ -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*) {}


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to