Skip to content

[libc][NFC] Rename uint_test into big_int_test for consistency #87875

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 2 commits into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions libc/test/src/__support/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ endif()

if(NOT LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
add_libc_test(
uint_test
big_int_test
SUITE
libc-support-tests
SRCS
uint_test.cpp
big_int_test.cpp
DEPENDS
libc.src.__support.big_int
libc.src.__support.CPP.optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ libc_test(
)

libc_test(
name = "uint_test",
srcs = ["uint_test.cpp"],
name = "big_int_test",
srcs = ["big_int_test.cpp"],
deps = [
"//libc:__support_big_int",
"//libc:__support_cpp_optional",
Expand Down