X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Finput_data_parser.py;h=268a73620f57a314f4825b968780905fea8b1a1e;hp=6eb60ec2847bf4e6e84506e294fcd02b88b2a8eb;hb=92ccae016299192adde5e322e548fd00ea53f5fb;hpb=67db7dd16cba6db668234b10b22f4ff9c8d58a92 diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 6eb60ec284..268a73620f 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1153,8 +1153,6 @@ class ExecutionChecker(ResultVisitor): return if test.status == u"PASS": - logging.info(self._test_id) - logging.info(tags) if u"DEVICETEST" in tags: test_result[u"type"] = u"DEVICETEST" elif u"NDRPDR" in tags: @@ -1168,9 +1166,6 @@ class ExecutionChecker(ResultVisitor): self._get_ndrpdr_throughput_gbps(test.message) test_result[u"latency"], test_result[u"status"] = \ self._get_ndrpdr_latency(test.message) - logging.info(test_result[u"throughput"]) - logging.info(test_result[u"gbps"]) - logging.info(test_result[u"latency"]) elif u"MRR" in tags or u"FRMOBL" in tags or u"BMRR" in tags: if u"MRR" in tags: test_result[u"type"] = u"MRR" @@ -1192,7 +1187,6 @@ class ExecutionChecker(ResultVisitor): groups = re.search(self.REGEX_MRR, test.message) test_result[u"result"][u"receive-rate"] = \ float(groups.group(3)) / float(groups.group(1)) - logging.info(test_result[u"result"][u"receive-rate"]) elif u"SOAK" in tags: test_result[u"type"] = u"SOAK" test_result[u"throughput"], test_result[u"status"] = \