[cfe-commits] r66974 - in /cfe/trunk/test: CodeGenObjC/link-errors.m SemaObjC/property-1.m
Daniel Dunbar
daniel at zuster.org
Fri Mar 13 15:48:51 PDT 2009
Author: ddunbar
Date: Fri Mar 13 17:48:51 2009
New Revision: 66974
URL: http://llvm.org/viewvc/llvm-project?rev=66974&view=rev
Log:
Force triple for a couple test cases.
Modified:
cfe/trunk/test/CodeGenObjC/link-errors.m
cfe/trunk/test/SemaObjC/property-1.m
Modified: cfe/trunk/test/CodeGenObjC/link-errors.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/link-errors.m?rev=66974&r1=66973&r2=66974&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenObjC/link-errors.m (original)
+++ cfe/trunk/test/CodeGenObjC/link-errors.m Fri Mar 13 17:48:51 2009
@@ -1,8 +1,8 @@
-// RUN: clang -fnext-runtime -emit-llvm -o %t %s &&
+// RUN: clang -triple i386-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep '.lazy_reference .objc_class_name_A' %t | count 1 &&
// RUN: grep '.lazy_reference .objc_class_name_Unknown' %t | count 1 &&
// RUN: grep '.lazy_reference .objc_class_name_Protocol' %t | count 1 &&
-// RUN: clang -DWITH_IMPL -fnext-runtime -emit-llvm -o %t %s &&
+// RUN: clang -triple i386-apple-darwin9 -DWITH_IMPL -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep '.lazy_reference .objc_class_name_Root' %t | count 1
@interface Root
Modified: cfe/trunk/test/SemaObjC/property-1.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/property-1.m?rev=66974&r1=66973&r2=66974&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/property-1.m (original)
+++ cfe/trunk/test/SemaObjC/property-1.m Fri Mar 13 17:48:51 2009
@@ -1,4 +1,4 @@
-// RUN: clang -fsyntax-only -verify %s
+// RUN: clang -triple i386-apple-darwin9 -fsyntax-only -verify %s
@interface I
{
More information about the cfe-commits
mailing list