Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 14287 invoked from network); 24 May 2004 16:16:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 24 May 2004 16:16:19 -0000 Received: (qmail 20051 invoked by uid 500); 24 May 2004 09:21:11 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 16907 invoked by uid 500); 24 May 2004 09:20:18 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 12676 invoked by uid 98); 24 May 2004 09:19:16 -0000 X-Qmail-Scanner-Mail-From: jorton@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 0.546608 secs) Date: 24 May 2004 09:19:02 -0000 Message-ID: <20040524091902.53323.qmail@minotaur.apache.org> From: jorton@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/test abts.c X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/05/24 02:19:02 Modified: test abts.c Log: * test/abts.c (abts_ptr_notnull, abts_assert, abts_true, abts_not_impl): Consistently add a newline after an error message. Revision Changes Path 1.5 +4 -4 apr/test/abts.c Index: abts.c =================================================================== RCS file: /home/cvs/apr/test/abts.c,v retrieving revision 1.4 retrieving revision 1.5 diff -d -u -r1.4 -r1.5 --- abts.c 23 May 2004 19:51:56 -0000 1.4 +++ abts.c 24 May 2004 09:19:02 -0000 1.5 @@ -262,7 +262,7 @@ tc->failed = TRUE; if (verbose) { - fprintf(stderr, "Line %d: Expected NULL, but saw <%p>", lineno, ptr); + fprintf(stderr, "Line %d: Expected NULL, but saw <%p>\n", lineno, ptr); fflush(stderr); } } @@ -302,7 +302,7 @@ tc->failed = TRUE; if (verbose) { - fprintf(stderr, "Line %d: %s", lineno, message); + fprintf(stderr, "Line %d: %s\n", lineno, message); fflush(stderr); } } @@ -316,7 +316,7 @@ tc->failed = TRUE; if (verbose) { - fprintf(stderr, "Line %d: Condition is false, but expected true", lineno); + fprintf(stderr, "Line %d: Condition is false, but expected true\n", lineno); fflush(stderr); } } @@ -327,7 +327,7 @@ tc->suite->not_impl++; if (verbose) { - fprintf(stderr, "Line %d: %s", lineno, message); + fprintf(stderr, "Line %d: %s\n", lineno, message); fflush(stderr); } }