| Index: Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/test.py b/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| index 97f7404042cf39f4eb7526b89fc096b79cec93d0..6481e30909d12cce155d5606b89751a64871ebf9 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| @@ -490,7 +490,7 @@ class TestPort(Port):
|
| def _driver_class(self):
|
| return TestDriver
|
|
|
| - def start_http_server(self, additional_dirs=None, number_of_servers=None):
|
| + def start_http_server(self, number_of_drivers):
|
| pass
|
|
|
| def start_websocket_server(self):
|
| @@ -508,19 +508,19 @@ class TestPort(Port):
|
| def release_http_lock(self):
|
| pass
|
|
|
| - def _path_to_lighttpd(self):
|
| + def path_to_lighttpd(self):
|
| return "/usr/sbin/lighttpd"
|
|
|
| - def _path_to_lighttpd_modules(self):
|
| + def path_to_lighttpd_modules(self):
|
| return "/usr/lib/lighttpd"
|
|
|
| - def _path_to_lighttpd_php(self):
|
| + def path_to_lighttpd_php(self):
|
| return "/usr/bin/php-cgi"
|
|
|
| - def _path_to_apache(self):
|
| + def path_to_apache(self):
|
| return "/usr/sbin/httpd"
|
|
|
| - def _path_to_apache_config_file(self):
|
| + def path_to_apache_config_file(self):
|
| return self._filesystem.join(self.layout_tests_dir(), 'http', 'conf', 'httpd.conf')
|
|
|
| def path_to_generic_test_expectations_file(self):
|
|
|