Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 5339 invoked from network); 1 Apr 2008 17:13:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Apr 2008 17:13:23 -0000 Received: (qmail 64000 invoked by uid 500); 1 Apr 2008 17:13:23 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 63987 invoked by uid 500); 1 Apr 2008 17:13:23 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 63978 invoked by uid 99); 1 Apr 2008 17:13:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2008 10:13:23 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.roguewave.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2008 17:12:29 +0000 Received: from nebula.bco.roguewave.com ([10.70.3.27]) by moroha.roguewave.com (8.13.6/8.13.6) with ESMTP id m31HCms1002940 for ; Tue, 1 Apr 2008 17:12:48 GMT Message-ID: <47F26D10.9050805@roguewave.com> Date: Tue, 01 Apr 2008 11:12:48 -0600 From: Martin Sebor Organization: Rogue Wave Software, Inc. User-Agent: Thunderbird 2.0.0.12 (X11/20080226) MIME-Version: 1.0 To: dev@stdcxx.apache.org Subject: Re: svn commit: r643473 - /stdcxx/trunk/tests/support/18.numeric.special.float.cpp References: <20080401164056.A75051A9832@eris.apache.org> In-Reply-To: <20080401164056.A75051A9832@eris.apache.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org elemings@apache.org wrote: > Author: elemings > Date: Tue Apr 1 09:40:44 2008 > New Revision: 643473 > > URL: http://svn.apache.org/viewvc?rev=643473&view=rev Brad, a few notes on the format of your Change Log. Our convention is to use the GNU/Emacs format for Change Logs described in the Emacs manual: http://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log.html#Change-Log If you use Emacs, the add-change-log-entry command produces the correct format automatically. You can see examples of correctly formatted entries in the ChangeLog file: http://svn.apache.org/repos/asf/stdcxx/trunk/ChangeLog for examples. > Log: > Tue Apr 1 16:28:22 UTC 2008 Eric Lemings The date format is YYYY-MM-DD. > > STDCXX-708 Each line should be indented by a single TAB. The issue URL shouldn't be here. > * tests/support/18.numeric.special.float.cpp: The names of the function you changed should be listed in parentheses, like so: * tests/support/18.numeric.special.float.cpp (limits_values::has_denorm): ... If your changes are conditional (i.e., based on some preprocessor macro), you should list the conditional in square brackets before the list of the functions it applies to, e.g., * tests/support/18.numeric.special.float.cpp [_AIX || __hpux] (limits_values::has_denorm): ... You can correct this Change Log entry via the svn propedit command, like so: svn propedit svn:log --revprop -r643473 \ https://svn.apache.org/repos/asf/stdcxx Thanks Martin > Change expected values for > std::numeric_limits::has_denorm() to std::denorm_present on all > HP-UX platforms (inc. PA-RISC and IPF) per comments recorded in the issue. > > > Modified: > stdcxx/trunk/tests/support/18.numeric.special.float.cpp > > Modified: stdcxx/trunk/tests/support/18.numeric.special.float.cpp > URL: http://svn.apache.org/viewvc/stdcxx/trunk/tests/support/18.numeric.special.float.cpp?rev=643473&r1=643472&r2=643473&view=diff > ============================================================================== > --- stdcxx/trunk/tests/support/18.numeric.special.float.cpp (original) > +++ stdcxx/trunk/tests/support/18.numeric.special.float.cpp Tue Apr 1 09:40:44 2008 > @@ -451,11 +451,9 @@ > > static std::float_denorm_style has_denorm () { > > -#if defined (_AIX) > - return std::denorm_present; > -#elif defined (__hpux) > - return std::denorm_indeterminate; > -#elif defined (__osf__) > +#if defined (_AIX) \ > + || defined (__hpux) \ > + || defined (__osf__) > return std::denorm_present; > #else > return std::denorm_indeterminate; > @@ -720,11 +718,9 @@ > > > static std::float_denorm_style has_denorm () { > -#if defined (_AIX) > - return std::denorm_present; > -#elif defined (__hpux) > - return std::denorm_indeterminate; > -#elif defined (__osf__) > +#if defined (_AIX) \ > + || defined (__hpux) \ > + || defined (__osf__) > return std::denorm_present; > #else > return std::denorm_indeterminate; > @@ -982,11 +978,9 @@ > > > static std::float_denorm_style has_denorm () { > -#if defined (_AIX) > - return std::denorm_present; > -#elif defined (__hpux) > - return std::denorm_indeterminate; > -#elif defined (__osf__) > +#if defined (_AIX) \ > + || defined (__hpux) \ > + || defined (__osf__) > return std::denorm_present; > #else > return std::denorm_indeterminate; > >