Files
llvm-project/libc/test/integration/CMakeLists.txt
Jeff Bailey fc9f14e424 [libc] Switch check-libc from CTest to lit (#193798)
Renamed check-libc-lit to check-libc, replacing the old CTest-driven
target. Dependencies now use -build targets (e.g.
libc-hermetic-tests-build) so that check-libc only builds test
executables and delegates execution to lit.
2026-04-24 08:20:43 +01:00

12 lines
315 B
CMake

add_custom_target(libc-integration-tests)
add_dependencies(check-libc libc-integration-tests-build)
function(add_libc_integration_test_suite name)
add_custom_target(${name})
add_dependencies(libc-integration-tests ${name})
endfunction()
add_subdirectory(startup)
add_subdirectory(scudo)
add_subdirectory(src)