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

Unified Diff: tools/bots/compiler.py

Issue 12591002: Remove special casing running dart2js tests on ie bots. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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/bots/compiler.py
===================================================================
--- tools/bots/compiler.py (revision 19545)
+++ tools/bots/compiler.py (working copy)
@@ -212,27 +212,12 @@
# that run the browser tests to cut down on the cycle time.
TestStep("dart2js_unit", mode, system, 'none', 'vm', ['dart2js'], flags)
- if not (system.startswith('win') and runtime.startswith('ie')):
- # Run the default set of test suites.
- TestStep("dart2js", mode, system, 'dart2js', runtime, [], flags)
+ # Run the default set of test suites.
+ TestStep("dart2js", mode, system, 'dart2js', runtime, [], flags)
+ # TODO(kasperl): Consider running peg and css tests too.
+ extras = ['dart2js_extra', 'dart2js_native', 'dart2js_foreign']
+ TestStep("dart2js_extra", mode, system, 'dart2js', runtime, extras, flags)
- # TODO(kasperl): Consider running peg and css tests too.
- extras = ['dart2js_extra', 'dart2js_native', 'dart2js_foreign']
- TestStep("dart2js_extra", mode, system, 'dart2js', runtime, extras, flags)
- else:
- # TODO(ricow): Enable standard sharding for IE bots when we have more vms.
- if test_set == 'html':
- TestStep("dart2js", mode, system, 'dart2js', runtime, ['html'], flags)
- elif test_set == 'all':
- TestStep("dart2js", mode, system, 'dart2js', runtime, ['dartc',
- 'samples', 'standalone', 'corelib', 'co19', 'language', 'isolate',
- 'vm', 'json', 'benchmark_smoke', 'dartdoc', 'utils', 'pub', 'lib'],
- flags)
- extras = ['dart2js_extra', 'dart2js_native', 'dart2js_foreign']
- TestStep("dart2js_extra", mode, system, 'dart2js', runtime, extras,
- flags)
-
-
def _DeleteTempWebdriverProfiles(directory):
"""Find all the firefox profiles in a particular directory and delete them."""
for f in os.listdir(directory):
« 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