comparison unittests/IR/CMakeLists.txt @ 147:c2174574ed3a

LLVM 10
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 14 Aug 2019 16:55:33 +0900
parents 3a76565eade5
children
comparison
equal deleted inserted replaced
134:3a76565eade5 147:c2174574ed3a
4 Core 4 Core
5 Support 5 Support
6 Passes 6 Passes
7 ) 7 )
8 8
9 set(IRSources 9 add_llvm_unittest(IRTests
10 AsmWriterTest.cpp 10 AsmWriterTest.cpp
11 AttributesTest.cpp 11 AttributesTest.cpp
12 BasicBlockTest.cpp 12 BasicBlockTest.cpp
13 CFGBuilder.cpp 13 CFGBuilder.cpp
14 ConstantRangeTest.cpp 14 ConstantRangeTest.cpp
15 ConstantsTest.cpp 15 ConstantsTest.cpp
16 DataLayoutTest.cpp
16 DebugInfoTest.cpp 17 DebugInfoTest.cpp
17 DebugTypeODRUniquingTest.cpp 18 DebugTypeODRUniquingTest.cpp
18 DeferredDominanceTest.cpp
19 DominatorTreeTest.cpp 19 DominatorTreeTest.cpp
20 DominatorTreeBatchUpdatesTest.cpp 20 DominatorTreeBatchUpdatesTest.cpp
21 FunctionTest.cpp 21 FunctionTest.cpp
22 PassBuilderCallbacksTest.cpp 22 PassBuilderCallbacksTest.cpp
23 IRBuilderTest.cpp 23 IRBuilderTest.cpp
24 InstructionsTest.cpp 24 InstructionsTest.cpp
25 IntrinsicsTest.cpp 25 IntrinsicsTest.cpp
26 LegacyPassManagerTest.cpp 26 LegacyPassManagerTest.cpp
27 MDBuilderTest.cpp 27 MDBuilderTest.cpp
28 ManglerTest.cpp
28 MetadataTest.cpp 29 MetadataTest.cpp
29 ModuleTest.cpp 30 ModuleTest.cpp
30 PassManagerTest.cpp 31 PassManagerTest.cpp
31 PatternMatch.cpp 32 PatternMatch.cpp
32 TypeBuilderTest.cpp 33 TimePassesTest.cpp
33 TypesTest.cpp 34 TypesTest.cpp
34 UseTest.cpp 35 UseTest.cpp
35 UserTest.cpp 36 UserTest.cpp
36 ValueHandleTest.cpp 37 ValueHandleTest.cpp
37 ValueMapTest.cpp 38 ValueMapTest.cpp
38 ValueTest.cpp 39 ValueTest.cpp
40 VectorTypesTest.cpp
39 VerifierTest.cpp 41 VerifierTest.cpp
40 WaymarkTest.cpp 42 WaymarkTest.cpp
41 ) 43 )
42 44
43 # HACK: Declare a couple of source files as optionally compiled to satisfy the 45 target_link_libraries(IRTests PRIVATE LLVMTestingSupport)
44 # missing-file-checker in LLVM's weird CMake build.
45 set(LLVM_OPTIONAL_SOURCES
46 ValueMapTest.cpp
47 )
48
49 add_llvm_unittest(IRTests
50 ${IRSources}
51 )