brintos

brintos / llvm-project-archived public Read only

0
0
Text · 284 B · 2645742 Raw
17 lines · plain
1if(NOT LLVM_LIBC_FULL_BUILD OR LIBC_TARGET_OS_IS_GPU)2  return()3endif()4 5add_custom_target(libc_errno_unittests)6 7add_libc_unittest(8  errno_test9  SUITE10    libc_errno_unittests11  SRCS12    errno_test.cpp13  DEPENDS14    libc.src.errno.errno15    libc.test.UnitTest.ErrnoCheckingTest16)17