ASTImporterODRStrategiesTest.cpp
24.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
//===- unittest/AST/ASTImporterODRStrategiesTest.cpp -----------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Type-parameterized tests to verify the import behaviour in case of ODR
// violation.
//
//===----------------------------------------------------------------------===//
#include "ASTImporterFixtures.h"
namespace clang {
namespace ast_matchers {
using internal::BindableMatcher;
// DeclTy: Type of the Decl to check.
// Prototype: "Prototype" (forward declaration) of the Decl.
// Definition: A definition for the Prototype.
// ConflictingPrototype: A prototype with the same name but different
// declaration.
// ConflictingDefinition: A different definition for Prototype.
// ConflictingProtoDef: A definition for ConflictingPrototype.
// getPattern: Return a matcher that matches any of Prototype, Definition,
// ConflictingPrototype, ConflictingDefinition, ConflictingProtoDef.
struct Function {
using DeclTy = FunctionDecl;
static constexpr auto *Prototype = "void X(int);";
static constexpr auto *ConflictingPrototype = "void X(double);";
static constexpr auto *Definition = "void X(int a) {}";
static constexpr auto *ConflictingDefinition = "void X(double a) {}";
BindableMatcher<Decl> getPattern() {
return functionDecl(hasName("X"), unless(isImplicit()));
}
TestLanguage getLang() { return Lang_C99; }
};
struct Typedef {
using DeclTy = TypedefNameDecl;
static constexpr auto *Definition = "typedef int X;";
static constexpr auto *ConflictingDefinition = "typedef double X;";
BindableMatcher<Decl> getPattern() { return typedefNameDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX03; }
};
struct TypedefAlias {
using DeclTy = TypedefNameDecl;
static constexpr auto *Definition = "using X = int;";
static constexpr auto *ConflictingDefinition = "using X = double;";
BindableMatcher<Decl> getPattern() { return typedefNameDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX11; }
};
struct Enum {
using DeclTy = EnumDecl;
static constexpr auto *Definition = "enum X { a, b };";
static constexpr auto *ConflictingDefinition = "enum X { a, b, c };";
BindableMatcher<Decl> getPattern() { return enumDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX03; }
};
struct EnumClass {
using DeclTy = EnumDecl;
static constexpr auto *Definition = "enum class X { a, b };";
static constexpr auto *ConflictingDefinition = "enum class X { a, b, c };";
BindableMatcher<Decl> getPattern() { return enumDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX11; }
};
struct EnumConstant {
using DeclTy = EnumConstantDecl;
static constexpr auto *Definition = "enum E { X = 0 };";
static constexpr auto *ConflictingDefinition = "enum E { X = 1 };";
BindableMatcher<Decl> getPattern() { return enumConstantDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX03; }
};
struct Class {
using DeclTy = CXXRecordDecl;
static constexpr auto *Prototype = "class X;";
static constexpr auto *Definition = "class X {};";
static constexpr auto *ConflictingDefinition = "class X { int A; };";
BindableMatcher<Decl> getPattern() {
return cxxRecordDecl(hasName("X"), unless(isImplicit()));
}
TestLanguage getLang() { return Lang_CXX03; }
};
struct Variable {
using DeclTy = VarDecl;
static constexpr auto *Prototype = "extern int X;";
static constexpr auto *ConflictingPrototype = "extern float X;";
static constexpr auto *Definition = "int X;";
static constexpr auto *ConflictingDefinition = "float X;";
BindableMatcher<Decl> getPattern() { return varDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX03; }
};
struct ClassTemplate {
using DeclTy = ClassTemplateDecl;
static constexpr auto *Prototype = "template <class> class X;";
static constexpr auto *ConflictingPrototype = "template <int> class X;";
static constexpr auto *Definition = "template <class> class X {};";
static constexpr auto *ConflictingDefinition =
"template <class> class X { int A; };";
static constexpr auto *ConflictingProtoDef = "template <int> class X { };";
BindableMatcher<Decl> getPattern() {
return classTemplateDecl(hasName("X"), unless(isImplicit()));
}
TestLanguage getLang() { return Lang_CXX03; }
};
struct FunctionTemplate {
using DeclTy = FunctionTemplateDecl;
static constexpr auto *Definition0 =
R"(
template <class T>
void X(T a) {};
)";
// This is actually not a conflicting definition, but another primary template.
static constexpr auto *Definition1 =
R"(
template <class T>
void X(T* a) {};
)";
BindableMatcher<Decl> getPattern() {
return functionTemplateDecl(hasName("X"), unless(isImplicit()));
}
static std::string getDef0() { return Definition0; }
static std::string getDef1() { return Definition1; }
TestLanguage getLang() { return Lang_CXX03; }
};
static const internal::VariadicDynCastAllOfMatcher<Decl, VarTemplateDecl>
varTemplateDecl;
struct VarTemplate {
using DeclTy = VarTemplateDecl;
static constexpr auto *Definition =
R"(
template <class T>
constexpr T X = 0;
)";
static constexpr auto *ConflictingDefinition =
R"(
template <int>
constexpr int X = 0;
)";
BindableMatcher<Decl> getPattern() { return varTemplateDecl(hasName("X")); }
TestLanguage getLang() { return Lang_CXX14; }
};
struct ClassTemplateSpec {
using DeclTy = ClassTemplateSpecializationDecl;
static constexpr auto *Prototype =
R"(
template <class T> class X;
template <> class X<int>;
)";
static constexpr auto *Definition =
R"(
template <class T> class X;
template <> class X<int> {};
)";
static constexpr auto *ConflictingDefinition =
R"(
template <class T> class X;
template <> class X<int> { int A; };
)";
BindableMatcher<Decl> getPattern() {
return classTemplateSpecializationDecl(hasName("X"), unless(isImplicit()));
}
TestLanguage getLang() { return Lang_CXX03; }
};
// Function template specializations are all "full" specializations.
// Structural equivalency does not check the body of functions, so we cannot
// create conflicting function template specializations.
struct FunctionTemplateSpec {
using DeclTy = FunctionDecl;
static constexpr auto *Definition0 =
R"(
template <class T>
void X(T a);
template <> void X(int a) {};
)";
// This is actually not a conflicting definition, but another full
// specialization.
// Thus, during the import we would create a new specialization with a
// different type argument.
static constexpr auto *Definition1 =
R"(
template <class T>
void X(T a);
template <> void X(double a) {};
)";
BindableMatcher<Decl> getPattern() {
return functionDecl(hasName("X"), isExplicitTemplateSpecialization(),
unless(isImplicit()));
}
static std::string getDef0() { return Definition0; }
static std::string getDef1() { return Definition1; }
TestLanguage getLang() { return Lang_CXX03; }
};
static const internal::VariadicDynCastAllOfMatcher<
Decl, VarTemplateSpecializationDecl>
varTemplateSpecializationDecl;
struct VarTemplateSpec {
using DeclTy = VarTemplateSpecializationDecl;
static constexpr auto *Definition =
R"(
template <class T> T X = 0;
template <> int X<int> = 0;
)";
static constexpr auto *ConflictingDefinition =
R"(
template <class T> T X = 0;
template <> float X<int> = 1.0;
)";
BindableMatcher<Decl> getPattern() {
return varTemplateSpecializationDecl(hasName("X"), unless(isImplicit()));
}
TestLanguage getLang() { return Lang_CXX14; }
};
template <typename TypeParam, ASTImporter::ODRHandlingType ODRHandlingParam>
struct ODRViolation : ASTImporterOptionSpecificTestBase {
using DeclTy = typename TypeParam::DeclTy;
ODRViolation() { ODRHandling = ODRHandlingParam; }
static std::string getPrototype() { return TypeParam::Prototype; }
static std::string getConflictingPrototype() {
return TypeParam::ConflictingPrototype;
}
static std::string getDefinition() { return TypeParam::Definition; }
static std::string getConflictingDefinition() {
return TypeParam::ConflictingDefinition;
}
static std::string getConflictingProtoDef() {
return TypeParam::ConflictingProtoDef;
}
static BindableMatcher<Decl> getPattern() { return TypeParam().getPattern(); }
static TestLanguage getLang() { return TypeParam().getLang(); }
template <std::string (*ToTUContent)(), std::string (*FromTUContent)(),
void (*ResultChecker)(llvm::Expected<Decl *> &, Decl *, Decl *)>
void TypedTest_ImportAfter() {
Decl *ToTU = getToTuDecl(ToTUContent(), getLang());
auto *ToD = FirstDeclMatcher<DeclTy>().match(ToTU, getPattern());
Decl *FromTU = getTuDecl(FromTUContent(), getLang());
auto *FromD = FirstDeclMatcher<DeclTy>().match(FromTU, getPattern());
auto Result = importOrError(FromD, getLang());
ResultChecker(Result, ToTU, ToD);
}
// Check that a Decl has been successfully imported into a standalone redecl
// chain.
static void CheckImportedAsNew(llvm::Expected<Decl *> &Result, Decl *ToTU,
Decl *ToD) {
ASSERT_TRUE(isSuccess(Result));
Decl *ImportedD = *Result;
ASSERT_TRUE(ImportedD);
EXPECT_NE(ImportedD, ToD);
EXPECT_EQ(DeclCounter<DeclTy>().match(ToTU, getPattern()), 2u);
// There may be a hidden fwd spec decl before a function spec decl.
if (auto *ImportedF = dyn_cast<FunctionDecl>(ImportedD))
if (ImportedF->getTemplatedKind() ==
FunctionDecl::TK_FunctionTemplateSpecialization)
return;
EXPECT_FALSE(ImportedD->getPreviousDecl());
}
// Check that a Decl was not imported because of NameConflict.
static void CheckImportNameConflict(llvm::Expected<Decl *> &Result,
Decl *ToTU, Decl *ToD) {
EXPECT_TRUE(isImportError(Result, ImportError::NameConflict));
EXPECT_EQ(DeclCounter<DeclTy>().match(ToTU, getPattern()), 1u);
}
// Check that a Decl was not imported because lookup found the same decl.
static void CheckImportFoundExisting(llvm::Expected<Decl *> &Result,
Decl *ToTU, Decl *ToD) {
ASSERT_TRUE(isSuccess(Result));
EXPECT_EQ(DeclCounter<DeclTy>().match(ToTU, getPattern()), 1u);
}
void TypedTest_ImportConflictingDefAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingDefinition,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingProtoAfterProto() {
TypedTest_ImportAfter<getPrototype, getConflictingPrototype,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingProtoAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingPrototype,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingDefAfterProto() {
TypedTest_ImportAfter<getConflictingPrototype, getDefinition,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingProtoDefAfterProto() {
TypedTest_ImportAfter<getPrototype, getConflictingProtoDef,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingProtoAfterProtoDef() {
TypedTest_ImportAfter<getConflictingProtoDef, getPrototype,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingProtoDefAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingProtoDef,
CheckImportedAsNew>();
}
void TypedTest_ImportConflictingDefAfterProtoDef() {
TypedTest_ImportAfter<getConflictingProtoDef, getDefinition,
CheckImportedAsNew>();
}
void TypedTest_DontImportConflictingProtoAfterProto() {
TypedTest_ImportAfter<getPrototype, getConflictingPrototype,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingDefAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingDefinition,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingProtoAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingPrototype,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingDefAfterProto() {
TypedTest_ImportAfter<getConflictingPrototype, getDefinition,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingProtoDefAfterProto() {
TypedTest_ImportAfter<getPrototype, getConflictingProtoDef,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingProtoAfterProtoDef() {
TypedTest_ImportAfter<getConflictingProtoDef, getPrototype,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingProtoDefAfterDef() {
TypedTest_ImportAfter<getDefinition, getConflictingProtoDef,
CheckImportNameConflict>();
}
void TypedTest_DontImportConflictingDefAfterProtoDef() {
TypedTest_ImportAfter<getConflictingProtoDef, getDefinition,
CheckImportNameConflict>();
}
// Used for function templates and function template specializations.
void TypedTest_ImportDifferentDefAfterDef() {
TypedTest_ImportAfter<TypeParam::getDef0, TypeParam::getDef1,
CheckImportedAsNew>();
}
void TypedTest_DontImportSameDefAfterDef() {
TypedTest_ImportAfter<TypeParam::getDef0, TypeParam::getDef0,
CheckImportFoundExisting>();
}
};
// ==============================
// Define the parametrized tests.
// ==============================
#define ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE( \
TypeParam, ODRHandlingParam, NamePrefix, TestCase) \
using TypeParam##ODRHandlingParam = \
ODRViolation<TypeParam, ASTImporter::ODRHandlingType::ODRHandlingParam>; \
TEST_P(TypeParam##ODRHandlingParam, NamePrefix##TestCase) { \
TypedTest_##TestCase(); \
}
// clang-format off
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Typedef, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
TypedefAlias, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Enum, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
EnumClass, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
EnumConstant, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Class, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
VarTemplate, Liberal, ,
ImportConflictingDefAfterDef)
// Class and variable template specializations/instantiatons are always
// imported conservatively, because the AST holds the specializations in a set,
// and the key within the set is a hash calculated from the arguments of the
// specialization.
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplateSpec, Liberal, ,
DontImportConflictingDefAfterDef) // Don't import !!!
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
VarTemplateSpec, Liberal, ,
DontImportConflictingDefAfterDef) // Don't import !!!
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Typedef, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
TypedefAlias, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Enum, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
EnumClass, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
EnumConstant, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Class, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
VarTemplate, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplateSpec, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
VarTemplateSpec, Conservative, ,
DontImportConflictingDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Liberal, ,
ImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Liberal, ,
ImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Conservative, ,
DontImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Conservative, ,
DontImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingProtoAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Liberal, ,
ImportConflictingProtoAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingProtoAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Conservative, ,
DontImportConflictingProtoAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingProtoAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Liberal, ,
ImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Liberal, ,
ImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Function, Conservative, ,
DontImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
Variable, Conservative, ,
DontImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingProtoDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingProtoDefAfterProto)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingProtoAfterProtoDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingProtoAfterProtoDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingProtoDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingProtoDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Liberal, ,
ImportConflictingDefAfterProtoDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
ClassTemplate, Conservative, ,
DontImportConflictingDefAfterProtoDef)
// FunctionTemplate decls overload with each other. Thus, they are imported
// always as a new node, independently from any ODRHandling strategy.
//
// Function template specializations are "full" specializations. Structural
// equivalency does not check the body of functions, so we cannot create
// conflicting function template specializations. Thus, ODR handling strategies
// has nothing to do with function template specializations. Fully specialized
// function templates are imported as new nodes if their template arguments are
// different.
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplate, Liberal, ,
ImportDifferentDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplateSpec, Liberal, ,
ImportDifferentDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplate, Conservative, ,
ImportDifferentDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplateSpec, Conservative, ,
ImportDifferentDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplate, Liberal, ,
DontImportSameDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplateSpec, Liberal, ,
DontImportSameDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplate, Conservative, ,
DontImportSameDefAfterDef)
ASTIMPORTER_ODR_INSTANTIATE_TYPED_TEST_CASE(
FunctionTemplateSpec, Conservative, ,
DontImportSameDefAfterDef)
// ======================
// Instantiate the tests.
// ======================
// FIXME: These fail on Windows.
#if !defined(_WIN32)
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionConservative,
DefaultTestValuesForRunOptions, );
#endif
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, TypedefConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, TypedefAliasConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumClassConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumConstantConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, VariableConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassTemplateConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionTemplateConservative,
DefaultTestValuesForRunOptions, );
// FIXME: Make VarTemplate tests work.
//INSTANTIATE_TEST_CASE_P(
//ODRViolationTests, VarTemplateConservative,
//DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionTemplateSpecConservative,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassTemplateSpecConservative,
DefaultTestValuesForRunOptions, );
// FIXME: Make VarTemplateSpec tests work.
//INSTANTIATE_TEST_CASE_P(
//ODRViolationTests, VarTemplateSpecConservative,
//DefaultTestValuesForRunOptions, );
// FIXME: These fail on Windows.
#if !defined(_WIN32)
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionLiberal,
DefaultTestValuesForRunOptions, );
#endif
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, TypedefLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, TypedefAliasLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumClassLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, EnumConstantLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, VariableLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassTemplateLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionTemplateLiberal,
DefaultTestValuesForRunOptions, );
// FIXME: Make VarTemplate tests work.
// INSTANTIATE_TEST_CASE_P(
// ODRViolationTests, VarTemplateLiberal,
// DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, ClassTemplateSpecLiberal,
DefaultTestValuesForRunOptions, );
INSTANTIATE_TEST_CASE_P(
ODRViolationTests, FunctionTemplateSpecLiberal,
DefaultTestValuesForRunOptions, );
// FIXME: Make VarTemplateSpec tests work.
//INSTANTIATE_TEST_CASE_P(
//ODRViolationTests, VarTemplateSpecLiberal,
//DefaultTestValuesForRunOptions, );
// clang-format on
} // end namespace ast_matchers
} // end namespace clang