Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 65613 invoked from network); 6 Feb 2006 22:52:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Feb 2006 22:52:24 -0000 Received: (qmail 68250 invoked by uid 500); 6 Feb 2006 22:52:21 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 68194 invoked by uid 500); 6 Feb 2006 22:52:20 -0000 Mailing-List: contact stdcxx-dev-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-dev@incubator.apache.org Received: (qmail 68037 invoked by uid 99); 6 Feb 2006 22:52:19 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2006 14:52:18 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id CB1E8182 for ; Mon, 6 Feb 2006 23:51:57 +0100 (CET) Message-ID: <1000179515.1139266317830.JavaMail.jira@ajax.apache.org> Date: Mon, 6 Feb 2006 23:51:57 +0100 (CET) From: "Liviu Nicoara (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Created: (STDCXX-134) test output misaligned for large number of assertions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N test output misaligned for large number of assertions ----------------------------------------------------- Key: STDCXX-134 URL: http://issues.apache.org/jira/browse/STDCXX-134 Project: C++ Standard Library Type: Bug Components: Tests Versions: 4.1.3 Environment: $ uname -a Linux skynet 2.6.14.5 #3 SMP PREEMPT Mon Jan 9 13:59:21 MST 2006 i686 unknown unknown GNU/Linux $ gcc -v Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.3.4/specs Configured with: ../gcc-3.3.4/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux Thread model: posix gcc version 3.3.4 Reporter: Liviu Nicoara Priority: Minor (Need monospace font to see properly) The following test case: $ cat > t.cpp << EOF #include int run_test (int, char**) { for (int i = 0; i < 1000000; ++i) rw_assert (1, 0, 0, " "); return 0; } int main () { return rw_test (0, 0, __FILE__, "", 0, run_test, 0); } EOF yields the following output: $ ./t # INFO (S1) (8 lines): # TEXT: # COMPILER: gcc 3.3.4, __VERSION__ = "3.3.4" # ENVIRONMENT: i386 running linux-elf 2.4.29 with glibc 2.3 # FILE: t.cpp # COMPILED: Feb 6 2006, 13:45:04 # COMMENT: ###################################################### # +-----------------------+--------+--------+--------+ # | DIAGNOSTIC | ACTIVE | TOTAL |INACTIVE| # +-----------------------+--------+--------+--------+ # | (S1) INFO | 1 | 1 | 0% | # | (S7) ASSERTION | 0 | 1000000 | 100% | # +-----------------------+--------+--------+--------+ Please note the misalignment in the last row of he table. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira