| 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 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1526 'compositing/visibility', | 1526 'compositing/visibility', |
| 1527 ['--enable-threaded-compositing']), | 1527 ['--enable-threaded-compositing']), |
| 1528 VirtualTestSuite('threaded', | 1528 VirtualTestSuite('threaded', |
| 1529 'compositing/webgl', | 1529 'compositing/webgl', |
| 1530 ['--enable-threaded-compositing']), | 1530 ['--enable-threaded-compositing']), |
| 1531 VirtualTestSuite('gpu', | 1531 VirtualTestSuite('gpu', |
| 1532 'fast/hidpi', | 1532 'fast/hidpi', |
| 1533 ['--force-compositing-mode']), | 1533 ['--force-compositing-mode']), |
| 1534 VirtualTestSuite('softwarecompositing', | 1534 VirtualTestSuite('softwarecompositing', |
| 1535 'compositing', | 1535 'compositing', |
| 1536 ['--enable-software-compositing', '--disable-gpu-co
mpositing'], | 1536 ['--disable-gpu', |
| 1537 '--enable-software-compositing', |
| 1538 '--disable-gpu-compositing'], |
| 1537 use_legacy_naming=True), | 1539 use_legacy_naming=True), |
| 1538 VirtualTestSuite('deferred', | 1540 VirtualTestSuite('deferred', |
| 1539 'fast/images', | 1541 'fast/images', |
| 1540 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), | 1542 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), |
| 1541 VirtualTestSuite('deferred', | 1543 VirtualTestSuite('deferred', |
| 1542 'inspector/timeline', | 1544 'inspector/timeline', |
| 1543 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), | 1545 ['--enable-deferred-image-decoding', '--enable-per-
tile-painting', '--force-compositing-mode']), |
| 1544 VirtualTestSuite('gpu/compositedscrolling/overflow', | 1546 VirtualTestSuite('gpu/compositedscrolling/overflow', |
| 1545 'compositing/overflow', | 1547 'compositing/overflow', |
| 1546 ['--enable-accelerated-overflow-scroll'], | 1548 ['--enable-accelerated-overflow-scroll'], |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1744 if name.find('/') != -1: | 1746 if name.find('/') != -1: |
| 1745 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) | 1747 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) |
| 1746 return | 1748 return |
| 1747 self.name = 'virtual/' + name + '/' + base | 1749 self.name = 'virtual/' + name + '/' + base |
| 1748 self.base = base | 1750 self.base = base |
| 1749 self.args = args | 1751 self.args = args |
| 1750 self.tests = tests or set() | 1752 self.tests = tests or set() |
| 1751 | 1753 |
| 1752 def __repr__(self): | 1754 def __repr__(self): |
| 1753 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) | 1755 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) |
| OLD | NEW |