Lines Matching refs:test
54 test-funopen
55 test-strtod
56 test-strchr
57 test-memset
58 test-put
59 test-efcvt
60 test-fma
61 test-sprintf-percent-n
64 test-memcpy_s
65 test-memset_s
66 test-memmove_s
67 test-strcat_s
68 test-strcpy_s
69 test-strerror_s
70 test-strerrorlen_s
71 test-strncat_s
72 test-strncpy_s
73 test-strnlen_s
74 test-sprintf_s
78 test-except
81 function(picolibc_test test)
82 add_executable(${test} ${test}.c ${ARGN})
84 target_link_libraries(${test} LINK_PUBLIC ${PICOLIBC_TEST_LINK_LIBRARIES})
86 …target_compile_options(${test} PRIVATE -fno-builtin ${PICOLIBC_COMPILE_OPTIONS} -D_TEST_LONG_DOUBL…
88 target_link_options(${test} PRIVATE ${TARGET_COMPILE_OPTIONS})
91 NAME ${test}
92 COMMAND "${PICOLIBC_SCRIPTS}/run-arm" $<TARGET_FILE:${test}>
94 set_tests_properties(${test} PROPERTIES SKIP_RETURN_CODE 77)
97 foreach(test IN LISTS tests)
98 picolibc_test(${test})
101 foreach(test IN LISTS tests_fail)
102 picolibc_test(${test})
103 set_tests_properties(${test} PROPERTIES WILL_FAIL ON)