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 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1534 ['--enable-threaded-compositing']), | 1534 ['--enable-threaded-compositing']), |
1535 VirtualTestSuite('threaded', | 1535 VirtualTestSuite('threaded', |
1536 'compositing/webgl', | 1536 'compositing/webgl', |
1537 ['--enable-threaded-compositing']), | 1537 ['--enable-threaded-compositing']), |
1538 VirtualTestSuite('gpu', | 1538 VirtualTestSuite('gpu', |
1539 'fast/hidpi', | 1539 'fast/hidpi', |
1540 ['--force-compositing-mode']), | 1540 ['--force-compositing-mode']), |
1541 VirtualTestSuite('softwarecompositing', | 1541 VirtualTestSuite('softwarecompositing', |
1542 'compositing', | 1542 'compositing', |
1543 ['--disable-gpu', | 1543 ['--disable-gpu', |
1544 '--enable-software-compositing', | |
1545 '--disable-gpu-compositing'], | 1544 '--disable-gpu-compositing'], |
1546 use_legacy_naming=True), | 1545 use_legacy_naming=True), |
1547 VirtualTestSuite('deferred', | 1546 VirtualTestSuite('deferred', |
1548 'fast/images', | 1547 'fast/images', |
1549 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), | 1548 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), |
1550 VirtualTestSuite('deferred', | 1549 VirtualTestSuite('deferred', |
1551 'inspector/timeline', | 1550 'inspector/timeline', |
1552 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), | 1551 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), |
1553 VirtualTestSuite('gpu/compositedscrolling/overflow', | 1552 VirtualTestSuite('gpu/compositedscrolling/overflow', |
1554 'compositing/overflow', | 1553 'compositing/overflow', |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1759 if name.find('/') != -1: | 1758 if name.find('/') != -1: |
1760 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) | 1759 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) |
1761 return | 1760 return |
1762 self.name = 'virtual/' + name + '/' + base | 1761 self.name = 'virtual/' + name + '/' + base |
1763 self.base = base | 1762 self.base = base |
1764 self.args = args | 1763 self.args = args |
1765 self.tests = tests or set() | 1764 self.tests = tests or set() |
1766 | 1765 |
1767 def __repr__(self): | 1766 def __repr__(self): |
1768 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) | 1767 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) |
OLD | NEW |