| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ('xp', 'x86'), | 105 ('xp', 'x86'), |
| 106 ('win7', 'x86'), | 106 ('win7', 'x86'), |
| 107 ('lucid', 'x86'), | 107 ('lucid', 'x86'), |
| 108 ('lucid', 'x86_64'), | 108 ('lucid', 'x86_64'), |
| 109 # FIXME: Technically this should be 'arm', but adding a third architectu
re type breaks TestConfigurationConverter. | 109 # FIXME: Technically this should be 'arm', but adding a third architectu
re type breaks TestConfigurationConverter. |
| 110 # If we need this to be 'arm' in the future, then we first have to fix T
estConfigurationConverter. | 110 # If we need this to be 'arm' in the future, then we first have to fix T
estConfigurationConverter. |
| 111 ('icecreamsandwich', 'x86'), | 111 ('icecreamsandwich', 'x86'), |
| 112 ) | 112 ) |
| 113 | 113 |
| 114 ALL_BASELINE_VARIANTS = [ | 114 ALL_BASELINE_VARIANTS = [ |
| 115 'mac-yosemite', 'mac-mavericks', 'mac-mountainlion', 'mac-retina', 'mac-
lion', 'mac-snowleopard', | 115 'mac-yosemite', 'mac-mavericks', 'mac-retina', 'mac-mountainlion', 'mac-
lion', 'mac-snowleopard', |
| 116 'win-win7', 'win-xp', | 116 'win-win7', 'win-xp', |
| 117 'linux-x86_64', 'linux-x86', | 117 'linux-x86_64', 'linux-x86', |
| 118 ] | 118 ] |
| 119 | 119 |
| 120 CONFIGURATION_SPECIFIER_MACROS = { | 120 CONFIGURATION_SPECIFIER_MACROS = { |
| 121 'mac': ['snowleopard', 'lion', 'retina', 'mountainlion', 'mavericks', 'y
osemite'], | 121 'mac': ['snowleopard', 'lion', 'mountainlion', 'retina', 'mavericks', 'y
osemite'], |
| 122 'win': ['xp', 'win7'], | 122 'win': ['xp', 'win7'], |
| 123 'linux': ['lucid'], | 123 'linux': ['lucid'], |
| 124 'android': ['icecreamsandwich'], | 124 'android': ['icecreamsandwich'], |
| 125 } | 125 } |
| 126 | 126 |
| 127 DEFAULT_BUILD_DIRECTORIES = ('out',) | 127 DEFAULT_BUILD_DIRECTORIES = ('out',) |
| 128 | 128 |
| 129 # overridden in subclasses. | 129 # overridden in subclasses. |
| 130 FALLBACK_PATHS = {} | 130 FALLBACK_PATHS = {} |
| 131 | 131 |
| (...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1770 class PhysicalTestSuite(object): | 1770 class PhysicalTestSuite(object): |
| 1771 def __init__(self, base, args, reference_args=None): | 1771 def __init__(self, base, args, reference_args=None): |
| 1772 self.name = base | 1772 self.name = base |
| 1773 self.base = base | 1773 self.base = base |
| 1774 self.args = args | 1774 self.args = args |
| 1775 self.reference_args = args if reference_args is None else reference_args | 1775 self.reference_args = args if reference_args is None else reference_args |
| 1776 self.tests = set() | 1776 self.tests = set() |
| 1777 | 1777 |
| 1778 def __repr__(self): | 1778 def __repr__(self): |
| 1779 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) | 1779 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) |
| OLD | NEW |