Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
leojonathanoh committed Apr 15, 2021
2 parents 06f00ce + 0ef2010 commit 3eef588
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# `benchie`
# benchie

[![github-actions](https://github.com/theohbrothers/benchie/workflows/ci-master-pr/badge.svg)](https://github.com/theohbrothers/benchie/actions)
[![github-tag](https://img.shields.io/github/tag/theohbrothers/benchie)](https://github.com/theohbrothers/benchie/releases/)
<!-- [![docker-image-size](https://img.shields.io/docker/image-size/theohbrothers/benchie/latest)](https://hub.docker.com/r/theohbrothers/benchie) -->

A simple benchmarking tool.

Expand Down
19 changes: 9 additions & 10 deletions benchie.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,21 @@ if [ "$1" = '--help' ] || [ "$1" = '-h' ] || [ "$1" = 'help' ]; then
echo ''
echo './benchie.sh start [benchmark] [[label]]'
echo '# Starts the path/to/benchmark benchmark. Benchmark data created in path/to/benchmark/data'
echo './benchie.sh start client-network-latency'
echo './benchie.sh start client-network-latency homewifi'
echo './benchie.sh start client-network-latency hotspot'
echo './benchie.sh start client-network-latency wsgx'
echo './benchie.sh start path/to/benchmark'
echo './benchie.sh start path/to/benchmark home'
echo './benchie.sh start path/to/benchmark work'
echo ''
echo './benchie.sh status [benchmark]'
echo '# Gets all the benchmark PIDs of client-network-latency benchmark'
echo './benchie.sh status client-network-latency'
echo '# Gets all the benchmark PIDs of path/to/benchmark benchmark'
echo './benchie.sh status path/to/benchmark'
echo ''
echo './benchie.sh stop [benchmark]'
echo '# Kills all the benchmark PIDs of client-network-latency benchmark'
echo './benchie.sh stop client-network-latency'
echo '# Kills all the benchmark PIDs of path/to/benchmark benchmark'
echo './benchie.sh stop path/to/benchmark'
echo ''
echo './benchie.sh clean [benchmark]'
echo '# Cleans all the benchmark data folder client-network-latency/data'
echo './benchie.sh clean client-network-latency'
echo '# Cleans all the benchmark data folder path/to/benchmark/data'
echo './benchie.sh clean path/to/benchmark'
exit 0
fi

Expand Down

0 comments on commit 3eef588

Please sign in to comment.