X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=testsuites%2Fposca%2Frun_posca.py;h=a687e00e86e9762131bb372c1e846a8b8f24eec3;hb=0a29e9ec59e21dc46db0497187cc9d0de0844b05;hp=fcf35d5b3cc3e1a6a3d5ccde5ea854f38ae3f203;hpb=fd7583e843493495e5e15f62b5f7d9ca484bf167;p=bottlenecks.git diff --git a/testsuites/posca/run_posca.py b/testsuites/posca/run_posca.py index fcf35d5b..a687e00e 100755 --- a/testsuites/posca/run_posca.py +++ b/testsuites/posca/run_posca.py @@ -39,15 +39,9 @@ def posca_run(test_level, test_name): elif test_level == "teststory": config = conf_parser.Parser.story_read("posca", test_name) for testcase in config: - print(config[testcase]) + LOG.info("Begin to run %s testcase in POSCA testsuite", testcase) posca_testcase_run(testcase, config[testcase]) - if con_dic["dashboard"] == "y": - cmd = '/home/opnfv/bottlenecks/testsuites/posca/testcase_dashboard/\ -system_bandwidth.py' - pargs = [INTERPRETER, cmd] - LOG.info("\nBegin to establish dashboard.") - sub_result = subprocess.Popen(pargs) - sub_result.wait() + LOG.info("End of %s testcase in POSCA testsuite", testcase) def main(): @@ -58,4 +52,3 @@ def main(): if __name__ == '__main__': main() -