[libc-commits] [libc] [llvm] [libc][NFC] Rename `uint_test` into `big_int_test` for consistency (PR #87875)
via libc-commits
libc-commits at lists.llvm.org
Sat Apr 6 02:31:15 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Guillaume Chatelet (gchatelet)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/87875.diff
2 Files Affected:
- (modified) libc/test/src/__support/CMakeLists.txt (+2-2)
- (modified) utils/bazel/llvm-project-overlay/libc/test/src/__support/BUILD.bazel (+2-2)
``````````diff
diff --git a/libc/test/src/__support/CMakeLists.txt b/libc/test/src/__support/CMakeLists.txt
index 02ee91d0dc99a0..5d1230f5f3a70f 100644
--- a/libc/test/src/__support/CMakeLists.txt
+++ b/libc/test/src/__support/CMakeLists.txt
@@ -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
diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/__support/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/__support/BUILD.bazel
index 0ed5951904a0e4..3980ef60c197ed 100644
--- a/utils/bazel/llvm-project-overlay/libc/test/src/__support/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/test/src/__support/BUILD.bazel
@@ -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",
``````````
</details>
https://github.com/llvm/llvm-project/pull/87875
More information about the libc-commits
mailing list