mdbx-tests: уменьшение кол-ва итераций в extra/crunched-delete для 32-битных сборок во избежания MDBX_MAP_FULL (backport).

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2025-03-20 01:49:17 +03:00
parent 1dfe1e872e
commit 529f2c2380

View File

@ -7,8 +7,10 @@
#if MDBX_DEBUG || !defined(NDEBUG) || defined(__APPLE__) || defined(_WIN32)
#define NN 1024
#else
#elif UINTPTR_MAX > 0xffffFFFFul || ULONG_MAX > 0xffffFFFFul
#define NN 4096
#else
#define NN 2048
#endif
std::string format_va(const char *fmt, va_list ap) {