1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <vector>
11 // vector<bool>
12 
13 // vector(const vector& v);
14 
15 #include <vector>
16 #include <cassert>
17 #include "test_allocator.h"
18 #include "min_allocator.h"
19 
20 template <class C>
21 void
test(const C & x)22 test(const C& x)
23 {
24     unsigned s = x.size();
25     C c(x);
26     assert(c.__invariants());
27     assert(c.size() == s);
28     assert(c == x);
29 }
30 
main()31 int main()
32 {
33     {
34         bool a[] = {0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0};
35         bool* an = a + sizeof(a)/sizeof(a[0]);
36         test(std::vector<bool>(a, an));
37     }
38     {
39         std::vector<bool, test_allocator<bool> > v(3, 2, test_allocator<bool>(5));
40         std::vector<bool, test_allocator<bool> > v2 = v;
41         assert(v2 == v);
42         assert(v2.get_allocator() == v.get_allocator());
43     }
44 #ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE
45     {
46         std::vector<bool, other_allocator<bool> > v(3, 2, other_allocator<bool>(5));
47         std::vector<bool, other_allocator<bool> > v2 = v;
48         assert(v2 == v);
49         assert(v2.get_allocator() == other_allocator<bool>(-2));
50     }
51 #endif  // _LIBCPP_HAS_NO_ADVANCED_SFINAE
52 #if __cplusplus >= 201103L
53     {
54         bool a[] = {0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0};
55         bool* an = a + sizeof(a)/sizeof(a[0]);
56         test(std::vector<bool, min_allocator<bool>>(a, an));
57     }
58     {
59         std::vector<bool, min_allocator<bool> > v(3, 2, min_allocator<bool>());
60         std::vector<bool, min_allocator<bool> > v2 = v;
61         assert(v2 == v);
62         assert(v2.get_allocator() == v.get_allocator());
63     }
64 #endif
65 }
66