1 // This test checks that a module map with a textual header can be marked as
4 // RUN: rm -rf %t && mkdir %t
5 // RUN: split-file %s %t
8 module X
{ textual header
"X.h" }
13 module Y
{ textual header
"Y.h" }
18 module A
{ header
"A.h" export
* }
22 // RUN: %clang_cc1 -fmodules -emit-module %t/A.modulemap -fmodule-name=A -o %t/A0.pcm \
23 // RUN: -fmodule-map-file=%t/X.modulemap
24 // RUN: %clang_cc1 -module-file-info %t/A0.pcm | FileCheck %s --check-prefix=A0 --implicit-check-not=Y.modulemap
25 // A0: Input file: {{.*}}X.modulemap
27 // RUN: %clang_cc1 -fmodules -emit-module %t/A.modulemap -fmodule-name=A -o %t/A1.pcm \
28 // RUN: -fmodule-map-file=%t/X.modulemap -fmodule-map-file=%t/Y.modulemap
29 // RUN: %clang_cc1 -module-file-info %t/A0.pcm | FileCheck %s --check-prefix=A1 \
30 // RUN: --implicit-check-not=Y.modulemap
31 // A1: Input file: {{.*}}X.modulemap
33 // RUN: diff %t/A0.pcm %t/A1.pcm
36 module B
{ header
"B.h" export
* }
41 // RUN: %clang_cc1 -fmodules -emit-module %t/B.modulemap -fmodule-name=B -o %t/B.pcm \
42 // RUN: -fmodule-file=A=%t/A0.pcm \
43 // RUN: -fmodule-map-file=%t/A.modulemap -fmodule-map-file=%t/X.modulemap -fmodule-map-file=%t/Y.modulemap
44 // RUN: %clang_cc1 -module-file-info %t/B.pcm | FileCheck %s --check-prefix=B \
45 // RUN: --implicit-check-not=X.modulemap --implicit-check-not=Y.modulemap
46 // B: Input file: {{.*}}B.modulemap