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

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2025-03-16 02:40:27 +03:00
parent 2e6d9fd4d4
commit ef9fd1f3fb

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) {