diff options
author | Ted Kremenek <kremenek@apple.com> | 2013-03-12 21:49:29 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2013-03-12 21:49:29 +0000 |
commit | 054d047c0bfe83e68c922df3766cf3f2674ddaed (patch) | |
tree | 5384662205790954470c5a7769f03eb96ab8b470 | |
parent | 5ca58a0aca0320b8980921e8ee55112668817939 (diff) |
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
-rw-r--r-- | test/Driver/modules.m | 2 |
1 files changed, 1 insertions, 1 deletions
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 |