From fd6f242bc45a512a69fe2f94530a3118aa1e0592 Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Sun, 25 Jan 2004 19:04:24 +0000 Subject: - Allow blasting 10000 blocks - While there, nuke pkg-plist PR: ports/61900 Submitted by: Radim Kolar --- benchmarks/tcpblast/Makefile | 3 +++ benchmarks/tcpblast/pkg-plist | 1 - benchmarks/tcpblast/src/tcpblast.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 benchmarks/tcpblast/pkg-plist diff --git a/benchmarks/tcpblast/Makefile b/benchmarks/tcpblast/Makefile index e6b4d0c92e4c..c31834bc8606 100644 --- a/benchmarks/tcpblast/Makefile +++ b/benchmarks/tcpblast/Makefile @@ -8,12 +8,15 @@ PORTNAME= tcpblast PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= benchmarks net ipv6 DISTFILES= # none MAINTAINER= ports@FreeBSD.org COMMENT= Measures the throughput of a tcp connection +PLIST_FILES= bin/tcpblast + WRKSRC= ${WRKDIR}/src do-extract: diff --git a/benchmarks/tcpblast/pkg-plist b/benchmarks/tcpblast/pkg-plist deleted file mode 100644 index d951d2c29bec..000000000000 --- a/benchmarks/tcpblast/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -bin/tcpblast diff --git a/benchmarks/tcpblast/src/tcpblast.c b/benchmarks/tcpblast/src/tcpblast.c index 827c287669c7..5a191701dc89 100644 --- a/benchmarks/tcpblast/src/tcpblast.c +++ b/benchmarks/tcpblast/src/tcpblast.c @@ -65,7 +65,7 @@ int argc; char **argv; } nblocks = atoi(argv[1]); - if (nblocks<=1 || nblocks>=10000) { + if (nblocks<=1 || nblocks>10000) { fprintf(stderr, "tcpblast: 1 < nblocks <= 10000 \n"); exit(1); } -- cgit v1.2.3