Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | // <string> |
| 11 | |
| 12 | // basic_string(const basic_string<charT,traits,Allocator>& str); |
| 13 | |
| 14 | #include <string> |
| 15 | #include <cassert> |
| 16 | |
| 17 | #include "../test_allocator.h" |
| 18 | |
| 19 | template <class S> |
| 20 | void |
| 21 | test(S s1) |
| 22 | { |
| 23 | S s2 = s1; |
| 24 | assert(s2.__invariants()); |
| 25 | assert(s2 == s1); |
| 26 | assert(s2.capacity() >= s2.size()); |
| 27 | assert(s2.get_allocator() == s1.get_allocator()); |
| 28 | } |
| 29 | |
| 30 | int main() |
| 31 | { |
| 32 | typedef test_allocator<char> A; |
| 33 | typedef std::basic_string<char, std::char_traits<char>, A> S; |
| 34 | test(S(A(3))); |
| 35 | test(S("1", A(5))); |
| 36 | test(S("1234567890123456789012345678901234567890123456789012345678901234567890", A(7))); |
| 37 | } |