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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 2722633003: Remove Port.buildbot_archives_baselines. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 self.set_option_default('target', self._options.configuration) 184 self.set_option_default('target', self._options.configuration)
185 self._test_configuration = None 185 self._test_configuration = None
186 self._reftest_list = {} 186 self._reftest_list = {}
187 self._results_directory = None 187 self._results_directory = None
188 self._virtual_test_suites = None 188 self._virtual_test_suites = None
189 189
190 def __str__(self): 190 def __str__(self):
191 return "Port{name=%s, version=%s, architecture=%s, test_configuration=%s }" % ( 191 return "Port{name=%s, version=%s, architecture=%s, test_configuration=%s }" % (
192 self._name, self._version, self._architecture, self._test_configurat ion) 192 self._name, self._version, self._architecture, self._test_configurat ion)
193 193
194 def buildbot_archives_baselines(self):
195 return True
196
197 def additional_driver_flag(self): 194 def additional_driver_flag(self):
198 if self.driver_name() == self.CONTENT_SHELL_NAME: 195 if self.driver_name() == self.CONTENT_SHELL_NAME:
199 return ['--run-layout-test'] 196 return ['--run-layout-test']
200 return [] 197 return []
201 198
202 def supports_per_test_timeout(self): 199 def supports_per_test_timeout(self):
203 return False 200 return False
204 201
205 def default_pixel_tests(self): 202 def default_pixel_tests(self):
206 return True 203 return True
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1635 1632
1636 def __init__(self, base, args, reference_args=None): 1633 def __init__(self, base, args, reference_args=None):
1637 self.name = base 1634 self.name = base
1638 self.base = base 1635 self.base = base
1639 self.args = args 1636 self.args = args
1640 self.reference_args = args if reference_args is None else reference_args 1637 self.reference_args = args if reference_args is None else reference_args
1641 self.tests = set() 1638 self.tests = set()
1642 1639
1643 def __repr__(self): 1640 def __repr__(self):
1644 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base, self.args, self.reference_args) 1641 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base, self.args, self.reference_args)
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698