Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / clang / test / Modules / modulemap-allow-subdirectory-search.m
blobef6f9b1009babcee3cafd7cfaf2d9bab34e58845
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
4 // RUN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache -I %t/include %t/test.m
5 // RUN: %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache -I %t/include %t/test.m -fmodulemap-allow-subdirectory-search
6 // RUN: not %clang_cc1 -fsyntax-only -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache -I %t/include %t/test.m -fno-modulemap-allow-subdirectory-search
8 //--- include/UnrelatedName/Header.h
9 // empty
11 //--- include/UnrelatedName/module.modulemap
12 module UsefulCode {
13   header "Header.h"
14   export *
17 //--- test.m
18 @import UsefulCode;