blob: cc4deb992a8b2c7faed6a962fa1f6362053b9252 [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00004//
Howard Hinnant412dbeb2010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnant3e519522010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
12// basic_string(const basic_string<charT,traits,Allocator>& str);
13
14#include <string>
15#include <cassert>
16
Eric Fiselier1f4231f2016-04-28 22:28:23 +000017#include "test_macros.h"
Marshall Clowc3deeb52013-12-03 00:18:10 +000018#include "test_allocator.h"
Marshall Clowe34f6f62013-11-26 20:58:02 +000019#include "min_allocator.h"
Howard Hinnant3e519522010-05-11 19:42:16 +000020
21template <class S>
22void
23test(S s1)
24{
25 S s2 = s1;
Eric Fiselier1f4231f2016-04-28 22:28:23 +000026 LIBCPP_ASSERT(s2.__invariants());
Howard Hinnant3e519522010-05-11 19:42:16 +000027 assert(s2 == s1);
28 assert(s2.capacity() >= s2.size());
29 assert(s2.get_allocator() == s1.get_allocator());
30}
31
32int main()
33{
Howard Hinnanteec72182013-06-28 16:59:19 +000034 {
Howard Hinnant3e519522010-05-11 19:42:16 +000035 typedef test_allocator<char> A;
36 typedef std::basic_string<char, std::char_traits<char>, A> S;
37 test(S(A(3)));
38 test(S("1", A(5)));
39 test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A(7)));
Howard Hinnanteec72182013-06-28 16:59:19 +000040 }
Eric Fiselier1f4231f2016-04-28 22:28:23 +000041#if TEST_STD_VER >= 11
Howard Hinnanteec72182013-06-28 16:59:19 +000042 {
43 typedef min_allocator<char> A;
44 typedef std::basic_string<char, std::char_traits<char>, A> S;
45 test(S(A{}));
46 test(S("1", A()));
47 test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A()));
48 }
49#endif
Howard Hinnant3e519522010-05-11 19:42:16 +000050}