blob: c691613379a271363a8dcb9e73f8cc160c9a6e10 [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 charT* s);
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 typename S::value_type* s2)
23{
24 typedef typename S::traits_type T;
25 s1 = s2;
Dan Albert1d4a1ed2016-05-25 22:36:09 -070026 assert(s1.__invariants());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000027 assert(s1.size() == T::length(s2));
28 assert(T::compare(s1.data(), s2, s1.size()) == 0);
29 assert(s1.capacity() >= s1.size());
30}
31
32int main()
33{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000034 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000035 typedef std::string S;
36 test(S(), "");
37 test(S("1"), "");
38 test(S(), "1");
39 test(S("1"), "2");
40 test(S("1"), "2");
41
42 test(S(),
43 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
44 test(S("123456789"),
45 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
46 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"),
47 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
48 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"
49 "1234567890123456789012345678901234567890123456789012345678901234567890"),
50 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000051 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070052#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000053 {
54 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
55 test(S(), "");
56 test(S("1"), "");
57 test(S(), "1");
58 test(S("1"), "2");
59 test(S("1"), "2");
60
61 test(S(),
62 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
63 test(S("123456789"),
64 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
65 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"),
66 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
67 test(S("1234567890123456789012345678901234567890123456789012345678901234567890"
68 "1234567890123456789012345678901234567890123456789012345678901234567890"),
69 "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz");
70 }
71#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000072}