summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChase Qi <chase.qi@linaro.org>2017-08-09 15:41:59 +0800
committerChase Qi <chase.qi@linaro.org>2017-08-09 15:42:50 +0800
commit12c291dba0d0d54127bec33d491a2268f59faf32 (patch)
tree401408371b4273c05acd60c06a4a84c987dfcbd9
parent259ba19972b202ee035243347081948309ddd9de (diff)
linux: unixbench: fix a typo on logfile name
Change-Id: Ie79eed2ad5f43c48f4d4c793b4c42501b1a01a75 Signed-off-by: Chase Qi <chase.qi@linaro.org>
-rwxr-xr-xautomated/linux/unixbench/unixbench.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/automated/linux/unixbench/unixbench.sh b/automated/linux/unixbench/unixbench.sh
index 75af832..73b7c83 100755
--- a/automated/linux/unixbench/unixbench.sh
+++ b/automated/linux/unixbench/unixbench.sh
@@ -55,5 +55,5 @@ log_parser "single" "${OUTPUT}/unixbench-single.txt"
# Run the number of CPUs copies.
if [ "$(nproc)" -gt 1 ]; then
./Run -c "$(nproc)" | tee "${OUTPUT}/unixbench-multiple.txt"
- log_parser "multiple" "${OUTPUT}/unixbench-single.txt"
+ log_parser "multiple" "${OUTPUT}/unixbench-multiple.txt"
fi