From: Dirk-Willem van Gulik Date: Mon, 24 Sep 2001 18:19:17 +0000 (+0000) Subject: Remove showstopper; as trawick commit of 2001/09/11 12:19:09 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a515f3cde924c2ef573b489334e06ae60562c245;p=thirdparty%2Fapache%2Fhttpd.git Remove showstopper; as trawick commit of 2001/09/11 12:19:09 has cleaned them up. Added a >1 comparison to not do statistics if there are less than 2 entries (and hence the standard deviation check would explode on a divide by zero). Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91127 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index c86cd0d2c55..e8d56f179a0 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 1.3 STATUS: -*-text-*- - Last modified at [$Date: 2001/09/12 15:16:41 $] + Last modified at [$Date: 2001/09/24 18:19:17 $] Release: @@ -36,9 +36,6 @@ Release: RELEASE SHOWSTOPPERS: - ab is broken on many platforms. Dirk has offered patch, it does not - apply cleanly, he has offered to clean this up. - Netware, OS2, MPE and Win32 enabled unique_id's aren't unique. Wrowe will fix if nobody else does around the 24th, September. diff --git a/src/support/ab.c b/src/support/ab.c index ab8fa8493a4..b7f1c7815b1 100644 --- a/src/support/ab.c +++ b/src/support/ab.c @@ -545,7 +545,7 @@ static void output_results(void) (float) (totalread + totalposted) / timetaken); } } - if (requests) { + if (requests>1) { /* work out connection times */ long i; double totalcon = 0, total = 0, totald = 0, totalwait = 0; @@ -1334,14 +1334,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.56 $> apache-1.3"); + printf("This is ApacheBench, Version %s\n", VERSION " <$Revision: 1.57 $> apache-1.3"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Group, http://www.apache.org/\n"); printf("\n"); } else { printf("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-1.3
\n", VERSION, "$Revision: 1.56 $"); + printf(" This is ApacheBench, Version %s <%s> apache-1.3
\n", VERSION, "$Revision: 1.57 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
\n"); printf(" Copyright (c) 1998-2001 The Apache Group, http://www.apache.org/
\n"); printf("

\n

\n");