mirror of
https://github.com/boostorg/unordered.git
synced 2025-05-12 14:01:43 +00:00
Remove problematic test from clang-3.7 runner
This commit is contained in:
parent
68ddaba57a
commit
ec945810eb
@ -3,7 +3,7 @@
|
|||||||
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
|
#include <boost/config/workaround.hpp>
|
||||||
#include <boost/unordered/concurrent_flat_map_fwd.hpp>
|
#include <boost/unordered/concurrent_flat_map_fwd.hpp>
|
||||||
|
|
||||||
test::seed_t initialize_seed{32304628};
|
test::seed_t initialize_seed{32304628};
|
||||||
@ -37,11 +37,15 @@ bool unequal_call(boost::unordered::concurrent_flat_map<T, T>& x1,
|
|||||||
|
|
||||||
using map_type = boost::unordered::concurrent_flat_map<int, int>;
|
using map_type = boost::unordered::concurrent_flat_map<int, int>;
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(BOOST_CLANG_VERSION, != 30700)
|
||||||
|
|
||||||
UNORDERED_AUTO_TEST (fwd_swap_call) {
|
UNORDERED_AUTO_TEST (fwd_swap_call) {
|
||||||
map_type x1, x2;
|
map_type x1, x2;
|
||||||
swap_call(x1, x2);
|
swap_call(x1, x2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
UNORDERED_AUTO_TEST (fwd_equal_call) {
|
UNORDERED_AUTO_TEST (fwd_equal_call) {
|
||||||
map_type x1, x2;
|
map_type x1, x2;
|
||||||
BOOST_TEST(equal_call(x1, x2));
|
BOOST_TEST(equal_call(x1, x2));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user