[libc] Fix dependency to unit tests, and quitting in non-GPU mode

Summary:
Fixes the lack of a dependency after changing the order of some
includes. Also we weren't running any tests as the GPU was always
disabling them. Fix the logic.
This commit is contained in:
Joseph Huber 2023-03-17 13:06:58 -05:00
parent 53076d34e3
commit 179a7f1ea2

View File

@ -5,6 +5,10 @@ add_dependencies(check-libc libc-unit-tests)
add_custom_target(exhaustive-check-libc)
add_custom_target(libc-long-running-tests)
if(NOT LIBC_TARGET_ARCHITECTURE_IS_GPU)
add_subdirectory(UnitTest)
endif()
add_header_library(
errno_setter_matcher
HDRS
@ -13,13 +17,13 @@ add_header_library(
libc.src.errno.errno
)
if(NOT TARGET libc.utils.gpu.loader OR NOT TARGET libc.startup.gpu.crt1)
if(LIBC_TARGET_ARCHITECTURE_IS_GPU AND
(NOT TARGET libc.utils.gpu.loader OR NOT TARGET libc.startup.gpu.crt1))
message(WARNING "Cannot build libc GPU tests, missing loader implementation")
return()
endif()
if(NOT LIBC_TARGET_ARCHITECTURE_IS_GPU)
add_subdirectory(UnitTest)
add_subdirectory(src)
add_subdirectory(utils)
endif()