From: Bob Wilson Date: Sun, 30 Sep 2012 00:58:28 +0000 (+0000) Subject: Specify a full target in an attempt to appease buildbots. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33e3911c0864f45dca7d1eca9158ba1ce9f057be;p=clang Specify a full target in an attempt to appease buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164908 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/pic.c b/test/Driver/pic.c index 23d9771cdd..5b69dba36d 100644 --- a/test/Driver/pic.c +++ b/test/Driver/pic.c @@ -95,11 +95,11 @@ // RUN: | FileCheck %s --check-prefix=CHECK-DYNAMIC-NO-PIC2 // Checks for ARM -// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=6.0.0 -### 2>&1 \ +// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=6.0.0 -### 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-PIC2 -// RUN: %clang -c %s -arch armv7 -mkernel -miphoneos-version-min=6.0.0 -### 2>&1 \ +// RUN: %clang -c %s -target armv7-apple-ios -mkernel -miphoneos-version-min=6.0.0 -### 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-PIC2 -// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=5.0.0 -### 2>&1 \ +// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=5.0.0 -### 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-NO-PIC -// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=6.0.0 -static -### 2>&1 \ +// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=6.0.0 -static -### 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-NO-PIC