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

Unified Diff: frog/scripts/buildbot_annotated_steps.py

Issue 9325002: Fix windows performance tests. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 11 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: frog/scripts/buildbot_annotated_steps.py
===================================================================
--- frog/scripts/buildbot_annotated_steps.py (revision 3859)
+++ frog/scripts/buildbot_annotated_steps.py (working copy)
@@ -118,10 +118,11 @@
TestStep("leg_extra", testpy_mode, system, 'vm', ['leg'], flags)
else:
- # DumpRenderTree tests:
- tests = [
- 'client', 'language', 'corelib', 'isolate', 'frog', 'peg', 'css']
- TestStep("browser", testpy_mode, system, 'frogium', tests, flags)
+ if system == 'windows':
Siggi Cherem (dart-lang) 2012/02/02 19:22:16 != instead of == ?
+ # DumpRenderTree tests (DRT is currently not available on Windows):
+ tests = [
+ 'client', 'language', 'corelib', 'isolate', 'frog', 'peg', 'css']
+ TestStep("browser", testpy_mode, system, 'frogium', tests, flags)
# Webdriver tests.
if system == 'linux':

Powered by Google App Engine
This is Rietveld 408576698