• Home
  • Raw
  • Download

Lines Matching +full:modules +full:- +full:2

1 // RUN: rm -rf %t
3 // -------------------------------
4 // Build chained modules A, B, and C
5 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
6 // RUN: -fmodule-name=a -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/a.p…
7 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
9 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
10 // RUN: -fmodule-file=%t/a.pcm \
11 // RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/b.p…
12 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
14 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
15 // RUN: -fmodule-file=%t/b.pcm \
16 // RUN: -fmodule-name=c -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/c.p…
17 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
19 // CHECK-NO-IMPLICIT-BUILD-NOT: building module
21 // -------------------------------
23 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
24 // RUN: -fmodule-name=b -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/b-n…
25 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-B-NO-A %s
27 // CHECK-B-NO-A: While building module 'b':
28 // CHECK-B-NO-A: building module 'a' as
30 // -------------------------------
31 // Check that we can use the explicitly-built A, B, and C modules.
32 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
33 // RUN: -I%S/Inputs/explicit-build \
34 // RUN: -fmodule-file=%t/a.pcm \
35 // RUN: -verify %s -DHAVE_A
37 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
38 // RUN: -I%S/Inputs/explicit-build \
39 // RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
40 // RUN: -fmodule-file=%t/a.pcm \
41 // RUN: -verify %s -DHAVE_A
43 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
44 // RUN: -I%S/Inputs/explicit-build \
45 // RUN: -fmodule-file=%t/b.pcm \
46 // RUN: -verify %s -DHAVE_A -DHAVE_B
48 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
49 // RUN: -I%S/Inputs/explicit-build \
50 // RUN: -fmodule-file=%t/a.pcm \
51 // RUN: -fmodule-file=%t/b.pcm \
52 // RUN: -verify %s -DHAVE_A -DHAVE_B
54 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
55 // RUN: -I%S/Inputs/explicit-build \
56 // RUN: -fmodule-file=%t/a.pcm \
57 // RUN: -fmodule-file=%t/b.pcm \
58 // RUN: -fmodule-file=%t/c.pcm \
59 // RUN: -verify %s -DHAVE_A -DHAVE_B -DHAVE_C
61 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
62 // RUN: -I%S/Inputs/explicit-build \
63 // RUN: -fmodule-file=%t/a.pcm \
64 // RUN: -fmodule-file=%t/c.pcm \
65 // RUN: -verify %s -DHAVE_A -DHAVE_B -DHAVE_C
67 // -------------------------------
68 // Check that -fmodule-file= in a module build makes the file transitively
70 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fno-implicit-modules -Rmodul…
71 // RUN: -fmodule-file=%t/b.pcm \
72 // RUN: -fmodule-name=d -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/d.p…
73 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
75 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fno-implicit-modules -Rmodul…
76 // RUN: -I%S/Inputs/explicit-build \
77 // RUN: -fmodule-file=%t/d.pcm \
78 // RUN: -verify %s -DHAVE_A -DHAVE_B
84 const int use_a = a; // expected-error {{undeclared identifier}}
89 static_assert(b == 2, "");
91 const int use_b = b; // expected-error {{undeclared identifier}}
98 const int use_c = c; // expected-error {{undeclared identifier}}
102 // expected-no-diagnostics
105 // -------------------------------
106 // Check that we can use a mixture of implicit and explicit modules.
107 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
108 // RUN: -I%S/Inputs/explicit-build \
109 // RUN: -fmodule-file=%t/b-not-a.pcm \
110 // RUN: -verify %s -DHAVE_A -DHAVE_B
112 // -------------------------------
114 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
115 // RUN: -fmodule-file=%t/a.pcm \
116 // RUN: -fmodule-file=%t/b-not-a.pcm \
117 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
119 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
120 // RUN: -fmodule-file=%t/a.pcm \
121 // RUN: -fmodule-file=%t/b-not-a.pcm \
122 // RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
123 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
125 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
126 // RUN: -fmodule-name=a -emit-module %S/Inputs/explicit-build/module.modulemap -o %t/a-a…
127 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
129 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
130 // RUN: -fmodule-file=%t/a.pcm \
131 // RUN: -fmodule-file=%t/a-alt.pcm \
132 // RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
133 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
135 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
136 // RUN: -fmodule-file=%t/a-alt.pcm \
137 // RUN: -fmodule-file=%t/a.pcm \
138 // RUN: -fmodule-map-file=%S/Inputs/explicit-build/module.modulemap \
139 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-MULTIPLE-AS %s
141 // CHECK-MULTIPLE-AS: error: module 'a' is defined in both '{{.*[/\\]}}a{{.*}}.pcm' and '{{.*[/\\]}…
143 // -------------------------------
144 // Try to import a PCH with -fmodule-file=
145 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
146 // RUN: -fmodule-name=a -emit-pch %S/Inputs/explicit-build/a.h -o %t/a.pch -DBUILDING_A_…
147 // RUN: 2>&1 | FileCheck --check-prefix=CHECK-NO-IMPLICIT-BUILD %s --allow-empty
149 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
150 // RUN: -fmodule-file=%t/a.pch \
151 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-A-AS-PCH %s
153 // CHECK-A-AS-PCH: fatal error: AST file '{{.*}}a.pch' was not built as a module
155 // -------------------------------
156 // Try to import a non-AST file with -fmodule-file=
160 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
161 // RUN: -fmodule-file=%t/not.pcm \
162 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-BAD-FILE %s
164 // CHECK-BAD-FILE: fatal error: file '{{.*}}not.pcm' is not a valid precompiled module file
166 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
167 // RUN: -fmodule-file=%t/nonexistent.pcm \
168 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-NO-FILE %s
170 // CHECK-NO-FILE: fatal error: module file '{{.*}}nonexistent.pcm' not found
172 // RUN: mv %t/a.pcm %t/a-tmp.pcm
173 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
174 // RUN: -I%S/Inputs/explicit-build \
175 // RUN: -fmodule-file=%t/c.pcm \
176 // RUN: %s 2>&1 | FileCheck --check-prefix=CHECK-NO-FILE-INDIRECT %s
177 // RUN: mv %t/a-tmp.pcm %t/a.pcm
179 // CHECK-NO-FILE-INDIRECT: error: module file '{{.*}}a.pcm' not found
180 // CHECK-NO-FILE-INDIRECT-NEXT: note: imported by module 'b' in '{{.*}}b.pcm'
181 // CHECK-NO-FILE-INDIRECT-NEXT: note: imported by module 'c' in '{{.*}}c.pcm'
182 // CHECK-NO-FILE-INDIRECT-NOT: note:
184 // -------------------------------
188 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Rmod…
189 // RUN: -I%S/Inputs/explicit-build \
190 // RUN: -fmodule-file=%t/c.pcm \
191 // RUN: -verify %s -DHAVE_A -DHAVE_B -DHAVE_C
195 // RUN: cp %t/b-not-a.pcm %t/b.pcm
197 …/ RUN: not %clang_cc1 -x c++ -std=c++11 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -
198 // RUN: -I%S/Inputs/explicit-build \
199 // RUN: -fmodule-file=%t/c.pcm \
200 // RUN: %s -DHAVE_A -DHAVE_B -DHAVE_C 2>&1 | FileCheck --check-prefix=CHECK-MISMATCHED-B…
202 // CHECK-MISMATCHED-B: fatal error: module file '{{.*}}b.pcm' is out of date and needs to be r…
203 // CHECK-MISMATCHED-B-NEXT: note: imported by module 'c'
204 // CHECK-MISMATCHED-B-NOT: note: