From 8028d332db662e12e9492bed2e21d46b6fb94266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 18 Aug 2024 01:50:33 +0200 Subject: [PATCH] Add 8*pointer_alignment test (32/64 bytes in 32/64 bit systems) --- test/memory_algorithm_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/memory_algorithm_test.cpp b/test/memory_algorithm_test.cpp index 2fff125..5d9d795 100644 --- a/test/memory_algorithm_test.cpp +++ b/test/memory_algorithm_test.cpp @@ -83,6 +83,9 @@ int main () if(test_rbtree_best_fit<4*void_ptr_align>()){ return 1; } + if (test_rbtree_best_fit<8*void_ptr_align>()) { + return 1; + } return 0; }