blob: 33649792521cdb99f69dafd2d19b4405d893329e [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 s, S str, S expected)
23{
24 s += str;
Dan Albert1d4a1ed2016-05-25 22:36:09 -070025 assert(s.__invariants());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026 assert(s == expected);
27}
28
29int main()
30{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000031 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000032 typedef std::string S;
33 test(S(), S(), S());
34 test(S(), S("12345"), S("12345"));
35 test(S(), S("1234567890"), S("1234567890"));
36 test(S(), S("12345678901234567890"), S("12345678901234567890"));
37
38 test(S("12345"), S(), S("12345"));
39 test(S("12345"), S("12345"), S("1234512345"));
40 test(S("12345"), S("1234567890"), S("123451234567890"));
41 test(S("12345"), S("12345678901234567890"), S("1234512345678901234567890"));
42
43 test(S("1234567890"), S(), S("1234567890"));
44 test(S("1234567890"), S("12345"), S("123456789012345"));
45 test(S("1234567890"), S("1234567890"), S("12345678901234567890"));
46 test(S("1234567890"), S("12345678901234567890"), S("123456789012345678901234567890"));
47
48 test(S("12345678901234567890"), S(), S("12345678901234567890"));
49 test(S("12345678901234567890"), S("12345"), S("1234567890123456789012345"));
50 test(S("12345678901234567890"), S("1234567890"), S("123456789012345678901234567890"));
51 test(S("12345678901234567890"), S("12345678901234567890"),
52 S("1234567890123456789012345678901234567890"));
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000053 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070054#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000055 {
56 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
57 test(S(), S(), S());
58 test(S(), S("12345"), S("12345"));
59 test(S(), S("1234567890"), S("1234567890"));
60 test(S(), S("12345678901234567890"), S("12345678901234567890"));
61
62 test(S("12345"), S(), S("12345"));
63 test(S("12345"), S("12345"), S("1234512345"));
64 test(S("12345"), S("1234567890"), S("123451234567890"));
65 test(S("12345"), S("12345678901234567890"), S("1234512345678901234567890"));
66
67 test(S("1234567890"), S(), S("1234567890"));
68 test(S("1234567890"), S("12345"), S("123456789012345"));
69 test(S("1234567890"), S("1234567890"), S("12345678901234567890"));
70 test(S("1234567890"), S("12345678901234567890"), S("123456789012345678901234567890"));
71
72 test(S("12345678901234567890"), S(), S("12345678901234567890"));
73 test(S("12345678901234567890"), S("12345"), S("1234567890123456789012345"));
74 test(S("12345678901234567890"), S("1234567890"), S("123456789012345678901234567890"));
75 test(S("12345678901234567890"), S("12345678901234567890"),
76 S("1234567890123456789012345678901234567890"));
77 }
78#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000079}