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.
12 lines
315 B
CMake
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)
|