1 | // RUN: rm -rf %t.dst %t.cache |
2 | // RUN: mkdir -p %t.dst/folder-with-modulemap %t.dst/pch-folder |
3 | // RUN: echo '#import "folder-with-modulemap/included.h"' > %t.dst/header.h |
4 | // RUN: echo 'extern int MyModuleVersion;' > %t.dst/folder-with-modulemap/MyModule.h |
5 | // RUN: echo '@import MyModule;' > %t.dst/folder-with-modulemap/included.h |
6 | // RUN: echo 'module MyModule { header "MyModule.h" }' > %t.dst/folder-with-modulemap/module.modulemap |
7 | |
8 | // RUN: %clang -o %t.dst/pch-folder/header.pch -x objective-c-header -fmodules-cache-path=%t.cache -fmodules %t.dst/header.h |
9 | // RUN: not %clang -fsyntax-only -fmodules-cache-path=%t.cache -fmodules %s -include-pch %t.dst/pch-folder/header.pch 2>&1 | FileCheck %s |
10 | |
11 | void test() { |
12 | (void)MyModuleVersion; // should be found by implicit import |
13 | } |
14 | |
15 | // CHECK: module 'MyModule' in AST file '{{.*MyModule.*pcm}}' (imported by AST file '[[PCH:.*header.pch]]') is not defined in any loaded module map file; maybe you need to load '[[PATH:.*folder-with-modulemap]] |
16 | // CHECK: consider adding '[[PATH]]' to the header search path |
17 | // CHECK: imported by '[[PCH]]' |
18 | |