| 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 | 105 |
| 106 def _path_to_driver(self, target=None): | 106 def _path_to_driver(self, target=None): |
| 107 return self._build_path_with_target(target, self.driver_name() + '.app',
'Contents', 'MacOS', self.driver_name()) | 107 return self._build_path_with_target(target, self.driver_name() + '.app',
'Contents', 'MacOS', self.driver_name()) |
| 108 | 108 |
| 109 def _path_to_helper(self): | 109 def _path_to_helper(self): |
| 110 binary_name = 'layout_test_helper' | 110 binary_name = 'layout_test_helper' |
| 111 return self._build_path(binary_name) | 111 return self._build_path(binary_name) |
| 112 | 112 |
| 113 def _path_to_wdiff(self): | 113 def _path_to_wdiff(self): |
| 114 return 'wdiff' | 114 return 'wdiff' |
| 115 | |
| 116 def _port_specific_expectations_files(self): | |
| 117 # FIXME: Delete this file once the 10.11 failures have been rebaselined
or triaged | |
| 118 # and we know why we're seeing failures on 10.9 and 10.10 ... | |
| 119 return super(MacPort, self)._port_specific_expectations_files() + [ | |
| 120 self.host.filesystem.join(self.layout_tests_dir(), 'Mac10_11_Expecta
tions')] | |
| OLD | NEW |