mirror of
https://github.com/boostorg/unordered.git
synced 2025-05-11 13:34:06 +00:00
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
// Copyright (C) 2023 Christian Mazakas
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include "helpers.hpp"
|
|
#include <boost/config/workaround.hpp>
|
|
#include <boost/unordered/concurrent_flat_map_fwd.hpp>
|
|
#include <limits>
|
|
|
|
test::seed_t initialize_seed{32304628};
|
|
|
|
using test::default_generator;
|
|
using test::limited_range;
|
|
using test::sequential;
|
|
|
|
template <class T>
|
|
void swap_call(boost::unordered::concurrent_flat_map<T, T>& x1,
|
|
boost::unordered::concurrent_flat_map<T, T>& x2)
|
|
{
|
|
swap(x1, x2);
|
|
}
|
|
|
|
template <class T>
|
|
bool equal_call(boost::unordered::concurrent_flat_map<T, T>& x1,
|
|
boost::unordered::concurrent_flat_map<T, T>& x2)
|
|
{
|
|
return x1 == x2;
|
|
}
|
|
|
|
template <class T>
|
|
bool unequal_call(boost::unordered::concurrent_flat_map<T, T>& x1,
|
|
boost::unordered::concurrent_flat_map<T, T>& x2)
|
|
{
|
|
return x1 != x2;
|
|
}
|
|
|
|
#include <boost/unordered/concurrent_flat_map.hpp>
|
|
|
|
using map_type = boost::unordered::concurrent_flat_map<int, int>;
|
|
|
|
#if !defined(BOOST_CLANG_VERSION) || \
|
|
BOOST_WORKAROUND(BOOST_CLANG_VERSION, < 30700) || \
|
|
BOOST_WORKAROUND(BOOST_CLANG_VERSION, >= 30800)
|
|
// clang-3.7 seems to have a codegen bug here so we workaround it
|
|
UNORDERED_AUTO_TEST (fwd_swap_call) {
|
|
map_type x1, x2;
|
|
swap_call(x1, x2);
|
|
}
|
|
|
|
#endif
|
|
|
|
UNORDERED_AUTO_TEST (fwd_equal_call) {
|
|
map_type x1, x2;
|
|
BOOST_TEST(equal_call(x1, x2));
|
|
}
|
|
|
|
UNORDERED_AUTO_TEST (fwd_unequal_call) {
|
|
map_type x1, x2;
|
|
BOOST_TEST_NOT(unequal_call(x1, x2));
|
|
}
|
|
|
|
// this isn't the best place for this test but it's better than introducing a
|
|
// new file
|
|
UNORDERED_AUTO_TEST (max_size) {
|
|
map_type x1;
|
|
BOOST_TEST_EQ(
|
|
x1.max_size(), std::numeric_limits<typename map_type::size_type>::max());
|
|
}
|
|
|
|
RUN_TESTS()
|