Bug fix in using Unixbench 89/55389/2
authorliyin <liyin11@huawei.com>
Wed, 11 Apr 2018 03:32:36 +0000 (03:32 +0000)
committerliyin <liyin11@huawei.com>
Wed, 11 Apr 2018 03:40:34 +0000 (03:40 +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>
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
 }