From 1088d4ad749fd79cc1c3aa9c55b926bbf5ef64f7 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Tue, 28 Jun 2022 11:17:14 -0700 Subject: [PATCH] [libc] disable algorithm_test.cpp temporarily The unit tests introduced in patch D128335 are causing build failures, and the fix is non-trivial. This patch disables these tests temporarily until a proper fix can be implemented. Reviewed By: lntue Differential Revision: https://reviews.llvm.org/D128746 --- libc/test/src/string/memory_utils/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/test/src/string/memory_utils/CMakeLists.txt b/libc/test/src/string/memory_utils/CMakeLists.txt index 3e2e678..df481ee15 100644 --- a/libc/test/src/string/memory_utils/CMakeLists.txt +++ b/libc/test/src/string/memory_utils/CMakeLists.txt @@ -4,7 +4,7 @@ add_libc_unittest( libc_string_unittests SRCS address_test.cpp - algorithm_test.cpp + # algorithm_test.cpp backend_test.cpp elements_test.cpp memory_access_test.cpp -- 2.7.4