mirror of git://gcc.gnu.org/git/gcc.git
re PR libstdc++/36616 (Open issues from a test run)
2008-06-24 Paolo Carlini <paolo.carlini@oracle.com> PR libstdc++/36616 * testsuite/22_locale/money_put/put/char/9780-3.cc: Fix expected results for recent glibcs (2.8 and later). * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise. * testsuite/22_locale/time_put/put/char/4.cc: Likewise. From-SVN: r137073
This commit is contained in:
parent
c0a781c2d8
commit
db16ca8c7f
|
@ -1,6 +1,6 @@
|
||||||
// { dg-require-namedlocale "" }
|
// { dg-require-namedlocale "" }
|
||||||
|
|
||||||
// Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|
// Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// 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
|
// software; you can redistribute it and/or modify it under the
|
||||||
|
@ -38,8 +38,12 @@ int main()
|
||||||
long double ld = -1234567890;
|
long double ld = -1234567890;
|
||||||
mp.put(oss.rdbuf(), true, oss, ' ', ld); // -EUR 12.345.678,90
|
mp.put(oss.rdbuf(), true, oss, ' ', ld); // -EUR 12.345.678,90
|
||||||
string res = oss.str();
|
string res = oss.str();
|
||||||
|
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( res == "-12.345.678,90 EUR " );
|
||||||
|
#else
|
||||||
VERIFY( res == "-EUR 12.345.678,90" );
|
VERIFY( res == "-EUR 12.345.678,90" );
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
// 2001-09-17 Benjamin Kosnik <bkoz@redhat.com>
|
// 2001-09-17 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation
|
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||||
|
// Free Software Foundation
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// 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
|
// software; you can redistribute it and/or modify it under the
|
||||||
|
@ -48,12 +49,20 @@ void test04()
|
||||||
const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
|
const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
|
||||||
iterator_type os_it04 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'a');
|
iterator_type os_it04 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'a');
|
||||||
string result4 = oss.str();
|
string result4 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result4 == "dim." );
|
||||||
|
#else
|
||||||
VERIFY( result4 == "dim" );
|
VERIFY( result4 == "dim" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty); // "%d.%m.%Y"
|
oss.str(empty); // "%d.%m.%Y"
|
||||||
iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
|
iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x');
|
||||||
string result27 = oss.str(); // "04.04.1971"
|
string result27 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result27 == "04/04/1971" );
|
||||||
|
#else
|
||||||
VERIFY( result27 == "04.04.1971" );
|
VERIFY( result27 == "04.04.1971" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty); // "%T"
|
oss.str(empty); // "%T"
|
||||||
iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
|
iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X');
|
||||||
|
@ -62,8 +71,12 @@ void test04()
|
||||||
|
|
||||||
oss.str(empty);
|
oss.str(empty);
|
||||||
iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
|
iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'x', 'E');
|
||||||
string result37 = oss.str(); // "04.04.1971"
|
string result37 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result37 == "04/04/1971" );
|
||||||
|
#else
|
||||||
VERIFY( result37 == "04.04.1971" );
|
VERIFY( result37 == "04.04.1971" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty);
|
oss.str(empty);
|
||||||
iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
|
iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'X', 'E');
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
// 2001-09-17 Benjamin Kosnik <bkoz@redhat.com>
|
// 2001-09-17 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation
|
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
||||||
|
// Free Software Foundation
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// 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
|
// software; you can redistribute it and/or modify it under the
|
||||||
|
@ -48,12 +49,20 @@ void test04()
|
||||||
const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
|
const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
|
||||||
iterator_type os_it04 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'a');
|
iterator_type os_it04 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'a');
|
||||||
wstring result4 = oss.str();
|
wstring result4 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result4 == L"dim." );
|
||||||
|
#else
|
||||||
VERIFY( result4 == L"dim" );
|
VERIFY( result4 == L"dim" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty); // "%d.%m.%Y"
|
oss.str(empty); // "%d.%m.%Y"
|
||||||
iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
|
iterator_type os_it27 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x');
|
||||||
wstring result27 = oss.str(); // "04.04.1971"
|
wstring result27 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result27 == L"04/04/1971" );
|
||||||
|
#else
|
||||||
VERIFY( result27 == L"04.04.1971" );
|
VERIFY( result27 == L"04.04.1971" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty); // "%T"
|
oss.str(empty); // "%T"
|
||||||
iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
|
iterator_type os_it28 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X');
|
||||||
|
@ -62,8 +71,12 @@ void test04()
|
||||||
|
|
||||||
oss.str(empty);
|
oss.str(empty);
|
||||||
iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
|
iterator_type os_it37 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'x', 'E');
|
||||||
wstring result37 = oss.str(); // "04.04.1971"
|
wstring result37 = oss.str();
|
||||||
|
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 7)
|
||||||
|
VERIFY( result37 == L"04/04/1971" );
|
||||||
|
#else
|
||||||
VERIFY( result37 == L"04.04.1971" );
|
VERIFY( result37 == L"04.04.1971" );
|
||||||
|
#endif
|
||||||
|
|
||||||
oss.str(empty);
|
oss.str(empty);
|
||||||
iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
|
iterator_type os_it38 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'X', 'E');
|
||||||
|
|
Loading…
Reference in New Issue