Fix the shell script to run reliability test
There are 3 minor errors in the shell script. This change is to fix them to make the script work. Change-Id: I610f99c2a3a9a8d224fdd9d49427a9494ccb6161 Closes-Bug: #1706537
This commit is contained in:
parent
d84e6f3426
commit
666fc6ae41
@ -306,10 +306,10 @@ Use the following VM parameters for testing purposes:
|
|||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
|
|
||||||
PLUGIN_PATH="${WORK_DIR}/plugins"
|
PLUGINS_PATH="${WORK_DIR}/plugins"
|
||||||
SCENARIOS="random_controller_reboot_factor.json"
|
SCENARIOS="random_controller_reboot_factor.json"
|
||||||
for scenario in SCENARIOS; do
|
for scenario in ${SCENARIOS}; do
|
||||||
rally --plugin-paths ${PLUGINS_PATH} task start --tag ${scenario} ${WORK_DR}/scenarios/${scenario}
|
rally --plugin-paths ${PLUGINS_PATH} task start --tag ${scenario} ${WORK_DIR}/scenarios/${scenario}
|
||||||
done
|
done
|
||||||
task_list="$(rally task list --uuids-only)"
|
task_list="$(rally task list --uuids-only)"
|
||||||
rally task report --tasks ${task_list} --out=${WORK_DIR}/rally_report.html
|
rally task report --tasks ${task_list} --out=${WORK_DIR}/rally_report.html
|
||||||
|
Loading…
x
Reference in New Issue
Block a user