Bug fix in using Unixbench 21/55521/1
authorliyin <liyin11@huawei.com>
Wed, 11 Apr 2018 03:32:36 +0000 (03:32 +0000)
committerRex Lee <limingjiang@huawei.com>
Thu, 12 Apr 2018 07:09:10 +0000 (07:09 +0000)
JIRA: YARDSTICK-1117

This bug will cause the error in running unixbench.
"no such file named ./run"
So we have to fix it.

Change-Id: I141fcb5567fbb0e3df97aee677cb946a25a9788e
Signed-off-by: liyin <liyin11@huawei.com>
(cherry picked from commit 941d3b0c0fa4583c49fa6fd2aa3686a1b55ab187)

yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash

index 5a5dbc3..9f18048 100644 (file)
@@ -18,7 +18,7 @@ OUTPUT_FILE=/tmp/unixbench-out.log
 # run unixbench test
 run_unixbench()
 {
-    cd /opt/tempT/UnixBench/
+    cd /opt/tempT/UnixBench/UnixBench/
     ./Run $OPTIONS > $OUTPUT_FILE
 }