Test export

This commit is contained in:
Guillaume Chatelet
2025-10-07 07:44:40 +00:00
committed by Corentin Le Molgat
parent 53f70212f8
commit 8710e86e8a
28 changed files with 478 additions and 957 deletions

View File

@@ -93,6 +93,7 @@ cc_library(
cc_test(
name = "radix_sort_test",
size = "medium",
srcs = ["radix_sort_test.cc"],
copts = select({
"@platforms//os:windows": ["/Zc:preprocessor"],

View File

@@ -65,4 +65,9 @@ if(BUILD_TESTING)
GTest::gmock
)
endif()
# These tests are too long so we disable them.
set_tests_properties(
cxx_algorithms_radix_sort_test
PROPERTIES DISABLED TRUE)
endif()

View File

@@ -34,4 +34,9 @@ if(BUILD_TESTING)
foreach(FILE_NAME IN LISTS JAVA_SRCS)
add_java_test(FILE_NAME ${FILE_NAME})
endforeach()
# These tests are too long so we disable them.
set_tests_properties(
java_algorithms_KnapsackSolverTest
PROPERTIES DISABLED TRUE)
endif()