1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
18 #include "test_macros.h"
19 #include "../../../test_compare.h"
20 #include "test_allocator.h"
21 #include "min_allocator.h"
26 typedef std::pair
<const int, double> V
;
39 typedef test_less
<int> C
;
40 typedef test_allocator
<V
> A
;
41 std::map
<int, double, C
, A
> mo(ar
, ar
+sizeof(ar
)/sizeof(ar
[0]), C(5), A(7));
42 std::map
<int, double, C
, A
> m
= mo
;
43 assert(m
.get_allocator() == A(7));
44 assert(m
.key_comp() == C(5));
45 assert(m
.size() == 3);
46 assert(std::distance(m
.begin(), m
.end()) == 3);
47 assert(*m
.begin() == V(1, 1));
48 assert(*std::next(m
.begin()) == V(2, 1));
49 assert(*std::next(m
.begin(), 2) == V(3, 1));
51 assert(mo
.get_allocator() == A(7));
52 assert(mo
.key_comp() == C(5));
53 assert(mo
.size() == 3);
54 assert(std::distance(mo
.begin(), mo
.end()) == 3);
55 assert(*mo
.begin() == V(1, 1));
56 assert(*std::next(mo
.begin()) == V(2, 1));
57 assert(*std::next(mo
.begin(), 2) == V(3, 1));
59 #if TEST_STD_VER >= 11
61 typedef std::pair
<const int, double> V
;
74 typedef test_less
<int> C
;
75 typedef other_allocator
<V
> A
;
76 std::map
<int, double, C
, A
> mo(ar
, ar
+sizeof(ar
)/sizeof(ar
[0]), C(5), A(7));
77 std::map
<int, double, C
, A
> m
= mo
;
78 assert(m
.get_allocator() == A(-2));
79 assert(m
.key_comp() == C(5));
80 assert(m
.size() == 3);
81 assert(std::distance(m
.begin(), m
.end()) == 3);
82 assert(*m
.begin() == V(1, 1));
83 assert(*std::next(m
.begin()) == V(2, 1));
84 assert(*std::next(m
.begin(), 2) == V(3, 1));
86 assert(mo
.get_allocator() == A(7));
87 assert(mo
.key_comp() == C(5));
88 assert(mo
.size() == 3);
89 assert(std::distance(mo
.begin(), mo
.end()) == 3);
90 assert(*mo
.begin() == V(1, 1));
91 assert(*std::next(mo
.begin()) == V(2, 1));
92 assert(*std::next(mo
.begin(), 2) == V(3, 1));
95 typedef std::pair
<const int, double> V
;
108 typedef test_less
<int> C
;
109 typedef min_allocator
<V
> A
;
110 std::map
<int, double, C
, A
> mo(ar
, ar
+sizeof(ar
)/sizeof(ar
[0]), C(5), A());
111 std::map
<int, double, C
, A
> m
= mo
;
112 assert(m
.get_allocator() == A());
113 assert(m
.key_comp() == C(5));
114 assert(m
.size() == 3);
115 assert(std::distance(m
.begin(), m
.end()) == 3);
116 assert(*m
.begin() == V(1, 1));
117 assert(*std::next(m
.begin()) == V(2, 1));
118 assert(*std::next(m
.begin(), 2) == V(3, 1));
120 assert(mo
.get_allocator() == A());
121 assert(mo
.key_comp() == C(5));
122 assert(mo
.size() == 3);
123 assert(std::distance(mo
.begin(), mo
.end()) == 3);
124 assert(*mo
.begin() == V(1, 1));
125 assert(*std::next(mo
.begin()) == V(2, 1));
126 assert(*std::next(mo
.begin(), 2) == V(3, 1));