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

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

Issue 276003002: Add --force-compositing-mode to some virtual test suites. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fcm-suites1: expectations 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 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 PhysicalTestSuite('editing', 1533 PhysicalTestSuite('editing',
1534 ['--force-compositing-mode']), 1534 ['--force-compositing-mode']),
1535 PhysicalTestSuite('fast', 1535 PhysicalTestSuite('fast',
1536 ['--force-compositing-mode']), 1536 ['--force-compositing-mode']),
1537 ] 1537 ]
1538 1538
1539 def virtual_test_suites(self): 1539 def virtual_test_suites(self):
1540 return [ 1540 return [
1541 VirtualTestSuite('gpu', 1541 VirtualTestSuite('gpu',
1542 'fast/canvas', 1542 'fast/canvas',
1543 ['--enable-accelerated-2d-canvas']), 1543 ['--enable-accelerated-2d-canvas',
1544 '--force-compositing-mode']),
1544 VirtualTestSuite('gpu', 1545 VirtualTestSuite('gpu',
1545 'canvas/philip', 1546 'canvas/philip',
1546 ['--enable-accelerated-2d-canvas']), 1547 ['--enable-accelerated-2d-canvas']),
1547 VirtualTestSuite('threaded', 1548 VirtualTestSuite('threaded',
1548 'compositing/visibility', 1549 'compositing/visibility',
1549 ['--enable-threaded-compositing']), 1550 ['--enable-threaded-compositing']),
1550 VirtualTestSuite('threaded', 1551 VirtualTestSuite('threaded',
1551 'compositing/webgl', 1552 'compositing/webgl',
1552 ['--enable-threaded-compositing']), 1553 ['--enable-threaded-compositing']),
1553 VirtualTestSuite('gpu', 1554 VirtualTestSuite('gpu',
1554 'fast/hidpi', 1555 'fast/hidpi',
1555 ['--force-compositing-mode']), 1556 ['--force-compositing-mode']),
1556 VirtualTestSuite('softwarecompositing', 1557 VirtualTestSuite('softwarecompositing',
1557 'compositing', 1558 'compositing',
1558 ['--disable-gpu', 1559 ['--disable-gpu',
1559 '--disable-gpu-compositing'], 1560 '--disable-gpu-compositing',
1561 '--force-compositing-mode'],
1560 use_legacy_naming=True), 1562 use_legacy_naming=True),
1561 VirtualTestSuite('deferred', 1563 VirtualTestSuite('deferred',
1562 'fast/images', 1564 'fast/images',
1563 ['--enable-deferred-image-decoding', '--enable-per- tile-painting', '--force-compositing-mode']), 1565 ['--enable-deferred-image-decoding', '--enable-per- tile-painting', '--force-compositing-mode']),
1564 VirtualTestSuite('deferred', 1566 VirtualTestSuite('deferred',
1565 'inspector/timeline', 1567 'inspector/timeline',
1566 ['--enable-deferred-image-decoding', '--enable-per- tile-painting', '--force-compositing-mode']), 1568 ['--enable-deferred-image-decoding', '--enable-per- tile-painting', '--force-compositing-mode']),
1567 VirtualTestSuite('gpu/compositedscrolling/overflow', 1569 VirtualTestSuite('gpu/compositedscrolling/overflow',
1568 'compositing/overflow', 1570 'compositing/overflow',
1569 ['--enable-accelerated-overflow-scroll'], 1571 ['--enable-accelerated-overflow-scroll',
1572 '--force-compositing-mode'],
1570 use_legacy_naming=True), 1573 use_legacy_naming=True),
1571 VirtualTestSuite('gpu/compositedscrolling/scrollbars', 1574 VirtualTestSuite('gpu/compositedscrolling/scrollbars',
1572 'scrollbars', 1575 'scrollbars',
1573 ['--enable-accelerated-overflow-scroll'], 1576 ['--enable-accelerated-overflow-scroll',
1577 '--force-compositing-mode'],
1574 use_legacy_naming=True), 1578 use_legacy_naming=True),
1575 VirtualTestSuite('threaded', 1579 VirtualTestSuite('threaded',
1576 'animations', 1580 'animations',
1577 ['--enable-threaded-compositing']), 1581 ['--enable-threaded-compositing']),
1578 VirtualTestSuite('threaded', 1582 VirtualTestSuite('threaded',
1579 'transitions', 1583 'transitions',
1580 ['--enable-threaded-compositing']), 1584 ['--enable-threaded-compositing']),
1581 VirtualTestSuite('stable', 1585 VirtualTestSuite('stable',
1582 'webexposed', 1586 'webexposed',
1583 ['--stable-release-mode']), 1587 ['--stable-release-mode']),
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 1804
1801 class PhysicalTestSuite(object): 1805 class PhysicalTestSuite(object):
1802 def __init__(self, base, args): 1806 def __init__(self, base, args):
1803 self.name = base 1807 self.name = base
1804 self.base = base 1808 self.base = base
1805 self.args = args 1809 self.args = args
1806 self.tests = set() 1810 self.tests = set()
1807 1811
1808 def __repr__(self): 1812 def __repr__(self):
1809 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1813 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