From e9432fe9cac580222b69a973dca62267c507b37d Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Tue, 13 Aug 2019 16:31:41 +0100 Subject: [PATCH] Shrink reserve as failing in CI. --- src/test/func/two_alloc_types/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/func/two_alloc_types/main.cc b/src/test/func/two_alloc_types/main.cc index 9802b7c..b8ee2ff 100644 --- a/src/test/func/two_alloc_types/main.cc +++ b/src/test/func/two_alloc_types/main.cc @@ -45,7 +45,7 @@ int main() MemoryProviderStateMixin mp; - size_t size = 1ULL << 28; + size_t size = 1ULL << 26; oe_base = mp.reserve(&size, 1); oe_end = (uint8_t*)oe_base + size; std::cout << "Allocated region " << oe_base << " - " << oe_end << std::endl;