diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-01-05 20:05:20 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-01-05 20:05:20 +0000 |
commit | ac2bb4377005f9bd117fee3155c9ece00f4d5b27 (patch) | |
tree | 500795f016411556c30ea480dc086798f6ec1ceb /libstdc++-v3/testsuite/lib | |
parent | 9bf4cdf5755e89b6e17122b985daa4bc2510f6f9 (diff) | |
download | gcc-ac2bb4377005f9bd117fee3155c9ece00f4d5b27.zip gcc-ac2bb4377005f9bd117fee3155c9ece00f4d5b27.tar.gz gcc-ac2bb4377005f9bd117fee3155c9ece00f4d5b27.tar.bz2 |
re PR libstdc++/38081 (time_get<>::do_get_weekday does not always recognize full names of weekdays)
2010-01-05 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/38081
* include/bits/locale_facets_nonio.h (time_get<>::
_M_extract_wday_or_month): New, declare.
* include/bits/locale_facets_nonio.tcc (time_get<>::
_M_extract_wday_or_month): Define.
(time_get<>::do_get_weekday, time_get<>::do_get_monthname): Use it.
* config/abi/pre/gnu.ver: Export new symbols.
* doc/xml/manual/prerequisites.xml: Add ru_RU.UTF-8 and
ru_RU.ISO-8859-5.
* testsuite/lib/libstdc++.exp: Adjust.
* testsuite/22_locale/time_get/get_weekday/char/38081-1.cc: New.
* testsuite/22_locale/time_get/get_weekday/char/38081-2.cc: Likewise.
From-SVN: r155659
Diffstat (limited to 'libstdc++-v3/testsuite/lib')
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index ab4ab24..09cae6d 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -1,6 +1,6 @@ # libstdc++ "tool init file" for DejaGNU -# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify @@ -883,6 +883,8 @@ proc check_v3_target_namedlocale { } { puts $f " locale(\"is_IS.UTF-8\");" puts $f " locale(\"it_IT\");" puts $f " locale(\"ja_JP.eucjp\");" + puts $f " locale(\"ru_RU.ISO-8859-5\");" + puts $f " locale(\"ru_RU.UTF-8\");" puts $f " locale(\"se_NO.UTF-8\");" puts $f " locale(\"ta_IN\");" puts $f " locale(\"zh_TW\");" |