aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-12-01 05:40:23 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-01 05:40:23 +0000
commit061769d82b3a14d79ab1d7292718be6a95a38ccb (patch)
treeb7e141006d4835d3aa93ad5ce59ae0cfe3515ca7 /yardstick/benchmark/scenarios
parentee99ba35de98cda9737ff743957e705df348622f (diff)
parent3ca70b916c386b7ec4d9a7f2f9bb6fec2e917785 (diff)
Merge "KVMFORNFV: Reverting LiveMigration changes"
Diffstat (limited to 'yardstick/benchmark/scenarios')
-rw-r--r--yardstick/benchmark/scenarios/compute/qemu_migrate.py4
-rw-r--r--yardstick/benchmark/scenarios/compute/qemu_migrate_benchmark.bash20
2 files changed, 11 insertions, 13 deletions
diff --git a/yardstick/benchmark/scenarios/compute/qemu_migrate.py b/yardstick/benchmark/scenarios/compute/qemu_migrate.py
index 286d8cdaf..2de1270ef 100644
--- a/yardstick/benchmark/scenarios/compute/qemu_migrate.py
+++ b/yardstick/benchmark/scenarios/compute/qemu_migrate.py
@@ -113,11 +113,11 @@ class QemuMigrate(base.Scenario):
if status:
raise RuntimeError(stderr)
- parsed_data = jsonutils.loads(stdout)
+ result.update(jsonutils.loads(stdout))
if "sla" in self.scenario_cfg:
sla_error = ""
- for t, timevalue in parsed_data.items():
+ for t, timevalue in result.items():
if 'max_%s' % t not in self.scenario_cfg['sla']:
continue
diff --git a/yardstick/benchmark/scenarios/compute/qemu_migrate_benchmark.bash b/yardstick/benchmark/scenarios/compute/qemu_migrate_benchmark.bash
index 757553e8b..d95e91425 100644
--- a/yardstick/benchmark/scenarios/compute/qemu_migrate_benchmark.bash
+++ b/yardstick/benchmark/scenarios/compute/qemu_migrate_benchmark.bash
@@ -21,13 +21,6 @@ max_down_time=$6
OUTPUT_FILE=/tmp/output-qemu.log
-echo "To check the parameters:"
-echo "SRC: $src"
-echo "DST: $dst"
-echo "DST_IP: $dst_ip"
-echo "MIGRATE_PORT: $migrate_to_port"
-echo "DOWN_TIME: $max_down_time"
-
do_migrate()
{
echo "Execution of Live Migration"
@@ -49,7 +42,8 @@ do_migrate()
done
echo "End of Live Migration"
-}
+
+} > /dev/null
output_qemu()
{
@@ -74,14 +68,18 @@ echo -e "{ \
\"setuptime\":\"$setuptime\" \
}"
}
+
# main entry
main()
{
- echo "Perform LiveMigration"
+ # Perform LiveMigration
do_migrate
- echo "LiveMigration Status"
+
+ # LiveMigration Status
output_qemu
- echo "LiveMigration JSON output "
+
+ # LiveMigration JSON output
output_json
}
+
main