Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc
diff --git a/gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc b/gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc
deleted file mode 100644
index 7613daabdca77b8284831493fe1118f6e5e586fb..0000000000000000000000000000000000000000
--- a/gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc
+++ /dev/null
@@ -1,82 +0,0 @@
-// 2005-06-28 Paolo Carlini <pcarlini@suse.de>
-
-// Copyright (C) 2005, 2009 Free Software Foundation
-//
-// 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
-// terms of the GNU General Public License as published by the
-// Free Software Foundation; either version 3, or (at your option)
-// any later version.
-
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-
-// You should have received a copy of the GNU General Public License along
-// with this library; see the file COPYING3. If not see
-// <http://www.gnu.org/licenses/>.
-
-// 22.2.6.1.1 money_get members
-
-#include <locale>
-#include <sstream>
-#include <testsuite_hooks.h>
-
-struct My_money_io : public std::moneypunct<wchar_t, false>
-{
- std::string do_grouping() const { return "\1"; }
- char_type do_thousands_sep() const { return L'#'; }
-
- pattern do_neg_format() const
- {
- pattern pat = { { symbol, none, sign, value } };
- return pat;
- }
-};
-
-// libstdc++/22131
-void test01()
-{
- using namespace std;
- typedef istreambuf_iterator<wchar_t> InIt;
-
- bool test __attribute__((unused)) = true;
-
- locale loc(locale::classic(), new My_money_io);
-
- wstring buffer1(L"00#0#1");
- wstring buffer2(L"000##1");
-
- bool intl = false;
-
- InIt iend1, iend2;
- ios_base::iostate err1, err2;
- wstring val1, val2;
-
- const money_get<wchar_t,InIt>& mg =
- use_facet<money_get<wchar_t, InIt> >(loc);
-
- wistringstream fmt1(buffer1);
- fmt1.imbue(loc);
- InIt ibeg1(fmt1);
- err1 = ios_base::goodbit;
- mg.get(ibeg1, iend1, intl, fmt1, err1, val1);
- VERIFY( err1 == (ios_base::eofbit | ios_base::failbit) );
- VERIFY( val1 == L"1" );
-
- wistringstream fmt2(buffer2);
- fmt2.imbue(loc);
- InIt ibeg2(fmt2);
- err2 = ios_base::goodbit;
- mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
- VERIFY( err2 == ios_base::failbit );
- VERIFY( *ibeg2 == L'#' );
- VERIFY( val2 == L"" );
-}
-
-int main()
-{
- test01();
- return 0;
-}

Powered by Google App Engine
This is Rietveld 408576698