| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 220 |
| 221 def buildbot_archives_baselines(self): | 221 def buildbot_archives_baselines(self): |
| 222 return True | 222 return True |
| 223 | 223 |
| 224 def additional_drt_flag(self): | 224 def additional_drt_flag(self): |
| 225 driver_name = self.driver_name() | 225 driver_name = self.driver_name() |
| 226 if driver_name == self.CONTENT_SHELL_NAME: | 226 if driver_name == self.CONTENT_SHELL_NAME: |
| 227 return ['--dump-render-tree'] | 227 return ['--dump-render-tree'] |
| 228 if driver_name == self.MOJO_SHELL_NAME: | 228 if driver_name == self.MOJO_SHELL_NAME: |
| 229 return [ | 229 return [ |
| 230 '--args-for=mojo://native_viewport_service/ --use-headless-confi
g --use-osmesa', | 230 '--args-for=mojo:native_viewport_service/ --use-headless-config
--use-osmesa', |
| 231 '--content-handlers=text/sky,mojo://sky_viewer/', | 231 '--content-handlers=text/sky,mojo:sky_viewer/', |
| 232 '--url-mappings=mojo:window_manager=mojo:sky_tester', | 232 '--url-mappings=mojo:window_manager=mojo:sky_tester', |
| 233 'mojo:window_manager', | 233 'mojo:window_manager', |
| 234 ] | 234 ] |
| 235 return [] | 235 return [] |
| 236 | 236 |
| 237 def supports_per_test_timeout(self): | 237 def supports_per_test_timeout(self): |
| 238 return False | 238 return False |
| 239 | 239 |
| 240 def default_pixel_tests(self): | 240 def default_pixel_tests(self): |
| 241 return False | 241 return False |
| (...skipping 1518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1760 | 1760 |
| 1761 class PhysicalTestSuite(object): | 1761 class PhysicalTestSuite(object): |
| 1762 def __init__(self, base, args): | 1762 def __init__(self, base, args): |
| 1763 self.name = base | 1763 self.name = base |
| 1764 self.base = base | 1764 self.base = base |
| 1765 self.args = args | 1765 self.args = args |
| 1766 self.tests = set() | 1766 self.tests = set() |
| 1767 | 1767 |
| 1768 def __repr__(self): | 1768 def __repr__(self): |
| 1769 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1769 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
| OLD | NEW |