diff options
Diffstat (limited to 'libcxx/test/strings/basic.string/string.modifiers/string::erase/pop_back.pass.cpp')
| -rw-r--r-- | libcxx/test/strings/basic.string/string.modifiers/string::erase/pop_back.pass.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libcxx/test/strings/basic.string/string.modifiers/string::erase/pop_back.pass.cpp b/libcxx/test/strings/basic.string/string.modifiers/string::erase/pop_back.pass.cpp new file mode 100644 index 00000000000..5af7784905d --- /dev/null +++ b/libcxx/test/strings/basic.string/string.modifiers/string::erase/pop_back.pass.cpp @@ -0,0 +1,32 @@ +//===----------------------------------------------------------------------===// +// +// ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// <string> + +// void pop_back(); + +#include <string> +#include <cassert> + +template <class S> +void +test(S s, S expected) +{ + s.pop_back(); + assert(s.__invariants()); + assert(s == expected); +} + +int main() +{ + typedef std::string S; + test(S("abcde"), S("abcd")); + test(S("abcdefghij"), S("abcdefghi")); + test(S("abcdefghijklmnopqrst"), S("abcdefghijklmnopqrs")); +} |

