From stdcxx-commits-return-935-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Thu Sep 21 06:30:44 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 39283 invoked from network); 21 Sep 2006 06:30:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 06:30:44 -0000 Received: (qmail 87362 invoked by uid 500); 21 Sep 2006 06:30:44 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 87341 invoked by uid 500); 21 Sep 2006 06:30:44 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 87330 invoked by uid 99); 21 Sep 2006 06:30:44 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Sep 2006 23:30:44 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=faridz@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:61318] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id DA/AF-04092-39132154 for ; Wed, 20 Sep 2006 23:30:43 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 5FB931A981A; Wed, 20 Sep 2006 23:30:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448474 - in /incubator/stdcxx/trunk/tests: include/21.strings.h include/rw_char.h iostream/27.objects.cpp strings/21.cwchar.cpp Date: Thu, 21 Sep 2006 06:30:41 -0000 To: stdcxx-commits@incubator.apache.org From: faridz@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060921063041.5FB931A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: faridz Date: Wed Sep 20 23:30:40 2006 New Revision: 448474 URL: http://svn.apache.org/viewvc?view=rev&rev=448474 Log: 2006-09-21 Farid Zaripov * 21.string.h (StringState): Added _TEST_EXPORT specification * rw_char.h (UserCharFmatInit): Ditto * 21.cwchar.cpp: Added #ifndef/#endif guard to avoid double function definition * 27.objects.cpp (run_test): Corrected rw_warning() to rw_warn() Modified: incubator/stdcxx/trunk/tests/include/21.strings.h incubator/stdcxx/trunk/tests/include/rw_char.h incubator/stdcxx/trunk/tests/iostream/27.objects.cpp incubator/stdcxx/trunk/tests/strings/21.cwchar.cpp Modified: incubator/stdcxx/trunk/tests/include/21.strings.h URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/include/21.strings.h?view=diff&rev=448474&r1=448473&r2=448474 ============================================================================== --- incubator/stdcxx/trunk/tests/include/21.strings.h (original) +++ incubator/stdcxx/trunk/tests/include/21.strings.h Wed Sep 20 23:30:40 2006 @@ -822,7 +822,7 @@ // encapsulates the state of a string object without regard to type // used in exception safety tests to determine changes to the state // after a modifying operation throws an exception -struct StringState +struct _TEST_EXPORT StringState { const void* data_; _RWSTD_SIZE_T size_; Modified: incubator/stdcxx/trunk/tests/include/rw_char.h URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/include/rw_char.h?view=diff&rev=448474&r1=448473&r2=448474 ============================================================================== --- incubator/stdcxx/trunk/tests/include/rw_char.h (original) +++ incubator/stdcxx/trunk/tests/include/rw_char.h Wed Sep 20 23:30:40 2006 @@ -499,7 +499,7 @@ } -static const struct UserCharFmatInit { +static const struct _TEST_EXPORT UserCharFmatInit { UserCharFmatInit (); } _rw_user_char_fmat_init; Modified: incubator/stdcxx/trunk/tests/iostream/27.objects.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/iostream/27.objects.cpp?view=diff&rev=448474&r1=448473&r2=448474 ============================================================================== --- incubator/stdcxx/trunk/tests/iostream/27.objects.cpp (original) +++ incubator/stdcxx/trunk/tests/iostream/27.objects.cpp Wed Sep 20 23:30:40 2006 @@ -322,7 +322,7 @@ #ifdef _RWSTD_NO_REPLACEABLE_NEW_DELETE - rw_warning (0, 0, __LINE__, + rw_warn (0, 0, __LINE__, "replacement operators new and delete not tested: " "_RWSTD_NO_REPLACEABLE_NEW_DELETE #defined"); Modified: incubator/stdcxx/trunk/tests/strings/21.cwchar.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/strings/21.cwchar.cpp?view=diff&rev=448474&r1=448473&r2=448474 ============================================================================== --- incubator/stdcxx/trunk/tests/strings/21.cwchar.cpp (original) +++ incubator/stdcxx/trunk/tests/strings/21.cwchar.cpp Wed Sep 20 23:30:40 2006 @@ -810,7 +810,11 @@ GET_TYPE_NAME (long); GET_TYPE_NAME (unsigned long); GET_TYPE_NAME (double); + +#ifndef _RWSTD_NO_NATIVE_WCHAR_T GET_TYPE_NAME (wchar_t); +#endif + GET_TYPE_NAME (wchar_t*); GET_TYPE_NAME (const wchar_t*);