| 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 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1546 VirtualTestSuite('gpu/compositedscrolling/scrollbars', | 1546 VirtualTestSuite('gpu/compositedscrolling/scrollbars', |
| 1547 'scrollbars', | 1547 'scrollbars', |
| 1548 ['--enable-accelerated-overflow-scroll'], | 1548 ['--enable-accelerated-overflow-scroll'], |
| 1549 use_legacy_naming=True), | 1549 use_legacy_naming=True), |
| 1550 VirtualTestSuite('threaded', | 1550 VirtualTestSuite('threaded', |
| 1551 'animations', | 1551 'animations', |
| 1552 ['--enable-threaded-compositing']), | 1552 ['--enable-threaded-compositing']), |
| 1553 VirtualTestSuite('threaded', | 1553 VirtualTestSuite('threaded', |
| 1554 'transitions', | 1554 'transitions', |
| 1555 ['--enable-threaded-compositing']), | 1555 ['--enable-threaded-compositing']), |
| 1556 VirtualTestSuite('legacy-animations-engine', | |
| 1557 'animations', | |
| 1558 ['--disable-web-animations-css']), | |
| 1559 VirtualTestSuite('legacy-animations-engine', | |
| 1560 'transitions', | |
| 1561 ['--disable-web-animations-css']), | |
| 1562 VirtualTestSuite('stable', | 1556 VirtualTestSuite('stable', |
| 1563 'webexposed', | 1557 'webexposed', |
| 1564 ['--stable-release-mode']), | 1558 ['--stable-release-mode']), |
| 1565 VirtualTestSuite('stable', | 1559 VirtualTestSuite('stable', |
| 1566 'media/stable', | 1560 'media/stable', |
| 1567 ['--stable-release-mode']), | 1561 ['--stable-release-mode']), |
| 1568 VirtualTestSuite('android', | 1562 VirtualTestSuite('android', |
| 1569 'fullscreen', | 1563 'fullscreen', |
| 1570 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', | 1564 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', |
| 1571 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', | 1565 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1748 if name.find('/') != -1: | 1742 if name.find('/') != -1: |
| 1749 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) | 1743 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) |
| 1750 return | 1744 return |
| 1751 self.name = 'virtual/' + name + '/' + base | 1745 self.name = 'virtual/' + name + '/' + base |
| 1752 self.base = base | 1746 self.base = base |
| 1753 self.args = args | 1747 self.args = args |
| 1754 self.tests = tests or set() | 1748 self.tests = tests or set() |
| 1755 | 1749 |
| 1756 def __repr__(self): | 1750 def __repr__(self): |
| 1757 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) | 1751 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) |
| OLD | NEW |