additions to L4Prof monitor, edits to logic of col names in L3 Monitor

This commit is contained in:
Dipti
2021-01-21 22:49:12 -08:00
parent 204b6d4e76
commit 44093e28a2
2 changed files with 33 additions and 28 deletions

View File

@@ -108,7 +108,7 @@ class IPV4L4(LFCliBase):
print("Starting test")
curr_time = datetime.datetime.now()
end_time = self.local_realm.parse_time(self.test_duration) + curr_time
sleep_interval = self.local_realm.parse_time(self.test_duration) // 5
sleep_interval = self.local_realm.parse_time(self.test_duration) // 5
passes = 0
expected_passes = 0
for test in range(self.num_tests):
@@ -128,7 +128,6 @@ class IPV4L4(LFCliBase):
else:
self._fail("FAIL: Errors found getting to %s " % self.url, print_fail)
break
#interval_time = cur_time + datetime.timedelta(minutes=2)
if passes == expected_passes:
self._pass("PASS: All tests passes", print_pass)