-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5738eb8
commit 06a1e4b
Showing
5 changed files
with
263 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
test/sources/libcxx/unord.multimap/unord.multimap.cnstr/from_range.pass.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Modified for https://github.com/morzhovets/momo project. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 | ||
|
||
// template<container-compatible-range<value_type> R> | ||
// unordered_multimap(from_range_t, R&& rg, size_type n = see below, | ||
// const hasher& hf = hasher(), const key_equal& eql = key_equal(), | ||
// const allocator_type& a = allocator_type()); // C++23 | ||
// | ||
// template<container-compatible-range<value_type> R> | ||
// unordered_multimap(from_range_t, R&& rg, size_type n, const allocator_type& a) | ||
// : unordered_multimap(from_range, std::forward<R>(rg), n, hasher(), key_equal(), a) { } // C++23 | ||
// | ||
// template<container-compatible-range<value_type> R> | ||
// unordered_multimap(from_range_t, R&& rg, size_type n, const hasher& hf, const allocator_type& a) | ||
// : unordered_multimap(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { } // C++23 | ||
|
||
void test_duplicates() { | ||
using T = std::pair<const int, char>; | ||
std::array input = { | ||
T{1, 'a'}, T{2, 'a'}, T{3, 'a'}, T{3, 'b'}, T{3, 'c'}, T{2, 'b'}, T{4, 'a'} | ||
}; | ||
auto c = std::unordered_multimap<int, char>(std::from_range, input); | ||
assert(std::ranges::is_permutation(input, c)); | ||
} | ||
|
||
int main(int, char**) { | ||
using T = std::pair<const int, int>; | ||
for_all_iterators_and_allocators<T>([]<class Iter, class Sent, class Alloc>() { | ||
test_unordered_map<std::unordered_multimap, int, int, Iter, Sent, test_hash<int>, test_equal_to<int>, Alloc>(); | ||
}); | ||
test_unordered_map_move_only<std::unordered_multimap>(); | ||
test_duplicates(); | ||
|
||
static_assert(test_map_constraints<std::unordered_multimap, int, int, double, double>()); | ||
|
||
test_map_exception_safety_throwing_copy<std::unordered_multimap>(); | ||
test_map_exception_safety_throwing_allocator<std::unordered_multimap, int, int>(); | ||
|
||
return 0; | ||
} |
109 changes: 109 additions & 0 deletions
109
test/sources/libcxx/unord.multimap/unord.multimap.modifiers/insert_iter_iter.pass.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Modified for https://github.com/morzhovets/momo project. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// <unordered_map> | ||
|
||
// template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>, | ||
// class Alloc = allocator<pair<const Key, T>>> | ||
// class unordered_multimap | ||
|
||
// template <class InputIterator> | ||
// void insert(InputIterator first, InputIterator last); | ||
|
||
int main(int, char**) | ||
{ | ||
{ | ||
typedef std::unordered_multimap<int, std::string> C; | ||
typedef std::pair<int, std::string> P; | ||
P a[] = | ||
{ | ||
P(1, "one"), | ||
P(2, "two"), | ||
P(3, "three"), | ||
P(4, "four"), | ||
P(1, "four"), | ||
P(2, "four"), | ||
}; | ||
C c; | ||
c.insert(cpp17_input_iterator<P*>(a), cpp17_input_iterator<P*>(a + sizeof(a)/sizeof(a[0]))); | ||
assert(c.size() == 6); | ||
typedef std::pair<C::iterator, C::iterator> Eq; | ||
Eq eq = c.equal_range(1); | ||
assert(std::distance(eq.first, eq.second) == 2); | ||
std::multiset<std::string> s; | ||
s.insert("one"); | ||
s.insert("four"); | ||
CheckConsecutiveKeys<C::const_iterator>(c.find(1), c.end(), 1, s); | ||
eq = c.equal_range(2); | ||
assert(std::distance(eq.first, eq.second) == 2); | ||
s.insert("two"); | ||
s.insert("four"); | ||
CheckConsecutiveKeys<C::const_iterator>(c.find(2), c.end(), 2, s); | ||
eq = c.equal_range(3); | ||
assert(std::distance(eq.first, eq.second) == 1); | ||
C::iterator k = eq.first; | ||
assert(k->first == 3); | ||
assert(k->second == "three"); | ||
eq = c.equal_range(4); | ||
assert(std::distance(eq.first, eq.second) == 1); | ||
k = eq.first; | ||
assert(k->first == 4); | ||
assert(k->second == "four"); | ||
assert(static_cast<std::size_t>(std::distance(c.begin(), c.end())) == c.size()); | ||
assert(static_cast<std::size_t>(std::distance(c.cbegin(), c.cend())) == c.size()); | ||
} | ||
#if TEST_STD_VER >= 11 | ||
{ | ||
typedef std::unordered_multimap<int, std::string, std::hash<int>, std::equal_to<int>, | ||
min_allocator<std::pair<const int, std::string>>> C; | ||
typedef std::pair<int, std::string> P; | ||
P a[] = | ||
{ | ||
P(1, "one"), | ||
P(2, "two"), | ||
P(3, "three"), | ||
P(4, "four"), | ||
P(1, "four"), | ||
P(2, "four"), | ||
}; | ||
C c; | ||
c.insert(cpp17_input_iterator<P*>(a), cpp17_input_iterator<P*>(a + sizeof(a)/sizeof(a[0]))); | ||
assert(c.size() == 6); | ||
typedef std::pair<C::iterator, C::iterator> Eq; | ||
Eq eq = c.equal_range(1); | ||
assert(std::distance(eq.first, eq.second) == 2); | ||
std::multiset<std::string> s; | ||
s.insert("one"); | ||
s.insert("four"); | ||
CheckConsecutiveKeys<C::const_iterator>(c.find(1), c.end(), 1, s); | ||
eq = c.equal_range(2); | ||
assert(std::distance(eq.first, eq.second) == 2); | ||
s.insert("two"); | ||
s.insert("four"); | ||
CheckConsecutiveKeys<C::const_iterator>(c.find(2), c.end(), 2, s); | ||
eq = c.equal_range(3); | ||
assert(std::distance(eq.first, eq.second) == 1); | ||
C::iterator k = eq.first; | ||
assert(k->first == 3); | ||
assert(k->second == "three"); | ||
eq = c.equal_range(4); | ||
assert(std::distance(eq.first, eq.second) == 1); | ||
k = eq.first; | ||
assert(k->first == 4); | ||
assert(k->second == "four"); | ||
assert(static_cast<std::size_t>(std::distance(c.begin(), c.end())) == c.size()); | ||
assert(static_cast<std::size_t>(std::distance(c.cbegin(), c.cend())) == c.size()); | ||
} | ||
#endif | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters