Skip to content

[libc] disable failing include tests #114619

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 36 additions & 35 deletions libc/test/include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -372,41 +372,42 @@ add_libc_test(
libc.include.llvm-libc-macros.math_function_macros
)

add_libc_test(
issignaling_c_test
C_TEST
UNIT_TEST_ONLY
SUITE
libc_include_tests
SRCS
issignaling_test.c
COMPILE_OPTIONS
-Wall
-Werror
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
libc.src.math.issignaling
libc.src.math.issignalingf
libc.src.math.issignalingl
)

add_libc_test(
iscanonical_c_test
C_TEST
UNIT_TEST_ONLY
SUITE
libc_include_tests
SRCS
iscanonical_test.c
COMPILE_OPTIONS
-Wall
-Werror
DEPENDS
libc.include.llvm-libc-macros.math_function_macros
libc.src.math.iscanonical
libc.src.math.iscanonicalf
libc.src.math.iscanonicall
)
# TODO(https://github.com/llvm/llvm-project/issues/114618): fix linkage failures
# add_libc_test(
# issignaling_c_test
# C_TEST
# UNIT_TEST_ONLY
# SUITE
# libc_include_tests
# SRCS
# issignaling_test.c
# COMPILE_OPTIONS
# -Wall
# -Werror
# DEPENDS
# libc.include.llvm-libc-macros.math_function_macros
# libc.src.math.issignaling
# libc.src.math.issignalingf
# libc.src.math.issignalingl
# )

# add_libc_test(
# iscanonical_c_test
# C_TEST
# UNIT_TEST_ONLY
# SUITE
# libc_include_tests
# SRCS
# iscanonical_test.c
# COMPILE_OPTIONS
# -Wall
# -Werror
# DEPENDS
# libc.include.llvm-libc-macros.math_function_macros
# libc.src.math.iscanonical
# libc.src.math.iscanonicalf
# libc.src.math.iscanonicall
# )

add_libc_test(
isinf_c_test
Expand Down
Loading