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