From c5df4ec06903de0b9082a13c88f117303f296058 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Thu, 25 May 2023 08:41:26 -0700 Subject: [PATCH] Remove unused test --- test/cfoa/exception_constructor_tests.cpp | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/test/cfoa/exception_constructor_tests.cpp b/test/cfoa/exception_constructor_tests.cpp index e6c2f993..998a6411 100644 --- a/test/cfoa/exception_constructor_tests.cpp +++ b/test/cfoa/exception_constructor_tests.cpp @@ -154,27 +154,6 @@ namespace { } } - template - void iterator_range_allocator_constructor(G gen, test::random_generator rg) - { - auto values = make_random_values(1024 * 16, [&] { return gen(rg); }); - - raii::reset_counts(); - - bool was_thrown = false; - - enable_exceptions(); - try { - map_type x(values.begin(), values.end(), allocator_type(3)); - } catch (...) { - was_thrown = true; - } - disable_exceptions(); - - BOOST_TEST(was_thrown); - check_raii_counts(); - } - template void move_constructor(G gen, test::random_generator rg) { auto values = make_random_values(1024 * 16, [&] { return gen(rg); });