1 // Test generation and import of user and system C++20 Header Units.
5 // RUN: split-file %s %t
9 // RUN: %clang_cc1 -std=c++20 -emit-header-unit -I user \
10 // RUN: -xc++-user-header hu-01.h -o hu-01.pcm
12 // RUN: %clang_cc1 -std=c++20 -module-file-info hu-01.pcm | \
13 // RUN: FileCheck --check-prefix=CHECK-HU %s -DTDIR=%t
15 // RUN: %clang_cc1 -std=c++20 -emit-module-interface imp-hu-01.cpp \
16 // RUN: -I user -fmodule-file=hu-01.pcm -o B.pcm -Rmodule-import \
17 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-IMP %s -DTDIR=%t
20 // RUN: %clang_cc1 -std=c++20 -emit-header-unit -isystem system \
21 // RUN: -xc++-system-header hu-02.h -o hu-02.pcm
23 // RUN: %clang_cc1 -std=c++20 -module-file-info hu-02.pcm | \
24 // RUN: FileCheck --check-prefix=CHECK-HU2 %s -DTDIR=%t
26 // RUN: %clang_cc1 -std=c++20 -emit-module-interface imp-hu-02.cpp \
27 // RUN: -isystem system -fmodule-file=hu-02.pcm -o C.pcm \
28 // RUN: -Rmodule-import 2>&1 | \
29 // RUN: FileCheck --check-prefix=CHECK-SYS-IMP %s -DTDIR=%t
31 // check absolute path
32 // RUN: %clang_cc1 -std=c++20 -emit-header-unit \
33 // RUN: -xc++-header-unit-header %t/hu-03.h -o hu-03.pcm
35 // RUN: %clang_cc1 -std=c++20 -module-file-info hu-03.pcm | \
36 // RUN: FileCheck --check-prefix=CHECK-HU3 %s -DTDIR=%t
41 // CHECK-HU: ====== C++20 Module structure ======
42 // CHECK-HU-NEXT: Header Unit 'user{{[/\\]}}hu-01.h' is the Primary Module at index #1
51 // CHECK-IMP: remark: importing module 'user{{[/\\]}}hu-01.h' from 'hu-01.pcm'
52 // expected-no-diagnostics
57 // CHECK-HU2: ====== C++20 Module structure ======
58 // CHECK-HU2-NEXT: Header Unit 'system{{[/\\]}}hu-02.h' is the Primary Module at index #1
69 // CHECK-SYS-IMP: remark: importing module 'system{{[/\\]}}hu-02.h' from 'hu-02.pcm'
70 // expected-no-diagnostics
75 // CHECK-HU3: ====== C++20 Module structure ======
76 // CHECK-HU3-NEXT: Header Unit '[[TDIR]]/hu-03.h' is the Primary Module at index #1
77 // expected-no-diagnostics