summaryrefslogtreecommitdiff
path: root/libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp')
-rw-r--r--libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp b/libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp
deleted file mode 100644
index 44aa73c9c9f4..000000000000
--- a/libcxx/test/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// <string>
-
-// template<class charT, class traits, class Allocator>
-// basic_istream<charT,traits>&
-// getline(basic_istream<charT,traits>& is,
-// basic_string<charT,traits,Allocator>& str);
-
-#include <string>
-#include <sstream>
-#include <cassert>
-
-int main()
-{
- {
- std::istringstream in(" abc\n def\n ghij");
- std::string s("initial text");
- getline(in, s);
- assert(in.good());
- assert(s == " abc");
- getline(in, s);
- assert(in.good());
- assert(s == " def");
- getline(in, s);
- assert(in.eof());
- assert(s == " ghij");
- }
- {
- std::wistringstream in(L" abc\n def\n ghij");
- std::wstring s(L"initial text");
- getline(in, s);
- assert(in.good());
- assert(s == L" abc");
- getline(in, s);
- assert(in.good());
- assert(s == L" def");
- getline(in, s);
- assert(in.eof());
- assert(s == L" ghij");
- }
-}