https://bugs.webkit.org/show_bug.cgi?id=133455
Reviewed by Timothy Hatcher.
PerformanceTests:
* Speedometer/: Renamed from DoYouEvenBench.
* Skipped: Updated the path for InteractiveRunner.html
Tools:
Since the perf. dashboard doesn't support following renamed benchmarks,
keep reporting Speedometer results as DoYouEvenBench results.
* Scripts/webkitpy/performance_tests/perftestsrunner.py:
(_generate_results_dict):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@169541
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-06-02 Ryosuke Niwa <rniwa@webkit.org>
+
+ Rename DoYouEvenBench 0.17 to Speedometer 1.0 and add a new look.
+ https://bugs.webkit.org/show_bug.cgi?id=133455
+
+ Reviewed by Timothy Hatcher.
+
+ * Speedometer/: Renamed from DoYouEvenBench.
+ * Skipped: Updated the path for InteractiveRunner.html
+
2014-06-02 Ryosuke Niwa <rniwa@webkit.org>
Rename DoYouEvenBench 0.17 to Speedometer 1.0 and add a new look.
Layout/LineLayoutJapanese.html
# Don't run the interactive runner. We run Full.html
-DoYouEvenBench/InteractiveRunner.html
+Speedometer/InteractiveRunner.html
# We skip Shapes tests for now: https://bugs.webkit.org/show_bug.cgi?id=128188
Layout/Shapes
+2014-06-01 Ryosuke Niwa <rniwa@webkit.org>
+
+ Rename DoYouEvenBench 0.17 to Speedometer 1.0 and add a new look.
+ https://bugs.webkit.org/show_bug.cgi?id=133455
+
+ Reviewed by Timothy Hatcher.
+
+ Since the perf. dashboard doesn't support following renamed benchmarks,
+ keep reporting Speedometer results as DoYouEvenBench results.
+
+ * Scripts/webkitpy/performance_tests/perftestsrunner.py:
+ (_generate_results_dict):
+
2014-05-31 Darin Adler <darin@apple.com>
Viewport percentage tests that resize the viewport are flaky
for i in range(0, len(path)):
is_last_token = i + 1 == len(path)
url = view_source_url('PerformanceTests/' + '/'.join(path[0:i + 1]))
- tests.setdefault(path[i], {'url': url})
- current_test = tests[path[i]]
+ test_name = path[i]
+
+ # FIXME: This is a temporary workaround for the fact perf dashboard doesn't support renaming tests.
+ if test_name == 'Speedometer':
+ test_name = 'DoYouEvenBench'
+
+ tests.setdefault(test_name, {'url': url})
+ current_test = tests[test_name]
if is_last_token:
current_test['url'] = view_source_url('PerformanceTests/' + metric.test_file_name())
current_test.setdefault('metrics', {})