| 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 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1531 use_legacy_naming=True), | 1531 use_legacy_naming=True), |
| 1532 VirtualTestSuite('threaded', | 1532 VirtualTestSuite('threaded', |
| 1533 'animations', | 1533 'animations', |
| 1534 ['--enable-threaded-compositing']), | 1534 ['--enable-threaded-compositing']), |
| 1535 VirtualTestSuite('threaded', | 1535 VirtualTestSuite('threaded', |
| 1536 'transitions', | 1536 'transitions', |
| 1537 ['--enable-threaded-compositing']), | 1537 ['--enable-threaded-compositing']), |
| 1538 VirtualTestSuite('web-animations-css', | 1538 VirtualTestSuite('web-animations-css', |
| 1539 'animations', | 1539 'animations', |
| 1540 ['--enable-web-animations-css']), | 1540 ['--enable-web-animations-css']), |
| 1541 VirtualTestSuite('web-animations-css', |
| 1542 'transitions', |
| 1543 ['--enable-web-animations-css']), |
| 1541 VirtualTestSuite('stable', | 1544 VirtualTestSuite('stable', |
| 1542 'webexposed', | 1545 'webexposed', |
| 1543 ['--stable-release-mode']), | 1546 ['--stable-release-mode']), |
| 1544 VirtualTestSuite('stable', | 1547 VirtualTestSuite('stable', |
| 1545 'media/stable', | 1548 'media/stable', |
| 1546 ['--stable-release-mode']), | 1549 ['--stable-release-mode']), |
| 1547 VirtualTestSuite('android', | 1550 VirtualTestSuite('android', |
| 1548 'fullscreen', | 1551 'fullscreen', |
| 1549 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', | 1552 ['--force-compositing-mode', '--allow-webui-composi
ting', '--enable-threaded-compositing', |
| 1550 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', | 1553 '--enable-fixed-position-compositing', '--enable-a
ccelerated-overflow-scroll', '--enable-accelerated-scrollable-frames', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1718 if name.find('/') != -1: | 1721 if name.find('/') != -1: |
| 1719 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) | 1722 _log.error("Virtual test suites names cannot contain /'s: %s" %
name) |
| 1720 return | 1723 return |
| 1721 self.name = 'virtual/' + name + '/' + base | 1724 self.name = 'virtual/' + name + '/' + base |
| 1722 self.base = base | 1725 self.base = base |
| 1723 self.args = args | 1726 self.args = args |
| 1724 self.tests = tests or set() | 1727 self.tests = tests or set() |
| 1725 | 1728 |
| 1726 def __repr__(self): | 1729 def __repr__(self): |
| 1727 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) | 1730 return "VirtualTestSuite('%s', '%s', %s)" % (self.name, self.base, self.
args) |
| OLD | NEW |