diff options
author | liyin <liyin11@huawei.com> | 2018-04-11 03:32:36 +0000 |
---|---|---|
committer | Rex Lee <limingjiang@huawei.com> | 2018-04-12 07:09:10 +0000 |
commit | 64c5642f0c5152ae5de728466ab3f6be4c0e24d5 (patch) | |
tree | d176d3fc860f823fe7c73b0f5e76675c4cb72e92 | |
parent | eca2b80b5916aec6bbd65f8db4ae339904005d8d (diff) |
Bug fix in using Unixbench
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)
-rw-r--r-- | yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash b/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash index 5a5dbc394..9f1804819 100644 --- a/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash +++ b/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash @@ -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 } |