Add 'Error loading page' case for validating correctness of test-perf data.

This commit is contained in:
Alan Jeffrey 2017-11-13 18:14:32 -06:00
parent 40adc3fd88
commit b845d44aa2

View file

@ -127,7 +127,7 @@ def parse_log(log, testcase, url):
def valid_timing(timing, url=None):
if (timing is None or
testcase is None or
timing.get('title') == 'Error response' or
timing.get('title') == 'Error loading page' or
timing.get('testcase') != url):
return False
else: