| 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)
|
|
|
|
|