Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 343963002: [New Multicolumn] Create a virtual testsuite for the region based multicol impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: ImageOnlyFailure Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « LayoutTests/virtual/regionbasedmulticol/fast/multicol/README.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after
1601 VirtualTestSuite('linux-subpixel', 1601 VirtualTestSuite('linux-subpixel',
1602 'platform/linux/fast/text/subpixel', 1602 'platform/linux/fast/text/subpixel',
1603 ['--enable-webkit-text-subpixel-positioning']), 1603 ['--enable-webkit-text-subpixel-positioning']),
1604 VirtualTestSuite('antialiasedtext', 1604 VirtualTestSuite('antialiasedtext',
1605 'fast/text', 1605 'fast/text',
1606 ['--enable-direct-write', 1606 ['--enable-direct-write',
1607 '--enable-font-antialiasing']), 1607 '--enable-font-antialiasing']),
1608 VirtualTestSuite('threaded', 1608 VirtualTestSuite('threaded',
1609 'printing', 1609 'printing',
1610 ['--enable-threaded-compositing']), 1610 ['--enable-threaded-compositing']),
1611 VirtualTestSuite('regionbasedmulticol',
1612 'fast/multicol',
1613 ['--enable-region-based-columns']),
1611 ] 1614 ]
1612 1615
1613 @memoized 1616 @memoized
1614 def populated_virtual_test_suites(self): 1617 def populated_virtual_test_suites(self):
1615 suites = self.virtual_test_suites() 1618 suites = self.virtual_test_suites()
1616 1619
1617 # Sanity-check the suites to make sure they don't point to other suites. 1620 # Sanity-check the suites to make sure they don't point to other suites.
1618 suite_dirs = [suite.name for suite in suites] 1621 suite_dirs = [suite.name for suite in suites]
1619 for suite in suites: 1622 for suite in suites:
1620 assert suite.base not in suite_dirs 1623 assert suite.base not in suite_dirs
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 1788
1786 class PhysicalTestSuite(object): 1789 class PhysicalTestSuite(object):
1787 def __init__(self, base, args): 1790 def __init__(self, base, args):
1788 self.name = base 1791 self.name = base
1789 self.base = base 1792 self.base = base
1790 self.args = args 1793 self.args = args
1791 self.tests = set() 1794 self.tests = set()
1792 1795
1793 def __repr__(self): 1796 def __repr__(self):
1794 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1797 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « LayoutTests/virtual/regionbasedmulticol/fast/multicol/README.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698