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:
Bin Zhao 2017-07-26 00:39:35 -07:00
parent d84e6f3426
commit 666fc6ae41

View File

@ -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
@ -648,4 +648,4 @@ only at small concurrency. This behaviour is not normal
for an HA OpenStack configuration and should be investigated in future. for an HA OpenStack configuration and should be investigated in future.
.. references: .. references:
.. _Rally installation documentation: https://rally.readthedocs.io/en/latest/install.html .. _Rally installation documentation: https://rally.readthedocs.io/en/latest/install.html