[libc] [llvm] [libc][NFC] Rename `uint_test` into `big_int_test` for consistency (PR #87875)
Guillaume Chatelet via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 6 02:30:46 PDT 2024
https://github.com/gchatelet created https://github.com/llvm/llvm-project/pull/87875
None
>From 8e583e691027ad1d65c443c23d3ee29650b89201 Mon Sep 17 00:00:00 2001
From: Guillaume Chatelet <gchatelet at google.com>
Date: Sat, 6 Apr 2024 09:30:26 +0000
Subject: [PATCH] [libc][NFC] Rename `uint_test` into `big_int_test` for
consistency
---
libc/test/src/__support/CMakeLists.txt | 4 ++--
.../llvm-project-overlay/libc/test/src/__support/BUILD.bazel | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
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",
More information about the llvm-commits
mailing list