From 96d6494de808bd72ce9ec59f21617c53d5a0194f Mon Sep 17 00:00:00 2001 From: div72 Date: Mon, 16 Sep 2024 15:39:40 +0300 Subject: [PATCH] build/cmake: disable LevelDB tests LevelDB fault_injection_tests are indeterministically causing test failures. This is making the CI randomly red. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cd42521cce..6a20e90be6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -35,7 +35,7 @@ if(SYSTEM_LEVELDB) else() set(CMAKE_POLICY_DEFAULT_CMP0077 NEW) - set(LEVELDB_BUILD_TESTS ${ENABLE_TESTS}) + set(LEVELDB_BUILD_TESTS OFF) set(LEVELDB_BUILD_BENCHMARKS OFF) set(LEVELDB_INSTALL OFF)