| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # Needed for Python < 2.7 | 47 # Needed for Python < 2.7 |
| 48 from webkitpy.thirdparty.ordered_dict import OrderedDict | 48 from webkitpy.thirdparty.ordered_dict import OrderedDict |
| 49 | 49 |
| 50 | 50 |
| 51 from webkitpy.common import find_files | 51 from webkitpy.common import find_files |
| 52 from webkitpy.common import read_checksum_from_png | 52 from webkitpy.common import read_checksum_from_png |
| 53 from webkitpy.common.memoized import memoized | 53 from webkitpy.common.memoized import memoized |
| 54 from webkitpy.common.system import path | 54 from webkitpy.common.system import path |
| 55 from webkitpy.common.system.executive import ScriptError | 55 from webkitpy.common.system.executive import ScriptError |
| 56 from webkitpy.common.system.path import cygpath | 56 from webkitpy.common.system.path import cygpath |
| 57 from webkitpy.common.system.systemhost import SystemHost | |
| 58 from webkitpy.common.webkit_finder import WebKitFinder | 57 from webkitpy.common.webkit_finder import WebKitFinder |
| 59 from webkitpy.layout_tests.layout_package.bot_test_expectations import BotTestEx
pectationsFactory | 58 from webkitpy.layout_tests.layout_package.bot_test_expectations import BotTestEx
pectationsFactory |
| 60 from webkitpy.layout_tests.models import test_run_results | 59 from webkitpy.layout_tests.models import test_run_results |
| 61 from webkitpy.layout_tests.models.test_configuration import TestConfiguration | 60 from webkitpy.layout_tests.models.test_configuration import TestConfiguration |
| 62 from webkitpy.layout_tests.port import config as port_config | 61 from webkitpy.layout_tests.port import config as port_config |
| 63 from webkitpy.layout_tests.port import driver | 62 from webkitpy.layout_tests.port import driver |
| 64 from webkitpy.layout_tests.port import server_process | 63 from webkitpy.layout_tests.port import server_process |
| 65 from webkitpy.layout_tests.port.factory import PortFactory | 64 from webkitpy.layout_tests.port.factory import PortFactory |
| 66 from webkitpy.layout_tests.servers import apache_http | 65 from webkitpy.layout_tests.servers import apache_http |
| 67 from webkitpy.layout_tests.servers import pywebsocket | 66 from webkitpy.layout_tests.servers import pywebsocket |
| (...skipping 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1782 | 1781 |
| 1783 def __init__(self, base, args, reference_args=None): | 1782 def __init__(self, base, args, reference_args=None): |
| 1784 self.name = base | 1783 self.name = base |
| 1785 self.base = base | 1784 self.base = base |
| 1786 self.args = args | 1785 self.args = args |
| 1787 self.reference_args = args if reference_args is None else reference_args | 1786 self.reference_args = args if reference_args is None else reference_args |
| 1788 self.tests = set() | 1787 self.tests = set() |
| 1789 | 1788 |
| 1790 def __repr__(self): | 1789 def __repr__(self): |
| 1791 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) | 1790 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base,
self.args, self.reference_args) |
| OLD | NEW |