We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c316a commit 500221cCopy full SHA for 500221c
features/storage/TESTS/kvstore/static_tests/main.cpp
@@ -34,7 +34,8 @@ static const size_t buffer_size = 20;
34
static const int num_of_threads = 3;
35
static const char num_of_keys = 3;
36
37
-static const int heap_alloc_threshold_size = 4096;
+/* Forked 3 threads plus misc, so minimum (4 * OS_STACK_SIZE) heap are required. */
38
+static const int heap_alloc_threshold_size = 4 * OS_STACK_SIZE;
39
40
static const char *keys[] = {"key1", "key2", "key3"};
41
0 commit comments