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

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

Issue 267323005: Force composite css*/ tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TestExpectations 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 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after
1519 pass 1519 pass
1520 1520
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',
1530 ['--force-compositing-mode']),
1529 ] 1531 ]
1530 1532
1531 def virtual_test_suites(self): 1533 def virtual_test_suites(self):
1532 return [ 1534 return [
1533 VirtualTestSuite('gpu', 1535 VirtualTestSuite('gpu',
1534 'fast/canvas', 1536 'fast/canvas',
1535 ['--enable-accelerated-2d-canvas']), 1537 ['--enable-accelerated-2d-canvas']),
1536 VirtualTestSuite('gpu', 1538 VirtualTestSuite('gpu',
1537 'canvas/philip', 1539 'canvas/philip',
1538 ['--enable-accelerated-2d-canvas']), 1540 ['--enable-accelerated-2d-canvas']),
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
1792 1794
1793 class PhysicalTestSuite(object): 1795 class PhysicalTestSuite(object):
1794 def __init__(self, base, args): 1796 def __init__(self, base, args):
1795 self.name = base 1797 self.name = base
1796 self.base = base 1798 self.base = base
1797 self.args = args 1799 self.args = args
1798 self.tests = set() 1800 self.tests = set()
1799 1801
1800 def __repr__(self): 1802 def __repr__(self):
1801 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1803 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