mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
907f409972
Add unit tests for functions in LLVMFrontendOpenACC. As notice in D91470 these functions were not tested as well as the ones for OpenMP (D91643). This patch add tests for the OpenACC part. Reviewed By: Meinersbur Differential Revision: https://reviews.llvm.org/D91653
23 lines
351 B
CMake
23 lines
351 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Analysis
|
|
Core
|
|
FrontendOpenMP
|
|
FrontendOpenACC
|
|
Support
|
|
Passes
|
|
TransformUtils
|
|
)
|
|
|
|
add_llvm_unittest(LLVMFrontendTests
|
|
OpenACCTest.cpp
|
|
OpenMPContextTest.cpp
|
|
OpenMPIRBuilderTest.cpp
|
|
OpenMPParsingTest.cpp
|
|
|
|
DEPENDS
|
|
acc_gen
|
|
omp_gen
|
|
)
|
|
|
|
target_link_libraries(LLVMFrontendTests PRIVATE LLVMTestingSupport)
|