This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

locale messages gnu patch 13631


Hi

First happy new year to all libstdc++ contributors and users !

Here is my first patch of the year, for the gnu implementation of locale messages facet fixing normally DR 13631.

More important is the test case coming next to it (4.cc) showing what it is fixing. The bad news is that I haven't been able to integrate this test to the libstdc++ testsuite so I join it to this mail but have no plan to add it to libstdc++ testsuite. It requires 2 different catalogs to play with and I haven't found how to tweak the makefiles to automatically generate those 2 catalogs as part of the testsuite. So I use the catalogs from okular (/usr/share/okular.mo) and pulseaudio (/usr/share/pulseaudio.mo), I hope those 2 are present on most of linux distroes so that someone can confirm that the patch is working.

For info I even try to run this test with the gcc version coming with my distro 4.4.3 and it doesn't work neither so there is really a problem with my Mandriva 2010.2 distro.

So, anyone can run the test for me ?

Thanks

Attachment: messages_members.patch
Description: Text document

// { dg-require-namedlocale "fr_FR" }

// 2001-07-17 Benjamin Kosnik  <bkoz@redhat.com>

// Copyright (C) 2001, 2002, 2003, 2004, 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.7.1.1 messages members

#include <locale>
#include <testsuite_hooks.h>

void test01()
{
  using namespace std;
  typedef std::messages<char>::catalog catalog;
  typedef std::messages<char>::string_type string_type;

  bool test __attribute__((unused)) = true;

  // basic construction
  locale loc_c = locale::classic();
  locale loc_fr = locale("fr_FR");
  VERIFY( loc_c != loc_fr );

  // cache the messages facets
  const messages<char>& mssg_fr = use_facet<messages<char> >(loc_fr); 

  // catalog open(const string&, const locale&) const;
  // string_type get(catalog, int, int, const string_type& ) const; 
  // void close(catalog) const;

  // Check locale.
  catalog cat_okular = mssg_fr.open("okular", loc_c);
  VERIFY( cat_okular >= 0 );
  catalog cat_pulseaudio = mssg_fr.open("pulseaudio", loc_c);
  VERIFY( cat_pulseaudio >= 0 );
  VERIFY( cat_okular != cat_pulseaudio );

  string s01 = mssg_fr.get(cat_okular, 0, 0, "seconds");
  VERIFY( s01 == "secondes" );

  string s02 = mssg_fr.get(cat_pulseaudio, 0, 0, "PulseAudio Sound Server");
  VERIFY ( s02 == "Serveur de Son PulseAudio" );
  mssg_fr.close(cat_pulseaudio);
  mssg_fr.close(cat_okular);
}

int main()
{
  test01();
  return 0;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]