diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-01-22 23:19:39 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-01-22 23:19:39 +0000 |
commit | 9eb229bfe545a3b8484f15e42dfe567d6f3c0fcc (patch) | |
tree | c3e6a40328a353f1248d744d7bfeaff720288bd9 /clang/test/Modules/lookup.cpp | |
parent | 39536724a7332857a1b8ba8afd9da6a252e9f4e8 (diff) | |
download | bcm5719-llvm-9eb229bfe545a3b8484f15e42dfe567d6f3c0fcc.tar.gz bcm5719-llvm-9eb229bfe545a3b8484f15e42dfe567d6f3c0fcc.zip |
Require a module.map file to load a module
Removes some old code that allowed a module to be loaded from a pcm file
even if the module.map could not be found. Also update a number of
tests that relied on the old behavior.
llvm-svn: 199852
Diffstat (limited to 'clang/test/Modules/lookup.cpp')
-rw-r--r-- | clang/test/Modules/lookup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Modules/lookup.cpp b/clang/test/Modules/lookup.cpp index efd88f47e35..bfe0307a0b2 100644 --- a/clang/test/Modules/lookup.cpp +++ b/clang/test/Modules/lookup.cpp @@ -26,8 +26,8 @@ void f() { // RUN: rm -rf %t // RUN: %clang_cc1 -fmodules -x objective-c++ -emit-module -fmodules-cache-path=%t -fmodule-name=lookup_left_cxx %S/Inputs/module.map -verify // RUN: %clang_cc1 -fmodules -x objective-c++ -emit-module -fmodules-cache-path=%t -fmodule-name=lookup_right_cxx %S/Inputs/module.map -verify -// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t %s -verify -// RUN: %clang_cc1 -fmodules -ast-print -x objective-c++ -fmodules-cache-path=%t %s | FileCheck -check-prefix=CHECK-PRINT %s +// RUN: %clang_cc1 -fmodules -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s -verify +// RUN: %clang_cc1 -fmodules -ast-print -x objective-c++ -fmodules-cache-path=%t -I %S/Inputs %s | FileCheck -check-prefix=CHECK-PRINT %s // FIXME: When we have a syntax for modules in C++, use that. // CHECK-PRINT: int *f0(int *); |