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
12 // vector(size_type n, const value_type& x, const allocator_type& a);
13
14 #include <vector>
15 #include <cassert>
16 #include "min_allocator.h"
17 #include "asan_testing.h"
18
19 template <class C>
20 void
test(typename C::size_type n,const typename C::value_type & x,const typename C::allocator_type & a)21 test(typename C::size_type n, const typename C::value_type& x,
22 const typename C::allocator_type& a)
23 {
24 C c(n, x, a);
25 assert(c.__invariants());
26 assert(a == c.get_allocator());
27 assert(c.size() == n);
28 assert(is_contiguous_container_asan_correct(c));
29 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i)
30 assert(*i == x);
31 }
32
main()33 int main()
34 {
35 test<std::vector<int> >(50, 3, std::allocator<int>());
36 #if __cplusplus >= 201103L
37 test<std::vector<int, min_allocator<int>> >(50, 3, min_allocator<int>());
38 #endif
39 }
40