From 054d047c0bfe83e68c922df3766cf3f2674ddaed Mon Sep 17 00:00:00 2001
From: Ted Kremenek <kremenek@apple.com>
Date: Tue, 12 Mar 2013 21:49:29 +0000
Subject: [PATCH] Make modules.m test portable, now that autolinking is
 dependent on whether or not the target uses the integrated assembler.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176902 91177308-0d34-0410-b5e6-96231b3b80d8
---
 test/Driver/modules.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/Driver/modules.m b/test/Driver/modules.m
index 7752e22b7eb..69c79fca724 100644
--- a/test/Driver/modules.m
+++ b/test/Driver/modules.m
@@ -4,7 +4,7 @@
 // RUN: %clang -fmodules -fno-modules -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-MODULES %s
 // CHECK-HAS-MODULES: -fmodules
 
-// RUN: %clang -fmodules -fno-modules -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-AUTOLINK %s
+// RUN: %clang -target x86_64-apple-darwin10 -fmodules -fno-modules -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-AUTOLINK %s
 // CHECK-HAS-AUTOLINK: -fmodules-autolink
 
 // RUN: %clang -fmodules -fno-modules -fno-modules-autolink -fmodules -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-AUTOLINK %s
-- 
GitLab