Skip to content

Commit

Permalink
Merge pull request #313 from perftool-incubator/fix-mvparams-stream
Browse files Browse the repository at this point in the history
Fix mv-params stream for multibench
  • Loading branch information
rafaelfolco authored Oct 9, 2023
2 parents 58a7222 + 7679bb2 commit 392daf2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/_main
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ elif [ "${1}" == "run" ]; then
benchmark+=$(echo ",$b" | cut -f1 -d:)
done
bench_list=$(sed -e 's/^,//' <<< $benchmark)
bench_list=$(echo $bench_list | sed -e 's/,/ /g')

### mv-params
# dump json output to a file
Expand All @@ -228,6 +229,7 @@ elif [ "${1}" == "run" ]; then
echo ${blockbreaker_output} > $bench_mv_params
mv_params+=",${bench_mv_params}"
done
mv_params=$(sed -e 's/^,//' <<< $mv_params)

### tool-params
# dump output json to a file
Expand Down

0 comments on commit 392daf2

Please sign in to comment.