| 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 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1519 pass | 1519 pass |
| 1520 | 1520 |
| 1521 def sample_process(self, name, pid): | 1521 def sample_process(self, name, pid): |
| 1522 pass | 1522 pass |
| 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', |
| 1530 ['--force-compositing-mode']), |
| 1529 PhysicalTestSuite('css', | 1531 PhysicalTestSuite('css', |
| 1530 ['--force-compositing-mode']), | 1532 ['--force-compositing-mode']), |
| 1531 PhysicalTestSuite('fast', | 1533 PhysicalTestSuite('fast', |
| 1532 ['--force-compositing-mode']), | 1534 ['--force-compositing-mode']), |
| 1533 ] | 1535 ] |
| 1534 | 1536 |
| 1535 def virtual_test_suites(self): | 1537 def virtual_test_suites(self): |
| 1536 return [ | 1538 return [ |
| 1537 VirtualTestSuite('gpu', | 1539 VirtualTestSuite('gpu', |
| 1538 'fast/canvas', | 1540 'fast/canvas', |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1796 | 1798 |
| 1797 class PhysicalTestSuite(object): | 1799 class PhysicalTestSuite(object): |
| 1798 def __init__(self, base, args): | 1800 def __init__(self, base, args): |
| 1799 self.name = base | 1801 self.name = base |
| 1800 self.base = base | 1802 self.base = base |
| 1801 self.args = args | 1803 self.args = args |
| 1802 self.tests = set() | 1804 self.tests = set() |
| 1803 | 1805 |
| 1804 def __repr__(self): | 1806 def __repr__(self): |
| 1805 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) | 1807 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self
.args) |
| OLD | NEW |