| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ('mac10.11', 'x86'), | 89 ('mac10.11', 'x86'), |
| 90 ('mac10.12', 'x86'), | 90 ('mac10.12', 'x86'), |
| 91 ('win7', 'x86'), | 91 ('win7', 'x86'), |
| 92 ('win10', 'x86'), | 92 ('win10', 'x86'), |
| 93 ('trusty', 'x86_64'), | 93 ('trusty', 'x86_64'), |
| 94 | 94 |
| 95 # FIXME: Technically this should be 'arm', but adding a third | 95 # FIXME: Technically this should be 'arm', but adding a third |
| 96 # architecture type breaks TestConfigurationConverter. | 96 # architecture type breaks TestConfigurationConverter. |
| 97 # If we need this to be 'arm' in the future, then we first have to | 97 # If we need this to be 'arm' in the future, then we first have to |
| 98 # fix TestConfigurationConverter. | 98 # fix TestConfigurationConverter. |
| 99 ('icecreamsandwich', 'x86'), | 99 ('kitkat', 'x86'), |
| 100 ) | 100 ) |
| 101 | 101 |
| 102 CONFIGURATION_SPECIFIER_MACROS = { | 102 CONFIGURATION_SPECIFIER_MACROS = { |
| 103 'mac': ['retina', 'mac10.9', 'mac10.10', 'mac10.11', 'mac10.12'], | 103 'mac': ['retina', 'mac10.9', 'mac10.10', 'mac10.11', 'mac10.12'], |
| 104 'win': ['win7', 'win10'], | 104 'win': ['win7', 'win10'], |
| 105 'linux': ['trusty'], | 105 'linux': ['trusty'], |
| 106 'android': ['icecreamsandwich'], | 106 'android': ['kitkat'], |
| 107 } | 107 } |
| 108 | 108 |
| 109 DEFAULT_BUILD_DIRECTORIES = ('out',) | 109 DEFAULT_BUILD_DIRECTORIES = ('out',) |
| 110 | 110 |
| 111 FALLBACK_PATHS = {} | 111 FALLBACK_PATHS = {} |
| 112 | 112 |
| 113 SUPPORTED_VERSIONS = [] | 113 SUPPORTED_VERSIONS = [] |
| 114 | 114 |
| 115 # URL to the build requirements page. | 115 # URL to the build requirements page. |
| 116 BUILD_REQUIREMENTS_URL = '' | 116 BUILD_REQUIREMENTS_URL = '' |
| (...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 | 1639 |
| 1640 def __init__(self, base, args, reference_args=None): | 1640 def __init__(self, base, args, reference_args=None): |
| 1641 self.name = base | 1641 self.name = base |
| 1642 self.base = base | 1642 self.base = base |
| 1643 self.args = args | 1643 self.args = args |
| 1644 self.reference_args = args if reference_args is None else reference_args | 1644 self.reference_args = args if reference_args is None else reference_args |
| 1645 self.tests = set() | 1645 self.tests = set() |
| 1646 | 1646 |
| 1647 def __repr__(self): | 1647 def __repr__(self): |
| 1648 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) | 1648 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) |
| OLD | NEW |