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

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

Issue 267803007: Add checks for READMEs for each virtual test suite. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to r175714 Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/lint_test_expectations_unittest.py ('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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 '--force-compositing-mode']), 1727 '--force-compositing-mode']),
1728 VirtualTestSuite('targetedstylerecalc', 1728 VirtualTestSuite('targetedstylerecalc',
1729 'fast/css/invalidation', 1729 'fast/css/invalidation',
1730 ['--enable-targeted-style-recalc', 1730 ['--enable-targeted-style-recalc',
1731 '--force-compositing-mode']), 1731 '--force-compositing-mode']),
1732 VirtualTestSuite('stable', 1732 VirtualTestSuite('stable',
1733 'fast/css3-text/css3-text-decoration/stable', 1733 'fast/css3-text/css3-text-decoration/stable',
1734 ['--stable-release-mode', 1734 ['--stable-release-mode',
1735 '--force-compositing-mode']), 1735 '--force-compositing-mode']),
1736 VirtualTestSuite('stable', 1736 VirtualTestSuite('stable',
1737 'web-animations-api/eased-keyframes.html', 1737 'web-animations-api',
1738 ['--stable-release-mode', 1738 ['--stable-release-mode',
1739 '--force-compositing-mode']), 1739 '--force-compositing-mode']),
1740 VirtualTestSuite('linux-subpixel', 1740 VirtualTestSuite('linux-subpixel',
1741 'platform/linux/fast/text/subpixel', 1741 'platform/linux/fast/text/subpixel',
1742 ['--enable-webkit-text-subpixel-positioning', 1742 ['--enable-webkit-text-subpixel-positioning',
1743 '--force-compositing-mode']), 1743 '--force-compositing-mode']),
1744 VirtualTestSuite('antialiasedtext', 1744 VirtualTestSuite('antialiasedtext',
1745 'fast/text', 1745 'fast/text',
1746 ['--enable-direct-write', 1746 ['--enable-direct-write',
1747 '--enable-font-antialiasing', 1747 '--enable-font-antialiasing',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1924 1924
1925 class PhysicalTestSuite(object): 1925 class PhysicalTestSuite(object):
1926 def __init__(self, base, args): 1926 def __init__(self, base, args):
1927 self.name = base 1927 self.name = base
1928 self.base = base 1928 self.base = base
1929 self.args = args 1929 self.args = args
1930 self.tests = set() 1930 self.tests = set()
1931 1931
1932 def __repr__(self): 1932 def __repr__(self):
1933 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args) 1933 return "PhysicalTestSuite('%s', '%s', %s)" % (self.name, self.base, self .args)
OLDNEW
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/lint_test_expectations_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698