blob: b0a2eb5e5cbd08555636707178877ef9e1518d2e [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
12// void push_back(charT c)
13
14#include <string>
15#include <cassert>
16
Marshall Clow061d0cc2013-11-26 20:58:02 +000017#include "min_allocator.h"
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000018
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019template <class S>
20void
21test(S s, typename S::value_type c, S expected)
22{
23 s.push_back(c);
Dan Albert1d4a1ed2016-05-25 22:36:09 -070024 assert(s.__invariants());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000025 assert(s == expected);
26}
27
28int main()
29{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000030 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000031 typedef std::string S;
32 test(S(), 'a', S(1, 'a'));
33 test(S("12345"), 'a', S("12345a"));
34 test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000035 }
Dan Albert1d4a1ed2016-05-25 22:36:09 -070036#if __cplusplus >= 201103L
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000037 {
38 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
39 test(S(), 'a', S(1, 'a'));
40 test(S("12345"), 'a', S("12345a"));
41 test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
42 }
43#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000044}