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

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

Issue 272633003: Force composite fast/ tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More NeedsRebaseline Created 6 years, 7 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | 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 1510 matching lines...) Expand 10 before | Expand all | Expand 10 after
1521 def sample_process(self, name, pid): 1521 def sample_process(self, name, pid):
1522 pass 1522 pass
1523 1523
1524 def physical_test_suites(self): 1524 def physical_test_suites(self):
1525 return [ 1525 return [
1526 # For example, to turn on force-compositing-mode in the svg/ directo ry: 1526 # For example, to turn on force-compositing-mode in the svg/ directo ry:
1527 # PhysicalTestSuite('svg', 1527 # PhysicalTestSuite('svg',
1528 # ['--force-compositing-mode']), 1528 # ['--force-compositing-mode']),
1529 PhysicalTestSuite('css', 1529 PhysicalTestSuite('css',
1530 ['--force-compositing-mode']), 1530 ['--force-compositing-mode']),
1531 PhysicalTestSuite('fast',
1532 ['--force-compositing-mode']),
1531 ] 1533 ]
1532 1534
1533 def virtual_test_suites(self): 1535 def virtual_test_suites(self):
1534 return [ 1536 return [
1535 VirtualTestSuite('gpu', 1537 VirtualTestSuite('gpu',
1536 'fast/canvas', 1538 'fast/canvas',
1537 ['--enable-accelerated-2d-canvas']), 1539 ['--enable-accelerated-2d-canvas']),
1538 VirtualTestSuite('gpu', 1540 VirtualTestSuite('gpu',
1539 'canvas/philip', 1541 'canvas/philip',
1540 ['--enable-accelerated-2d-canvas']), 1542 ['--enable-accelerated-2d-canvas']),
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
1794 1796
1795 class PhysicalTestSuite(object): 1797 class PhysicalTestSuite(object):
1796 def __init__(self, base, args): 1798 def __init__(self, base, args):
1797 self.name = base 1799 self.name = base
1798 self.base = base 1800 self.base = base
1799 self.args = args 1801 self.args = args
1800 self.tests = set() 1802 self.tests = set()
1801 1803
1802 def __repr__(self): 1804 def __repr__(self):
1803 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1805 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698