Code Review
/
yardstick.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
ead9006
)
Bug fix in using Unixbench
89/55389/2
author
liyin
<liyin11@huawei.com>
Wed, 11 Apr 2018 03:32:36 +0000
(
03:32
+0000)
committer
liyin
<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
patch
|
blob
|
history
diff --git
a/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash
b/yardstick/benchmark/scenarios/compute/unixbench_benchmark.bash
index
5a5dbc3
..
9f18048
100644
(file)
--- 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
}