[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git] / clang / unittests / StaticAnalyzer / CMakeLists.txt
blobf5da86e5456030f08fd8645dff680f8301b854da
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_unittest(StaticAnalysisTests
7   AnalyzerOptionsTest.cpp
8   APSIntTypeTest.cpp
9   BugReportInterestingnessTest.cpp
10   CallDescriptionTest.cpp
11   CallEventTest.cpp
12   ConflictingEvalCallsTest.cpp
13   ExprEngineVisitTest.cpp
14   FalsePositiveRefutationBRVisitorTest.cpp
15   IsCLibraryFunctionTest.cpp
16   MemRegionDescriptiveNameTest.cpp
17   NoStateChangeFuncVisitorTest.cpp
18   ParamRegionTest.cpp
19   RangeSetTest.cpp
20   RegisterCustomCheckersTest.cpp
21   StoreTest.cpp
22   SymbolReaperTest.cpp
23   SValSimplifyerTest.cpp
24   SValTest.cpp
25   TestReturnValueUnderConstruction.cpp
26   Z3CrosscheckOracleTest.cpp
27   )
29 clang_target_link_libraries(StaticAnalysisTests
30   PRIVATE
31   clangBasic
32   clangAnalysis
33   clangAST
34   clangASTMatchers
35   clangCrossTU
36   clangFrontend
37   clangSerialization
38   clangStaticAnalyzerCore
39   clangStaticAnalyzerFrontend
40   clangTooling
41   )
43 target_link_libraries(StaticAnalysisTests
44   PRIVATE
45   clangTesting
46   )