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

Unified Diff: dart/utils/compiler/buildbot.py

Issue 10919099: Disable checked mode browser tests on platforms where they break test framework. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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: dart/utils/compiler/buildbot.py
diff --git a/dart/utils/compiler/buildbot.py b/dart/utils/compiler/buildbot.py
index 14f096d62e406d1771ec45a00bf7941fbced770d..ba42afae6aec3589d552b20ed6727ce19e32ef90 100644
--- a/dart/utils/compiler/buildbot.py
+++ b/dart/utils/compiler/buildbot.py
@@ -339,7 +339,12 @@ def main():
status = TestCompiler(runtime, mode, system, option, test_flags,
is_buildbot)
- if status == 0:
+ if (status == 0
+ and (system == 'linux' or runtime != 'chrome')
+ and runtime != 'opera'
+ and runtime != 'ff'
+ and runtime != 'ie'
+ and runtime != 'safari'):
status = TestCompiler(runtime, mode, system, option,
test_flags + ['--checked'], is_buildbot)
« 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