
We need to add more small atomic destructive scenarios to run them in parallel with load and performance tests. each small destructive scenario should only perform some destructive action and then recover the cloud, without any additional checks in the destructive scenario. Change-Id: I8f87a1d935786d05cdba76608d2efd28b3cc927f
10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TOP_DIR=$(cd $(dirname "$0") && pwd)
|
|
|
|
SCENARIO=$1
|
|
|
|
if [ ! -z ${SCENARIO} ]; then
|
|
rally --debug --plugin-path ${TOP_DIR}/../haos/rally/context,${TOP_DIR}/../haos/rally/plugin task start ${SCENARIO}
|
|
fi
|