On Wed, Nov 11, 2020 at 06:16:42PM +0800, Zhang Yale wrote:
[Why] hackbench-git is an old version required by the customer. The hackbench-git usage: hackbench [-pipe] <num groups> [process|thread] [loops] So need to add new test script for hackbench-git.
Signed-off-by: Zhang Yale ylzhangah@qq.com
tests/hackbench-git | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 tests/hackbench-git
diff --git a/tests/hackbench-git b/tests/hackbench-git new file mode 100755 index 00000000..62dc071d --- /dev/null +++ b/tests/hackbench-git @@ -0,0 +1,41 @@ +#!/bin/sh +# - runtime +# - nr_threads +# - mode +# - ipc +# - iterations +# - loops
+## Hackbench-git is an old version, It is both a benchmark and a stress test for the Linux kernel scheduler. +## It's main job is to create a specified number of schedulable entities pairs.
It's => Its // "it's" means "it is", "its" means "some thing of it"
+## (either threads or traditional processes) which communicate via either sockets or pipes and time how long +## it takes for each pair to send data back and forth.
This sentence is too long. You'd better divide it into some simple sentences. In fact, I didn't understand what does it mean~
Thanks, Yuanchao