diff options
author | Danilo G. Baio <dbaio@FreeBSD.org> | 2018-01-27 22:30:59 +0800 |
---|---|---|
committer | Danilo G. Baio <dbaio@FreeBSD.org> | 2018-01-27 22:30:59 +0800 |
commit | 391e2d57137cd42c3f505bda5d9b72baaacb9278 (patch) | |
tree | 5b30e9a7f3f01b2413900b785d7327386dd45715 /benchmarks | |
parent | e8a1be7f3b727ef1acaa2f54d542c662847e0dab (diff) | |
download | freebsd-ports-gnome-391e2d57137cd42c3f505bda5d9b72baaacb9278.tar.gz freebsd-ports-gnome-391e2d57137cd42c3f505bda5d9b72baaacb9278.tar.zst freebsd-ports-gnome-391e2d57137cd42c3f505bda5d9b72baaacb9278.zip |
Add benchmarks/py-throughpy: Python script to test throughput with iperf3
Execute throughput tests with iperf3 and get some formatted responses.
The output shows just the min, max and average values.
WWW: https://github.com/kanazux/throughpy
PR: 225478
Submitted by: Silvio Ap Silva <contato@kanazuchi.com>
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/Makefile | 1 | ||||
-rw-r--r-- | benchmarks/py-throughpy/Makefile | 21 | ||||
-rw-r--r-- | benchmarks/py-throughpy/distinfo | 3 | ||||
-rw-r--r-- | benchmarks/py-throughpy/pkg-descr | 4 |
4 files changed, 29 insertions, 0 deletions
diff --git a/benchmarks/Makefile b/benchmarks/Makefile index 1622ddf955ef..a19cf22f972e 100644 --- a/benchmarks/Makefile +++ b/benchmarks/Makefile @@ -62,6 +62,7 @@ SUBDIR += postal SUBDIR += postmark SUBDIR += py-naarad + SUBDIR += py-throughpy SUBDIR += py-zopkio SUBDIR += pybench SUBDIR += raidtest diff --git a/benchmarks/py-throughpy/Makefile b/benchmarks/py-throughpy/Makefile new file mode 100644 index 000000000000..6a00fd97d971 --- /dev/null +++ b/benchmarks/py-throughpy/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= throughpy +PORTVERSION= 0.1 +CATEGORIES= benchmarks python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= contato@kanazuchi.com +COMMENT= Python script to test throughput with iperf3 + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= iperf3>=0:benchmarks/iperf3 + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/benchmarks/py-throughpy/distinfo b/benchmarks/py-throughpy/distinfo new file mode 100644 index 000000000000..43f860d9abf6 --- /dev/null +++ b/benchmarks/py-throughpy/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1517016273 +SHA256 (throughpy-0.1.tar.gz) = 80643e53542c657238113449f43851febbb514fe4438c1f6776309b145d7451c +SIZE (throughpy-0.1.tar.gz) = 2127 diff --git a/benchmarks/py-throughpy/pkg-descr b/benchmarks/py-throughpy/pkg-descr new file mode 100644 index 000000000000..4ceb7938a1be --- /dev/null +++ b/benchmarks/py-throughpy/pkg-descr @@ -0,0 +1,4 @@ +Execute throughput tests with iperf3 and get some formatted responses. +The output shows just the min, max and average values. + +WWW: https://github.com/kanazux/throughpy |