From: Ted Kremenek Date: Tue, 12 Mar 2013 21:49:29 +0000 (+0000) Subject: Make modules.m test portable, now that autolinking is dependent on whether or not... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=054d047c0bfe83e68c922df3766cf3f2674ddaed;p=clang 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 --- diff --git a/test/Driver/modules.m b/test/Driver/modules.m index 7752e22b7e..69c79fca72 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