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 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1523 | 1523 |
1524 def physical_test_suites(self): | 1524 def physical_test_suites(self): |
1525 return [ | 1525 return [ |
1526 # For example, to turn on force-compositing-mode in the svg/ directo
ry: | 1526 # For example, to turn on force-compositing-mode in the svg/ directo
ry: |
1527 # PhysicalTestSuite('svg', | 1527 # PhysicalTestSuite('svg', |
1528 # ['--force-compositing-mode']), | 1528 # ['--force-compositing-mode']), |
1529 PhysicalTestSuite('compositing', | 1529 PhysicalTestSuite('compositing', |
1530 ['--force-compositing-mode']), | 1530 ['--force-compositing-mode']), |
1531 PhysicalTestSuite('css', | 1531 PhysicalTestSuite('css', |
1532 ['--force-compositing-mode']), | 1532 ['--force-compositing-mode']), |
| 1533 PhysicalTestSuite('editing', |
| 1534 ['--force-compositing-mode']), |
1533 PhysicalTestSuite('fast', | 1535 PhysicalTestSuite('fast', |
1534 ['--force-compositing-mode']), | 1536 ['--force-compositing-mode']), |
1535 ] | 1537 ] |
1536 | 1538 |
1537 def virtual_test_suites(self): | 1539 def virtual_test_suites(self): |
1538 return [ | 1540 return [ |
1539 VirtualTestSuite('gpu', | 1541 VirtualTestSuite('gpu', |
1540 'fast/canvas', | 1542 'fast/canvas', |
1541 ['--enable-accelerated-2d-canvas']), | 1543 ['--enable-accelerated-2d-canvas']), |
1542 VirtualTestSuite('gpu', | 1544 VirtualTestSuite('gpu', |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1798 | 1800 |
1799 class PhysicalTestSuite(object): | 1801 class PhysicalTestSuite(object): |
1800 def __init__(self, base, args): | 1802 def __init__(self, base, args): |
1801 self.name = base | 1803 self.name = base |
1802 self.base = base | 1804 self.base = base |
1803 self.args = args | 1805 self.args = args |
1804 self.tests = set() | 1806 self.tests = set() |
1805 | 1807 |
1806 def __repr__(self): | 1808 def __repr__(self): |
1807 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1809 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
OLD | NEW |