Chromium Code Reviews| 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': |