Skip to content

Commit 3eef588

Browse files
committed
Merge branch 'master' into release
2 parents 06f00ce + 0ef2010 commit 3eef588

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# `benchie`
1+
# benchie
2+
3+
[![github-actions](https://github.com/theohbrothers/benchie/workflows/ci-master-pr/badge.svg)](https://github.com/theohbrothers/benchie/actions)
4+
[![github-tag](https://img.shields.io/github/tag/theohbrothers/benchie)](https://github.com/theohbrothers/benchie/releases/)
5+
<!-- [![docker-image-size](https://img.shields.io/docker/image-size/theohbrothers/benchie/latest)](https://hub.docker.com/r/theohbrothers/benchie) -->
26

37
A simple benchmarking tool.
48

benchie.sh

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,21 @@ if [ "$1" = '--help' ] || [ "$1" = '-h' ] || [ "$1" = 'help' ]; then
99
echo ''
1010
echo './benchie.sh start [benchmark] [[label]]'
1111
echo '# Starts the path/to/benchmark benchmark. Benchmark data created in path/to/benchmark/data'
12-
echo './benchie.sh start client-network-latency'
13-
echo './benchie.sh start client-network-latency homewifi'
14-
echo './benchie.sh start client-network-latency hotspot'
15-
echo './benchie.sh start client-network-latency wsgx'
12+
echo './benchie.sh start path/to/benchmark'
13+
echo './benchie.sh start path/to/benchmark home'
14+
echo './benchie.sh start path/to/benchmark work'
1615
echo ''
1716
echo './benchie.sh status [benchmark]'
18-
echo '# Gets all the benchmark PIDs of client-network-latency benchmark'
19-
echo './benchie.sh status client-network-latency'
17+
echo '# Gets all the benchmark PIDs of path/to/benchmark benchmark'
18+
echo './benchie.sh status path/to/benchmark'
2019
echo ''
2120
echo './benchie.sh stop [benchmark]'
22-
echo '# Kills all the benchmark PIDs of client-network-latency benchmark'
23-
echo './benchie.sh stop client-network-latency'
21+
echo '# Kills all the benchmark PIDs of path/to/benchmark benchmark'
22+
echo './benchie.sh stop path/to/benchmark'
2423
echo ''
2524
echo './benchie.sh clean [benchmark]'
26-
echo '# Cleans all the benchmark data folder client-network-latency/data'
27-
echo './benchie.sh clean client-network-latency'
25+
echo '# Cleans all the benchmark data folder path/to/benchmark/data'
26+
echo './benchie.sh clean path/to/benchmark'
2827
exit 0
2928
fi
3029

0 commit comments

Comments
 (0)