From d32c94be18c4dfb2bd8df6507e178455cc3212a3 Mon Sep 17 00:00:00 2001 From: Benjamin Kosnik Date: Wed, 7 Mar 2001 22:22:41 +0000 Subject: std_iosfwd.h: Remove string forward decls here. 2001-03-07 Benjamin Kosnik * include/bits/std_iosfwd.h: Remove string forward decls here. * include/bits/stringfwd.h: Add forward decls for char_traits specializations. * config/c_io_libio.h (wstreamoff): Delete. * config/c_io_stdio.h (wstreamoff): Same. * include/bits/char_traits.h: Use streamoff not wstreamoff for char_traits::off_type. Remove duplicate typedefs. * include/bits/fpos.h: Define streampos/wstreampos here. * testsuite/27_io/istream_seeks.cc (test04): Explicitly cast int values to off_type. (test05): Same. Changeup output files. * testsuite/27_io/istream_unformatted.cc: Change output files. * testsuite/27_io/istream_seeks-1.txt: Add. * testsuite/27_io/istream_seeks-2.tst: Add. * testsuite/27_io/istream_seeks-1.tst: Add. * testsuite/27_io/istream_unformatted-2.tst: Delete. * testsuite/27_io/istream_unformatted-3.tst: Delete. * testsuite/27_io/istream_unformatted-3.txt: Delete. From-SVN: r40303 --- libstdc++-v3/ChangeLog | 25 +- libstdc++-v3/config/c_io_libio.h | 2 - libstdc++-v3/config/c_io_stdio.h | 2 +- libstdc++-v3/include/bits/char_traits.h | 26 +- libstdc++-v3/include/bits/fpos.h | 54 +- libstdc++-v3/include/bits/std_iosfwd.h | 20 +- libstdc++-v3/include/bits/stringfwd.h | 5 + libstdc++-v3/testsuite/27_io/fpos.cc | 2 +- libstdc++-v3/testsuite/27_io/istream_seeks-1.tst | 7 + libstdc++-v3/testsuite/27_io/istream_seeks-1.txt | 7 + libstdc++-v3/testsuite/27_io/istream_seeks-2.tst | 0 libstdc++-v3/testsuite/27_io/istream_seeks.cc | 32 +- .../testsuite/27_io/istream_unformatted-1.tst | 1507 +++++++++++++++++++- .../testsuite/27_io/istream_unformatted-1.txt | 1507 +++++++++++++++++++- .../testsuite/27_io/istream_unformatted-2.tst | 0 .../testsuite/27_io/istream_unformatted-3.tst | 1500 ------------------- .../testsuite/27_io/istream_unformatted-3.txt | 1500 ------------------- .../testsuite/27_io/istream_unformatted.cc | 2 +- 18 files changed, 3096 insertions(+), 3102 deletions(-) create mode 100644 libstdc++-v3/testsuite/27_io/istream_seeks-1.tst create mode 100644 libstdc++-v3/testsuite/27_io/istream_seeks-1.txt create mode 100644 libstdc++-v3/testsuite/27_io/istream_seeks-2.tst delete mode 100644 libstdc++-v3/testsuite/27_io/istream_unformatted-2.tst delete mode 100644 libstdc++-v3/testsuite/27_io/istream_unformatted-3.tst delete mode 100644 libstdc++-v3/testsuite/27_io/istream_unformatted-3.txt (limited to 'libstdc++-v3') diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ee266bc..8222948 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,7 +1,30 @@ +2001-03-07 Benjamin Kosnik + + * include/bits/std_iosfwd.h: Remove string forward decls here. + * include/bits/stringfwd.h: Add forward decls for char_traits + specializations. + * config/c_io_libio.h (wstreamoff): Delete. + * config/c_io_stdio.h (wstreamoff): Same. + * include/bits/char_traits.h: Use streamoff not wstreamoff for + char_traits::off_type. + Remove duplicate typedefs. + * include/bits/fpos.h: Define streampos/wstreampos here. + * testsuite/27_io/istream_seeks.cc (test04): Explicitly cast int + values to off_type. + (test05): Same. + Changeup output files. + * testsuite/27_io/istream_unformatted.cc: Change output files. + * testsuite/27_io/istream_seeks-1.txt: Add. + * testsuite/27_io/istream_seeks-2.tst: Add. + * testsuite/27_io/istream_seeks-1.tst: Add. + * testsuite/27_io/istream_unformatted-2.tst: Delete. + * testsuite/27_io/istream_unformatted-3.tst: Delete. + * testsuite/27_io/istream_unformatted-3.txt: Delete. + 2001-03-07 Alexandre Oliva Add Irix 5.2, 6.3 support. - * config/os/irix/bits: Renamed too... + * config/os/irix/bits: Renamed to... * config/os/irix/irix6.5/bits: this. * config/os/irix/irix5.2/bits: New, copied from irix6.5/bits. * config/os/irix/irix5.2/bits/ctype_base.h: Use _U, _L, _N, diff --git a/libstdc++-v3/config/c_io_libio.h b/libstdc++-v3/config/c_io_libio.h index 9e040d7..59267985 100644 --- a/libstdc++-v3/config/c_io_libio.h +++ b/libstdc++-v3/config/c_io_libio.h @@ -43,11 +43,9 @@ namespace std #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 typedef _IO_off64_t streamoff; typedef _IO_fpos64_t __c_streampos; - typedef _IO_off64_t wstreamoff; #else typedef _IO_off_t streamoff; typedef _IO_fpos_t __c_streampos; - typedef _IO_off_t wstreamoff; #endif #ifdef _GLIBCPP_USE_THREADS diff --git a/libstdc++-v3/config/c_io_stdio.h b/libstdc++-v3/config/c_io_stdio.h index a9a3fda..e44780c 100644 --- a/libstdc++-v3/config/c_io_stdio.h +++ b/libstdc++-v3/config/c_io_stdio.h @@ -42,7 +42,6 @@ namespace std typedef long streamoff; typedef ptrdiff_t streamsize; // Signed integral type #if _GLIBCPP_USE_WCHAR_T - typedef long wstreamoff; typedef ptrdiff_t wstreamsize; #endif typedef fpos_t __c_streampos; @@ -51,6 +50,7 @@ namespace std typedef __mutext_type __c_lock; #else typedef int __c_lock; + #endif // from basic_file.h diff --git a/libstdc++-v3/include/bits/char_traits.h b/libstdc++-v3/include/bits/char_traits.h index bb8b371..b98a304 100644 --- a/libstdc++-v3/include/bits/char_traits.h +++ b/libstdc++-v3/include/bits/char_traits.h @@ -36,28 +36,14 @@ #pragma GCC system_header -#include // For mbstate_t. #include // For memmove, memset, memchr -#include // For streamoff, streamsize - -namespace std { - - // Same as iosfwd -#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS - // Can't have self-recursive types for streampos. - // 21.1.3.1 char_traits sets size_type to streampos - // 27.4.1 - // And here, where streampos is typedefed to fpos - typedef fpos streampos; -# ifdef _GLIBCPP_USE_WCHAR_T - typedef fpos wstreampos; -# endif -#endif +#include // For streampos +namespace std +{ // 21.1.2 Basis for explicit _Traits specialization // NB: That for any given actual character type this definition is // probably wrong. - template struct char_traits { @@ -216,7 +202,7 @@ namespace std { { typedef wchar_t char_type; typedef wint_t int_type; - typedef wstreamoff off_type; + typedef streamoff off_type; typedef wstreampos pos_type; typedef mbstate_t state_type; @@ -287,6 +273,4 @@ namespace std { } // namespace std - -#endif /* _CPP_BITS_CHAR_TRAITS_H */ - +#endif diff --git a/libstdc++-v3/include/bits/fpos.h b/libstdc++-v3/include/bits/fpos.h index 9dc8dec..7f43f9d 100644 --- a/libstdc++-v3/include/bits/fpos.h +++ b/libstdc++-v3/include/bits/fpos.h @@ -36,14 +36,11 @@ #pragma GCC system_header -// Need this here as well as in std_ios because fpos is used in -// char_traits, and char_traits is used by string, which may or may -// not have included the std_ios file. #include +#include // For mbstate_t. namespace std { - // 27.4.1 Types // 27.4.3 Template class fpos @@ -80,11 +77,27 @@ namespace std fpos& operator-=(streamoff __off) { _M_off -= __off; return *this; } + fpos& + operator+(streamoff __off) + { + fpos t(*this); + return t += __off; + } + + fpos& + operator-(streamoff __off) + { + fpos t(*this); + return t -= __off; + } + bool - operator==(const fpos& __pos) const { return _M_off == __pos._M_off; } + operator==(const fpos& __pos) const + { return _M_off == __pos._M_off; } bool - operator!=(const fpos& __pos) const { return _M_off != __pos._M_off; } + operator!=(const fpos& __pos) const + { return _M_off != __pos._M_off; } streamoff _M_position() const { return _M_off; } @@ -93,29 +106,14 @@ namespace std _M_position(streamoff __off) { _M_off = __off; } }; - template - inline fpos<_State> - operator+(const fpos<_State>& __pos, streamoff __off) - { - fpos<_State> t(__pos); - return t += __off; - } - - template - inline fpos<_State> - operator-(const fpos<_State>& __pos, streamoff __off) - { - fpos<_State> t(__pos); - return t -= __off; - } - - template - inline streamoff - operator-(const fpos<_State>& __pos1, const fpos<_State>& __pos2) - { return __pos1._M_position() - __pos2._M_position(); } - + // 27.2, paragraph 10 about fpos/char_traits circularity + typedef fpos streampos; +# ifdef _GLIBCPP_USE_WCHAR_T + typedef fpos wstreampos; +# endif } // namespace std -#endif /* _CPP_BITS_FPOS_H */ +#endif + diff --git a/libstdc++-v3/include/bits/std_iosfwd.h b/libstdc++-v3/include/bits/std_iosfwd.h index 9d5146c..3a3152c 100644 --- a/libstdc++-v3/include/bits/std_iosfwd.h +++ b/libstdc++-v3/include/bits/std_iosfwd.h @@ -37,18 +37,12 @@ #pragma GCC system_header #include -#include // For mbstate_t #include // For string forward declarations. +#include #include namespace std { - // Forward declarations - template<> class char_traits; -#ifdef _GLIBCPP_USE_WCHAR_T - template<> class char_traits; -#endif - template > class basic_ios; @@ -103,18 +97,6 @@ namespace std class ios_base; #endif - template struct fpos; -#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS - // Can't have self-recursive types for streampos. - // 21.1.3.1 char_traits sets size_type to streampos - // 27.4.1 - // And here, where streampos is typedefed to fpos - typedef fpos streampos; -# ifdef _GLIBCPP_USE_WCHAR_T - typedef fpos wstreampos; -# endif -#endif - typedef basic_ios ios; typedef basic_streambuf streambuf; typedef basic_istream istream; diff --git a/libstdc++-v3/include/bits/stringfwd.h b/libstdc++-v3/include/bits/stringfwd.h index 44f9a77..66bcace 100644 --- a/libstdc++-v3/include/bits/stringfwd.h +++ b/libstdc++-v3/include/bits/stringfwd.h @@ -42,6 +42,11 @@ namespace std { template struct char_traits; + + template<> class char_traits; +#ifdef _GLIBCPP_USE_WCHAR_T + template<> class char_traits; +#endif template class allocator; diff --git a/libstdc++-v3/testsuite/27_io/fpos.cc b/libstdc++-v3/testsuite/27_io/fpos.cc index ef290bc..bfbd8ca 100644 --- a/libstdc++-v3/testsuite/27_io/fpos.cc +++ b/libstdc++-v3/testsuite/27_io/fpos.cc @@ -1,6 +1,6 @@ // 1999-09-20 bkoz -// Copyright (C) 1999 Free Software Foundation, Inc. +// Copyright (C) 1999, 2001 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the diff --git a/libstdc++-v3/testsuite/27_io/istream_seeks-1.tst b/libstdc++-v3/testsuite/27_io/istream_seeks-1.tst new file mode 100644 index 0000000..5d9eafa --- /dev/null +++ b/libstdc++-v3/testsuite/27_io/istream_seeks-1.tst @@ -0,0 +1,7 @@ +bd2 +456x +9mzuv>?@ABCDEFGHIJKLMNOPQRSTUVWXYZracadabras, i wannaz +because because +because. . +of the wonderful things he does!! +ok \ No newline at end of file diff --git a/libstdc++-v3/testsuite/27_io/istream_seeks-1.txt b/libstdc++-v3/testsuite/27_io/istream_seeks-1.txt new file mode 100644 index 0000000..5d9eafa --- /dev/null +++ b/libstdc++-v3/testsuite/27_io/istream_seeks-1.txt @@ -0,0 +1,7 @@ +bd2 +456x +9mzuv>?@ABCDEFGHIJKLMNOPQRSTUVWXYZracadabras, i wannaz +because because +because. . +of the wonderful things he does!! +ok \ No newline at end of file diff --git a/libstdc++-v3/testsuite/27_io/istream_seeks-2.tst b/libstdc++-v3/testsuite/27_io/istream_seeks-2.tst new file mode 100644 index 0000000..e69de29 diff --git a/libstdc++-v3/testsuite/27_io/istream_seeks.cc b/libstdc++-v3/testsuite/27_io/istream_seeks.cc index d5fad45..a9ea82f 100644 --- a/libstdc++-v3/testsuite/27_io/istream_seeks.cc +++ b/libstdc++-v3/testsuite/27_io/istream_seeks.cc @@ -33,7 +33,7 @@ bool test01() typedef ios::pos_type pos_type; bool test = true; - const char str_lit01[] = "istream_unformatted-1.tst"; + const char str_lit01[] = "istream_seeks-1.tst"; // in // test default ctors leave things in the same positions... @@ -65,11 +65,13 @@ bool test01() // fstreams void test04(void) { + typedef std::istream::off_type off_type; + bool test = true; std::istream::pos_type pos01, pos02, pos03, pos04, pos05, pos06; std::ios_base::iostate state01, state02; - const char str_lit01[] = "istream_unformatted-1.txt"; - const char str_lit02[] = "istream_unformatted-2.txt"; + const char str_lit01[] = "istream_seeks-1.txt"; + const char str_lit02[] = "istream_seeks-2.txt"; std::ifstream if01(str_lit01, std::ios_base::in | std::ios_base::out); std::ifstream if02(str_lit01, std::ios_base::in); std::ifstream if03(str_lit02, std::ios_base::out | std::ios_base::trunc); @@ -112,7 +114,7 @@ void test04(void) is01.seekg(10, std::ios_base::cur); state02 = is01.rdstate(); pos01 = is01.tellg(); - VERIFY( pos01 == pos02 + 10 ); + VERIFY( pos01 == pos02 + off_type(10) ); VERIFY( state01 == state02 ); pos02 = is01.tellg(); VERIFY( pos02 == pos01 ); @@ -121,7 +123,7 @@ void test04(void) is02.seekg(10, std::ios_base::cur); state02 = is02.rdstate(); pos03 = is02.tellg(); - VERIFY( pos03 == pos04 + 10 ); + VERIFY( pos03 == pos04 + off_type(10) ); VERIFY( state01 == state02 ); pos04 = is02.tellg(); VERIFY( pos03 == pos04 ); @@ -130,7 +132,7 @@ void test04(void) is03.seekg(10, std::ios_base::cur); state02 = is03.rdstate(); pos05 = is03.tellg(); - VERIFY( pos05 == pos06 + 10 ); + VERIFY( pos05 == pos06 + off_type(10) ); VERIFY( state01 == state02 ); pos06 = is03.tellg(); VERIFY( pos05 == pos06 ); @@ -140,7 +142,7 @@ void test04(void) is01.seekg(20, std::ios_base::beg); state02 = is01.rdstate(); pos01 = is01.tellg(); - VERIFY( pos01 == pos02 + 10 ); + VERIFY( pos01 == pos02 + off_type(10) ); VERIFY( state01 == state02 ); pos02 = is01.tellg(); VERIFY( pos02 == pos01 ); @@ -149,7 +151,7 @@ void test04(void) is02.seekg(20, std::ios_base::beg); state02 = is02.rdstate(); pos03 = is02.tellg(); - VERIFY( pos03 == pos04 + 10 ); + VERIFY( pos03 == pos04 + off_type(10) ); VERIFY( state01 == state02 ); pos04 = is02.tellg(); VERIFY( pos03 == pos04 ); @@ -158,7 +160,7 @@ void test04(void) is03.seekg(20, std::ios_base::beg); state02 = is03.rdstate(); pos05 = is03.tellg(); - VERIFY( pos05 == pos06 + 10 ); + VERIFY( pos05 == pos06 + off_type(10) ); VERIFY( state01 == state02 ); pos06 = is03.tellg(); VERIFY( pos05 == pos06 ); @@ -171,10 +173,12 @@ void test04(void) // stringstreams void test05(void) { + typedef std::istream::off_type off_type; + bool test = true; std::istream::pos_type pos01, pos02, pos03, pos04, pos05, pos06; std::ios_base::iostate state01, state02; - const char str_lit01[] = "istream_unformatted-1.tst"; + const char str_lit01[] = "istream_seeks-1.tst"; std::ifstream if01(str_lit01); std::ifstream if02(str_lit01); std::ifstream if03(str_lit01); @@ -224,7 +228,7 @@ void test05(void) is01.seekg(10, std::ios_base::cur); state02 = is01.rdstate(); pos01 = is01.tellg(); - VERIFY( pos01 == pos02 + 10 ); + VERIFY( pos01 == pos02 + off_type(10) ); VERIFY( state01 == state02 ); pos02 = is01.tellg(); VERIFY( pos02 == pos01 ); @@ -233,7 +237,7 @@ void test05(void) is02.seekg(10, std::ios_base::cur); state02 = is02.rdstate(); pos03 = is02.tellg(); - VERIFY( pos03 == pos04 + 10 ); + VERIFY( pos03 == pos04 + off_type(10) ); VERIFY( state01 == state02 ); pos04 = is02.tellg(); VERIFY( pos03 == pos04 ); @@ -252,7 +256,7 @@ void test05(void) is01.seekg(20, std::ios_base::beg); state02 = is01.rdstate(); pos01 = is01.tellg(); - VERIFY( pos01 == pos02 + 10 ); + VERIFY( pos01 == pos02 + off_type(10) ); VERIFY( state01 == state02 ); pos02 = is01.tellg(); VERIFY( pos02 == pos01 ); @@ -261,7 +265,7 @@ void test05(void) is02.seekg(20, std::ios_base::beg); state02 = is02.rdstate(); pos03 = is02.tellg(); - VERIFY( pos03 == pos04 + 10 ); + VERIFY( pos03 == pos04 + off_type(10) ); VERIFY( state01 == state02 ); pos04 = is02.tellg(); VERIFY( pos03 == pos04 ); diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted-1.tst b/libstdc++-v3/testsuite/27_io/istream_unformatted-1.tst index 5d9eafa..9b770a5 100644 --- a/libstdc++-v3/testsuite/27_io/istream_unformatted-1.tst +++ b/libstdc++-v3/testsuite/27_io/istream_unformatted-1.tst @@ -1,7 +1,1500 @@ -bd2 -456x -9mzuv>?@ABCDEFGHIJKLMNOPQRSTUVWXYZracadabras, i wannaz -because because -because. . -of the wonderful things he does!! -ok \ No newline at end of file +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted-1.txt b/libstdc++-v3/testsuite/27_io/istream_unformatted-1.txt index 5d9eafa..9b770a5 100644 --- a/libstdc++-v3/testsuite/27_io/istream_unformatted-1.txt +++ b/libstdc++-v3/testsuite/27_io/istream_unformatted-1.txt @@ -1,7 +1,1500 @@ -bd2 -456x -9mzuv>?@ABCDEFGHIJKLMNOPQRSTUVWXYZracadabras, i wannaz -because because -because. . -of the wonderful things he does!! -ok \ No newline at end of file +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 +1234567890 diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted-2.tst b/libstdc++-v3/testsuite/27_io/istream_unformatted-2.tst deleted file mode 100644 index e69de29..0000000 diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted-3.tst b/libstdc++-v3/testsuite/27_io/istream_unformatted-3.tst deleted file mode 100644 index 9b770a5..0000000 --- a/libstdc++-v3/testsuite/27_io/istream_unformatted-3.tst +++ /dev/null @@ -1,1500 +0,0 @@ -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted-3.txt b/libstdc++-v3/testsuite/27_io/istream_unformatted-3.txt deleted file mode 100644 index 9b770a5..0000000 --- a/libstdc++-v3/testsuite/27_io/istream_unformatted-3.txt +++ /dev/null @@ -1,1500 +0,0 @@ -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 -1234567890 diff --git a/libstdc++-v3/testsuite/27_io/istream_unformatted.cc b/libstdc++-v3/testsuite/27_io/istream_unformatted.cc index 77560a5..c57065c 100644 --- a/libstdc++-v3/testsuite/27_io/istream_unformatted.cc +++ b/libstdc++-v3/testsuite/27_io/istream_unformatted.cc @@ -461,7 +461,7 @@ int test07() { bool test = true; - const char* tfn = "istream_unformatted-3.txt"; + const char* tfn = "istream_unformatted-1.txt"; std::ifstream infile; infile.open(tfn); VERIFY( !(!infile) ); -- cgit v1.1