diff options
author | xudan <xudan16@huawei.com> | 2017-05-23 02:22:05 -0400 |
---|---|---|
committer | xudan <xudan16@huawei.com> | 2017-05-25 23:36:55 -0400 |
commit | 5a15f57c07a5683da58f5b78e28c1a1f1bd368a4 (patch) | |
tree | db4f6f9fdb81b323b02296157d5cd95f94cb5fa5 /dovetail/report.py | |
parent | ed7f8ee3697be3751dc6cfb243cc55092ddd1dd5 (diff) |
change the name of Yardstick results file and some log msg
JIRA: DOVETAIL-428
1. Change the name of Yardstick result file from opnfv_yardstick_tc019.out to
dovetail.ha.tc001.out. Because opnfv_yardstick_tc019 is the name defined in
Yardstick and dovetail.ha.tc001 is the name defined in Dovetail.
2. Check whether the file exists before reporting the results are stored in file.
3. Delete test cases vping_ssh, vping_userdata and sdnvpn.tc003 from the testsuite
proposed_tests.
Change-Id: I4cb16947729479616a03abd9e91b76f9a41a949c
Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/report.py')
-rw-r--r-- | dovetail/report.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dovetail/report.py b/dovetail/report.py index 0d83831d..b864de98 100644 --- a/dovetail/report.py +++ b/dovetail/report.py @@ -264,7 +264,7 @@ class FunctestCrawler(object): "errors": error_case, "skipped": skipped_case} except KeyError as e: - self.logger.error("Key error, exception: %s", e) + self.logger.error("Result data don't have key %s.", e) return None except ValueError: continue @@ -313,7 +313,7 @@ class YardstickCrawler(object): def crawl_from_file(self, testcase=None): file_path = os.path.join(dt_cfg.dovetail_config['result_dir'], - testcase.validate_testcase() + '.out') + testcase.name() + '.out') if not os.path.exists(file_path): self.logger.info('result file not found: %s', file_path) return None |