mdbx-testing: уменьшение кол-ва итераций `extra/crunched-delete` для CI.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2024-10-08 12:24:30 +03:00
parent ecf862a4f6
commit ca2dbf0933
2 changed files with 6 additions and 0 deletions

View File

@ -656,6 +656,10 @@ else()
set(MDBX_ENABLE_TESTS FALSE) set(MDBX_ENABLE_TESTS FALSE)
endif() endif()
if(CI)
add_definitions(-DMDBX_CI="${CI}")
endif()
################################################################################ ################################################################################
################################################################################ ################################################################################

View File

@ -7,6 +7,8 @@
#if MDBX_DEBUG || !defined(NDEBUG) || defined(__APPLE__) || defined(_WIN32) #if MDBX_DEBUG || !defined(NDEBUG) || defined(__APPLE__) || defined(_WIN32)
#define NN 1024 #define NN 1024
#elif defined(MDBX_CI)
#define NN 4096
#else #else
#define NN 16384 #define NN 16384
#endif #endif