diff options
author | dbaio <dbaio@FreeBSD.org> | 2018-01-27 22:30:59 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 06:30:20 +0800 |
commit | e0476e308b40b349e5af9f78345ed1c7bb0341b3 (patch) | |
tree | 8a743858651c983ac9d0e1001ef950c663a83c2f /benchmarks | |
parent | a9a30803234bde5c025f3eddb6e5b1cd18033896 (diff) | |
download | freebsd-ports-gnome-e0476e308b40b349e5af9f78345ed1c7bb0341b3.tar.gz freebsd-ports-gnome-e0476e308b40b349e5af9f78345ed1c7bb0341b3.tar.zst freebsd-ports-gnome-e0476e308b40b349e5af9f78345ed1c7bb0341b3.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 |