| 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 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1518 ['--enable-accelerated-2d-canvas']), | 1518 ['--enable-accelerated-2d-canvas']), |
| 1519 VirtualTestSuite('gpu', | 1519 VirtualTestSuite('gpu', |
| 1520 'canvas/philip', | 1520 'canvas/philip', |
| 1521 ['--enable-accelerated-2d-canvas']), | 1521 ['--enable-accelerated-2d-canvas']), |
| 1522 VirtualTestSuite('threaded', | 1522 VirtualTestSuite('threaded', |
| 1523 'compositing/visibility', | 1523 'compositing/visibility', |
| 1524 ['--enable-threaded-compositing']), | 1524 ['--enable-threaded-compositing']), |
| 1525 VirtualTestSuite('threaded', | 1525 VirtualTestSuite('threaded', |
| 1526 'compositing/webgl', | 1526 'compositing/webgl', |
| 1527 ['--enable-threaded-compositing']), | 1527 ['--enable-threaded-compositing']), |
| 1528 VirtualTestSuite('softwarecompositing', | |
| 1529 'compositing', | |
| 1530 ['--disable-gpu', | |
| 1531 '--disable-gpu-compositing'], | |
| 1532 use_legacy_naming=True), | |
| 1533 VirtualTestSuite('deferred', | 1528 VirtualTestSuite('deferred', |
| 1534 'fast/images', | 1529 'fast/images', |
| 1535 ['--enable-deferred-image-decoding', | 1530 ['--enable-deferred-image-decoding', |
| 1536 '--enable-per-tile-painting']), | 1531 '--enable-per-tile-painting']), |
| 1537 VirtualTestSuite('deferred', | 1532 VirtualTestSuite('deferred', |
| 1538 'inspector/timeline', | 1533 'inspector/timeline', |
| 1539 ['--enable-deferred-image-decoding', | 1534 ['--enable-deferred-image-decoding', |
| 1540 '--enable-per-tile-painting']), | 1535 '--enable-per-tile-painting']), |
| 1541 VirtualTestSuite('gpu/compositedscrolling/overflow', | 1536 VirtualTestSuite('gpu/compositedscrolling/overflow', |
| 1542 'compositing/overflow', | 1537 'compositing/overflow', |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1771 | 1766 |
| 1772 class PhysicalTestSuite(object): | 1767 class PhysicalTestSuite(object): |
| 1773 def __init__(self, base, args): | 1768 def __init__(self, base, args): |
| 1774 self.name = base | 1769 self.name = base |
| 1775 self.base = base | 1770 self.base = base |
| 1776 self.args = args | 1771 self.args = args |
| 1777 self.tests = set() | 1772 self.tests = set() |
| 1778 | 1773 |
| 1779 def __repr__(self): | 1774 def __repr__(self): |
| 1780 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1775 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
| OLD | NEW |