mirror of
https://github.com/isar/libmdbx.git
synced 2025-04-01 14:52:57 +08:00
mdbx-tests: уменьшение кол-ва итераций в extra/crunched-delete для 32-битных сборок во избежания MDBX_MAP_FULL
(backport).
This commit is contained in:
parent
1dfe1e872e
commit
529f2c2380
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user