mirror of
https://github.com/isar/libmdbx.git
synced 2025-04-01 02:32:57 +08:00
mdbx-tests: уменьшение кол-ва итераций в extra/crunched-delete для 32-битных сборок во избежания MDBX_MAP_FULL
.
This commit is contained in:
parent
2e6d9fd4d4
commit
ef9fd1f3fb
@ -7,8 +7,10 @@
|
|||||||
|
|
||||||
#if MDBX_DEBUG || !defined(NDEBUG) || defined(__APPLE__) || defined(_WIN32)
|
#if MDBX_DEBUG || !defined(NDEBUG) || defined(__APPLE__) || defined(_WIN32)
|
||||||
#define NN 1024
|
#define NN 1024
|
||||||
#else
|
#elif UINTPTR_MAX > 0xffffFFFFul || ULONG_MAX > 0xffffFFFFul
|
||||||
#define NN 4096
|
#define NN 4096
|
||||||
|
#else
|
||||||
|
#define NN 2048
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::string format_va(const char *fmt, va_list ap) {
|
std::string format_va(const char *fmt, va_list ap) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user