diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-11-15 12:34:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 12:34:13 -0600 |
commit | 8724bc0c73dcb96237298cf3dc9be944108bcd35 (patch) | |
tree | 9edab9576053b96c62fb0470bac81f9ec449c7e2 | |
parent | 9863d514512aabbcfaeabba7e530b87f61a8d489 (diff) | |
parent | b845d44aa2fb66a77e3680ba6109868143ca02cb (diff) | |
download | servo-8724bc0c73dcb96237298cf3dc9be944108bcd35.tar.gz servo-8724bc0c73dcb96237298cf3dc9be944108bcd35.zip |
Auto merge of #19205 - asajeffrey:test-perf-add-error-message, r=edunham
Add 'Error loading page' case for validating correctness of test-perf data
<!-- Please describe your changes on the following line: -->
Add case for `Error loading page` title to test-perf runner.
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not require tests because this is test infrastructure
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19205)
<!-- Reviewable:end -->
-rw-r--r-- | etc/ci/performance/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/ci/performance/runner.py b/etc/ci/performance/runner.py index b5afb96ed17..0fcc2b109b0 100644 --- a/etc/ci/performance/runner.py +++ b/etc/ci/performance/runner.py @@ -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: |