summaryrefslogtreecommitdiffstats
path: root/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp')
-rw-r--r--libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp b/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp
deleted file mode 100644
index 5708038e5ed..00000000000
--- a/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp
+++ /dev/null
@@ -1,30 +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.
-//
-//===----------------------------------------------------------------------===//
-
-// <ios>
-
-// class ios_base
-
-// ios_base& nounitbuf(ios_base& str);
-
-#include <ios>
-#include <streambuf>
-#include <cassert>
-
-struct testbuf : public std::streambuf {};
-
-int main()
-{
- testbuf sb;
- std::ios ios(&sb);
- std::unitbuf(ios);
- std::ios_base& r = std::nounitbuf(ios);
- assert(&r == &ios);
- assert(!(ios.flags() & std::ios::unitbuf));
-}
OpenPOWER on IntegriCloud