From fb5ba06d6cfc2c14c8393763a964d34e176ef872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Tue, 13 Jan 2026 01:27:35 +0100 Subject: [PATCH] Increase shared_memory size as tests with overaligned ints require much more space --- test/vector_test.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/vector_test.hpp b/test/vector_test.hpp index 7218221..e74f832 100644 --- a/test/vector_test.hpp +++ b/test/vector_test.hpp @@ -81,7 +81,7 @@ int vector_test() std::string process_name; test::get_process_id_name(process_name); - const int Memsize = 128u*1024u; + const int Memsize = 256u*1024u; const char *const shMemName = process_name.c_str(); const int max = 100;