diff options
author | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-04-16 17:19:44 +0800 |
---|---|---|
committer | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-04-21 17:35:59 +0800 |
commit | 61aafcb0ca6cab9c25d2df7d409f4fa8716ebe5f (patch) | |
tree | 815ce68f8a3a63253f425da8bf902877deb6a0d1 /utils/infra_setup/runner/yardstick.py | |
parent | 73bd5d30fb9d5ee3bc01d78b431282332a53b44d (diff) |
Lazy creation of VM pairs for soak throuputs tests
Add the lazy creation progress of VM pairs while testing
dataplane traffic using netperf
Change-Id: I3228ff444ea074b99cb1afaec138191358064e40
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'utils/infra_setup/runner/yardstick.py')
-rw-r--r-- | utils/infra_setup/runner/yardstick.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/infra_setup/runner/yardstick.py b/utils/infra_setup/runner/yardstick.py index 616bcc52..3eeeee6b 100644 --- a/utils/infra_setup/runner/yardstick.py +++ b/utils/infra_setup/runner/yardstick.py @@ -45,7 +45,7 @@ def yardstick_command_parser(debug, cidr, outfile, parameter): cmd += " --output-file " + outfile image_name = config.bottlenecks_config["yardstick_image_name"] parameter["image_name"] = image_name - print parameter + LOG.info(parameter) if parameter is not None: cmd += " --task-args " + '"' + str(parameter) + '"' return cmd |