[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Driver / module-output.cppm
blobd0cab0cbcb31c713c0576039a2720d41c6c25f3e
1 // It is annoying to handle different slash direction
2 // in Windows and Linux. So we disable the test on Windows
3 // here.
4 // REQUIRES: !system-windows
5 // On AIX, the default output for `-c` may be `.s` instead of `.o`,
6 // which makes the test fail. So disable the test on AIX.
7 // REQUIRES: !system-aix
8 //
9 // RUN: rm -rf %t
10 // RUN: mkdir %t
11 // RUN: split-file %s %t
13 // Tests that the .pcm file will be generated in the same directory with the specified
14 // output and the name of the .pcm file should be the same with the input file.
15 // RUN: %clang -std=c++20 %t/Hello.cppm -fmodule-output -c -o %t/output/Hello.o \
16 // RUN:   -### 2>&1 | FileCheck %t/Hello.cppm
18 // Tests that the output file will be generated in the input directory if the output
19 // file is not the corresponding object file.
20 // RUN: %clang -std=c++20 %t/Hello.cppm %t/AnotherModule.cppm -fmodule-output -o \
21 // RUN:   %t/output/a.out -### 2>&1 | FileCheck  %t/AnotherModule.cppm
23 // Tests that clang will reject the command line if it specifies -fmodule-output with
24 // multiple archs.
25 // RUN: not %clang %t/Hello.cppm -fmodule-output -arch i386 -arch x86_64 -### -target \
26 // RUN:   x86_64-apple-darwin 2>&1 | FileCheck %t/Hello.cppm -check-prefix=MULTIPLE-ARCH
28 // Tests that the .pcm file will be generated in the same path with the specified one
29 // in the comamnd line.
30 // RUN: %clang -std=c++20 %t/Hello.cppm -fmodule-output=%t/pcm/Hello.pcm -o %t/Hello.o \
31 // RUN:   -c -### 2>&1 | FileCheck %t/Hello.cppm --check-prefix=CHECK-SPECIFIED
33 // RUN: %clang -std=c++20 %t/Hello.cppm -fmodule-output=%t/Hello.pcm -fmodule-output -c -fsyntax-only \
34 // RUN:   -### 2>&1 | FileCheck %t/Hello.cppm --check-prefix=CHECK-NOT-USED
36 //--- Hello.cppm
37 export module Hello;
39 // CHECK: "-emit-module-interface" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/output/Hello.pcm" "-x" "c++" "{{.*}}/Hello.cppm"
40 // CHECK: "-emit-obj" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/output/Hello.o" "-x" "pcm" "{{.*}}/output/Hello.pcm"
42 // MULTIPLE-ARCH: option '-fmodule-output' can't be used with multiple arch options
44 // CHECK-SPECIFIED: "-emit-module-interface" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/pcm/Hello.pcm" "-x" "c++" "{{.*}}/Hello.cppm"
45 // CHECK-SPECIFIED: "-emit-obj" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/Hello.o" "-x" "pcm" "{{.*}}/pcm/Hello.pcm"
47 // CHECK-NOT-USED-NOT: warning: argument unused during compilation: '-fmodule-output'
48 // CHECK-NOT-USED-NOT: warning: argument unused during compilation: '-fmodule-output=Hello.pcm'
49 // CHECK-NOT-USED-NOT: "-fmodule-output"
50 // CHECK-NOT-USED-NOT: "-fmodule-output="
52 //--- AnotherModule.cppm
53 export module AnotherModule;
54 // CHECK: "-emit-module-interface" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/Hello.pcm" "-x" "c++" "{{.*}}/Hello.cppm"
55 // CHECK: "-emit-obj" {{.*}}"-main-file-name" "Hello.cppm" {{.*}}"-o" "{{.*}}/Hello-{{.*}}.o" "-x" "pcm" "{{.*}}/Hello.pcm"
56 // CHECK: "-emit-module-interface" {{.*}}"-main-file-name" "AnotherModule.cppm" {{.*}}"-o" "{{.*}}/AnotherModule.pcm" "-x" "c++" "{{.*}}/AnotherModule.cppm"
57 // CHECK: "-emit-obj" {{.*}}"-main-file-name" "AnotherModule.cppm" {{.*}}"-o" "{{.*}}/AnotherModule-{{.*}}.o" "-x" "pcm" "{{.*}}/AnotherModule.pcm"