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

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py

Issue 1173403006: Add webkitpy platform support for Mac 10.10 Yosemite. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 TestConfiguration('snowleopard', 'x86', 'debug'), 282 TestConfiguration('snowleopard', 'x86', 'debug'),
283 TestConfiguration('snowleopard', 'x86', 'release'), 283 TestConfiguration('snowleopard', 'x86', 'release'),
284 TestConfiguration('lion', 'x86', 'debug'), 284 TestConfiguration('lion', 'x86', 'debug'),
285 TestConfiguration('lion', 'x86', 'release'), 285 TestConfiguration('lion', 'x86', 'release'),
286 TestConfiguration('retina', 'x86', 'debug'), 286 TestConfiguration('retina', 'x86', 'debug'),
287 TestConfiguration('retina', 'x86', 'release'), 287 TestConfiguration('retina', 'x86', 'release'),
288 TestConfiguration('mountainlion', 'x86', 'debug'), 288 TestConfiguration('mountainlion', 'x86', 'debug'),
289 TestConfiguration('mountainlion', 'x86', 'release'), 289 TestConfiguration('mountainlion', 'x86', 'release'),
290 TestConfiguration('mavericks', 'x86', 'debug'), 290 TestConfiguration('mavericks', 'x86', 'debug'),
291 TestConfiguration('mavericks', 'x86', 'release'), 291 TestConfiguration('mavericks', 'x86', 'release'),
292 TestConfiguration('yosemite', 'x86', 'debug'),
293 TestConfiguration('yosemite', 'x86', 'release'),
292 TestConfiguration('xp', 'x86', 'debug'), 294 TestConfiguration('xp', 'x86', 'debug'),
293 TestConfiguration('xp', 'x86', 'release'), 295 TestConfiguration('xp', 'x86', 'release'),
294 TestConfiguration('win7', 'x86', 'debug'), 296 TestConfiguration('win7', 'x86', 'debug'),
295 TestConfiguration('win7', 'x86', 'release'), 297 TestConfiguration('win7', 'x86', 'release'),
296 TestConfiguration('lucid', 'x86', 'debug'), 298 TestConfiguration('lucid', 'x86', 'debug'),
297 TestConfiguration('lucid', 'x86', 'release'), 299 TestConfiguration('lucid', 'x86', 'release'),
298 TestConfiguration('lucid', 'x86_64', 'debug'), 300 TestConfiguration('lucid', 'x86_64', 'debug'),
299 TestConfiguration('lucid', 'x86_64', 'release'), 301 TestConfiguration('lucid', 'x86_64', 'release'),
300 TestConfiguration('icecreamsandwich', 'x86', 'debug'), 302 TestConfiguration('icecreamsandwich', 'x86', 'debug'),
301 TestConfiguration('icecreamsandwich', 'x86', 'release'), 303 TestConfiguration('icecreamsandwich', 'x86', 'release'),
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 def test_additional_platform_directory(self): 481 def test_additional_platform_directory(self):
480 port = self.make_port(options=MockOptions(additional_platform_directory= ['/tmp/foo'])) 482 port = self.make_port(options=MockOptions(additional_platform_directory= ['/tmp/foo']))
481 self.assertEqual(port.baseline_search_path()[0], '/tmp/foo') 483 self.assertEqual(port.baseline_search_path()[0], '/tmp/foo')
482 484
483 def test_virtual_test_suites(self): 485 def test_virtual_test_suites(self):
484 # We test that we can load the real LayoutTests/VirtualTestSuites file p roperly, so we 486 # We test that we can load the real LayoutTests/VirtualTestSuites file p roperly, so we
485 # use a real SystemHost(). We don't care what virtual_test_suites() retu rns as long 487 # use a real SystemHost(). We don't care what virtual_test_suites() retu rns as long
486 # as it is iterable. 488 # as it is iterable.
487 port = self.make_port(host=SystemHost(), port_name=self.full_port_name) 489 port = self.make_port(host=SystemHost(), port_name=self.full_port_name)
488 self.assertTrue(isinstance(port.virtual_test_suites(), collections.Itera ble)) 490 self.assertTrue(isinstance(port.virtual_test_suites(), collections.Itera ble))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698