aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2020-10-28 14:43:28 +0100
committerJan Gelety <jgelety@cisco.com>2020-10-26 12:23:40 +0100
commite82e296c5e452126bcdac7f0a3c91abe3bbb73e9 (patch)
treed50c1420a17a50b726b1757d1cbe000b2f645f21
parent9a993750b451cd75d1acc247352e8850b760806b (diff)
PAL: Remove debug info from result parser
Change-Id: I9b6c2185e43ed0b33dbeafb3d2757656f9e49bc3 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit b9aabb97bb10297ce004f731b7b61b9dc9c83ee6) Change-Id: I0c58a35be63415a46ede8f340107a034fcb4f90d Signed-off-by: Jan Gelety <jgelety@cisco.com>
-rw-r--r--resources/tools/presentation/input_data_parser.py6
1 files changed, 0 insertions, 6 deletions
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"] = \