[cfe-commits] r130439 - /cfe/trunk/test/CodeGenObjC/bitfield-access.m

Daniel Dunbar daniel at zuster.org
Thu Apr 28 14:23:38 PDT 2011


Author: ddunbar
Date: Thu Apr 28 16:23:38 2011
New Revision: 130439

URL: http://llvm.org/viewvc/llvm-project?rev=130439&view=rev
Log:
tests: Tweak test to not write to the same temporary twice, in the hopes of avoiding sporadic win32 failures about renaming a temporary.

Modified:
    cfe/trunk/test/CodeGenObjC/bitfield-access.m

Modified: cfe/trunk/test/CodeGenObjC/bitfield-access.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/bitfield-access.m?rev=130439&r1=130438&r2=130439&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/bitfield-access.m (original)
+++ cfe/trunk/test/CodeGenObjC/bitfield-access.m Thu Apr 28 16:23:38 2011
@@ -1,7 +1,8 @@
-// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-llvm -o %t %s
-// RUN: FileCheck -check-prefix=CHECK-I386 < %t %s
-// RUN: %clang_cc1 -triple armv6-apple-darwin10 -target-abi apcs-gnu -emit-llvm -o %t %s
-// RUN: FileCheck -check-prefix=CHECK-ARM < %t %s
+// RUN: %clang_cc1 -triple i386-apple-darwin10 -emit-llvm -o %t1 %s
+// RUN: FileCheck -check-prefix=CHECK-I386 < %t1 %s
+
+// RUN: %clang_cc1 -triple armv6-apple-darwin10 -target-abi apcs-gnu -emit-llvm -o %t2 %s
+// RUN: FileCheck -check-prefix=CHECK-ARM < %t2 %s
 
 @interface I0 { 
 @public





More information about the cfe-commits mailing list