Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: tools/testing/perf_testing/run_perf_tests.py

Issue 20847003: Fix Dromaeo performance tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/testing/perf_testing/run_perf_tests.py
diff --git a/tools/testing/perf_testing/run_perf_tests.py b/tools/testing/perf_testing/run_perf_tests.py
index 5ce3f85791a4deababa7d5e00506610ca060c4c8..67f724a5482e886fb3f5e8130d0a132b4e39bb05 100755
--- a/tools/testing/perf_testing/run_perf_tests.py
+++ b/tools/testing/perf_testing/run_perf_tests.py
@@ -427,6 +427,8 @@ class Test(object):
"""Check whether data should be captured for this platform/variant
combination.
"""
+ if variant == 'dart_html' and platform != 'dartium':
+ return False
if platform == 'dartium' and (variant == 'js' or variant == 'dart2js_html'):
# Testing JavaScript performance on Dartium is a waste of time. Should be
# same as Chrome.

Powered by Google App Engine
This is Rietveld 408576698