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

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

Issue 10441011: Suppress dart:dom version of Dromaeo for Dartium (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 29669d9447b0fd7e838be0be3e349bf6df4f6436..468d55f3ac4225dad4d7c623f73767f82f448fb5 100755
--- a/tools/testing/perf_testing/run_perf_tests.py
+++ b/tools/testing/perf_testing/run_perf_tests.py
@@ -845,6 +845,9 @@ class DromaeoTest(RuntimePerformanceTest):
# running JS dromaeo.
if browser == 'dartium' and version == 'js':
return False
+ # dart:dom has been removed from Dartium.
+ if browser == 'dartium' and 'dom' in version:
+ return False
# Only run dart2js on Chrome until we validate it elsewhere.
if browser != 'chrome' and 'dart2js' in version:
return False
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698