blob: ccb6c599974b00fb6282fe28901ce8ce1335736b [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-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 Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
Howard Hinnant6e0a1f42010-08-22 00:47:54 +000012// basic_string<charT,traits,Allocator>&
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000013// operator=(const basic_string<charT,traits,Allocator>& str);
14
15#include <string>
16#include <cassert>
17
Marshall Clow061d0cc2013-11-26 20:58:02 +000018#include "min_allocator.h"
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000019
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000020template <class S>
21void
22test(S s1, const S& s2)
23{
24 s1 = s2;
Dan Albert1d4a1ed2016-05-25 22:36:09 -070025 assert(s1.__invariants());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026 assert(s1 == s2);
27 assert(s1.capacity() >= s1.size());
28}
29
30int main()
31{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000032 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000033 typedef std::string S;
34 test(S(), S());
35 test(S("1"), S());
36 test(S(), S("1"));
37 test(S("1"), S("2"));
38 test(S("1"), S("2"));
39
40 test(S(),
41 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
42 test(S("123456789"),
43 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
44 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"),
45 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
46 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"
47 "1234567890123456789012345678901234567890123456789012345678901234567890"),
48 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000049 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070050#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000051 {
52 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
53 test(S(), S());
54 test(S("1"), S());
55 test(S(), S("1"));
56 test(S("1"), S("2"));
57 test(S("1"), S("2"));
58
59 test(S(),
60 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
61 test(S("123456789"),
62 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
63 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"),
64 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
65 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"
66 "1234567890123456789012345678901234567890123456789012345678901234567890"),
67 S("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"));
68 }
69#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000070}