Files
clang-p2996/libc/test/utils/UnitTest/CMakeLists.txt
Joseph Huber 69c0b2febe [libc][NFC] Remove all trailing spaces from libc (#82831)
Summary:
There are a lot of random training spaces on various lines. This patch
just got rid of all of them with `sed 's/\ \+$//g'.
2024-02-23 16:34:00 -06:00

18 lines
355 B
CMake

if(LIBC_TARGET_OS_IS_GPU)
return()
endif()
add_custom_target(libc_unittest_tests)
add_libc_unittest(
testfilter_test
SUITE
libc_unittest_tests
SRCS
testfilter_test.cpp
DEPENDS
# TODO(michaelrj): Remove this dependancy. It's only here because all unit
# tests must have at least one dependancy.
libc.src.__support.CPP.bit
)