Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 74804 invoked from network); 1 Apr 2008 16:17:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Apr 2008 16:17:28 -0000 Received: (qmail 77279 invoked by uid 500); 1 Apr 2008 16:17:28 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 77256 invoked by uid 500); 1 Apr 2008 16:17:28 -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 77247 invoked by uid 99); 1 Apr 2008 16:17:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Apr 2008 09:17:28 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.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 16:16:47 +0000 Received: from nebula.bco.roguewave.com ([10.70.3.27]) by moroha.roguewave.com (8.13.6/8.13.6) with ESMTP id m31GGsqr000929 for ; Tue, 1 Apr 2008 16:16:54 GMT Message-ID: <47F25FF6.4060708@roguewave.com> Date: Tue, 01 Apr 2008 10:16:54 -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: r643448 - /stdcxx/trunk/etc/config/windows/run_locale_utils.wsf References: <20080401153627.8D6D31A9832@eris.apache.org> In-Reply-To: <20080401153627.8D6D31A9832@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 ablack@apache.org wrote: > Author: ablack > Date: Tue Apr 1 08:36:22 2008 > New Revision: 643448 > > URL: http://svn.apache.org/viewvc?rev=643448&view=rev > Log: > 2008-04-01 Andrew Black > > * etc/config/windows/run_locale_utils.wsf (run_locale_utils): > Replication of r643435 for Windows. (Update result footer format to > match format expected by exec utility. Footer search logic changed > in r643120.) Does this by any chance fix the recent failures in locale tests? E.g., In these builds: http://people.apache.org/~sebor/stdcxx/results/hpux-11.11-pa-acc-3.73-11S-643226-log.gz.txt http://people.apache.org/~sebor/stdcxx/results/linux_redhat_el-3.8-em64t-gcc-3.2.3-11d-643226-log.gz.txt Martin > > > Modified: > stdcxx/trunk/etc/config/windows/run_locale_utils.wsf > > Modified: stdcxx/trunk/etc/config/windows/run_locale_utils.wsf > URL: http://svn.apache.org/viewvc/stdcxx/trunk/etc/config/windows/run_locale_utils.wsf?rev=643448&r1=643447&r2=643448&view=diff > ============================================================================== > --- stdcxx/trunk/etc/config/windows/run_locale_utils.wsf (original) > +++ stdcxx/trunk/etc/config/windows/run_locale_utils.wsf Tue Apr 1 08:36:22 2008 > @@ -711,14 +711,15 @@ > { > var pcnt = 100 * (assertions - failedassertions) / assertions; > pcnt = Math.floor(pcnt + 0.5); > - outstrm.WriteLine("# +-----------------------+--------+--------+--------+"); > - outstrm.WriteLine("# | DIAGNOSTIC | ACTIVE | TOTAL |INACTIVE|"); > - outstrm.WriteLine("# +-----------------------+--------+--------+--------+"); > - outstrm.WriteLine("# | (S7) ASSERTION | " + FormatNumber(failedassertions, 6) > - + " | " + FormatNumber(assertions, 6) + " | " + FormatNumber(pcnt, 5) + "% |"); > - outstrm.WriteLine("# +-----------------------+--------+--------+--------+"); > + outstrm.WriteLine("# +-----------------------+----------+----------+----------+"); > + outstrm.WriteLine("# | DIAGNOSTIC | ACTIVE | TOTAL | INACTIVE |"); > + outstrm.WriteLine("# +-----------------------+----------+----------+----------+"); > + outstrm.WriteLine("# | (S7) ASSERTION | " + FormatNumber(failedassertions, 8) > + + " | " + FormatNumber(assertions, 8) + " | " + FormatNumber(pcnt, 7) + "% |"); > + outstrm.WriteLine("# +-----------------------+----------+----------+----------+"); > outstrm.WriteLine(); > } > + outstrm.WriteLine("## Warnings = 0"); > outstrm.WriteLine("## Assertions = " + assertions); > outstrm.WriteLine("## FailedAssertions = " + failedassertions); > outstrm.WriteLine(); > >