Searched refs:dst_bnd (Results 1 – 1 of 1) sorted by relevance
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_queue.cpp | 1832 tbb::concurrent_bounded_queue<std::vector<int>> dst_bnd(src_bnd.get_allocator()); in test_move_assignment_test_equal() local 1834 …REQUIRE_MESSAGE(src_bnd.get_allocator() == dst_bnd.get_allocator(), "Incorrect test setup: allocat… in test_move_assignment_test_equal() 1836 dst_bnd = std::move(src_bnd); in test_move_assignment_test_equal() 1841 …test_check_move_allocator<tbb::concurrent_bounded_queue<std::vector<int>>>(src_bnd, dst_bnd, cpy_b… in test_move_assignment_test_equal() 1842 REQUIRE_MESSAGE(cpy_bnd.size() == dst_bnd.size(), "Queues are not equal"); in test_move_assignment_test_equal() 1865 …unded_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>> dst_bnd(dst_alloc); in test_move_assignment_test_unequal() local 1867 …REQUIRE_MESSAGE(src_bnd.get_allocator() != dst_bnd.get_allocator(), "Incorrect test setup: allocat… in test_move_assignment_test_unequal() 1871 dst_bnd = std::move(src_bnd); in test_move_assignment_test_unequal() 1876 …ue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>>>(src_bnd, dst_bnd, cpy_bnd); in test_move_assignment_test_unequal() 1877 REQUIRE_MESSAGE(dst_bnd.size() == cpy_bnd.size(), "Queues are not equal"); in test_move_assignment_test_unequal()
|