Searched refs:test_port (Results 1 – 16 of 16) sorted by relevance
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
D | test_expectations_unittest.py | 531 test_port = host.port_factory.get('test-win-xp', None) 532 test_port.test_exists = lambda test: True 533 test_port.test_isfile = lambda test: True 535 test_config = test_port.test_configuration() 536 …test_port.expectations_dict = lambda: {"expectations": """Bug(x) [ Linux Win Release ] failures/ex… 539 expectations = TestExpectations(test_port, self.get_basic_tests()) 549 test_port = host.port_factory.get('test-win-xp', None) 550 test_port.test_exists = lambda test: True 551 test_port.test_isfile = lambda test: True 553 test_config = test_port.test_configuration() [all …]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/ |
D | crash_service_unittest.py | 46 test_port = test.TestPort(host) 47 test_port._path_to_crash_service = lambda: "/mock/crash_service" 49 server = CrashService(test_port, "/mock/crash_dumps_dir") 54 test_port = test.TestPort(host) 55 test_port._path_to_crash_service = lambda: "/mock/crash_service" 60 server = CrashService(test_port, "/mock/crash_dumps_dir")
|
D | lighttpd_unittest.py | 46 test_port = test.TestPort(host) 52 server = Lighttpd(test_port, "/mock/output_dir") 63 test_port = test.TestPort(host) 72 server = Lighttpd(test_port, "/mock/output_dir")
|
D | server_base_unittest.py | 41 test_port = test.TestPort(host) 43 server = ServerBase(test_port, test_port.default_results_directory())
|
D | apache_http_unittest.py | 53 test_port = test.TestPort(host) 54 host.filesystem.write_text_file(test_port.path_to_apache_config_file(), '') 56 server = ApacheHTTP(test_port, "/mock/output_dir", additional_dirs=[], number_of_servers=4)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
D | rebaseline_unittest.py | 603 test_port = self.tool.port_factory.get('test') 608 return test_port 614 return test_port 708 test_port = self._setup_test_port() 730 self.tool.filesystem.write_text_file(test_port.path_to_generic_test_expectations_file(), """ 734 self._write_test_file(test_port, 'fast/dom/prototype-taco.html', "Dummy test contents") 749 …self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_f… 779 test_port = self.tool.port_factory.get('test') 780 self._write_test_file(test_port, 'another/test.html', "Dummy test contents") 781 … self._write_test_file(test_port, 'platform/mac-snowleopard/another/test-expected.txt', "result A") [all …]
|
D | rebaselineserver.py | 41 …def __init__(self, test_port, layout_tests_directory, results_directory, platforms, filesystem, sc… argument 42 self.test_port = test_port
|
D | queries_unittest.py | 111 self.test_port = self.tool.port_factory.get('test-win-xp') 112 self.tool.port_factory.get = lambda port_name=None: self.test_port
|
/external/netperf/ |
D | netperf.c | 131 printf("remotehost is %s and port %s\n",host_name,test_port); in main() 137 establish_control(host_name,test_port,address_family, in main()
|
D | netsh.c | 125 char test_port[PORTBUFSIZE]; /* where is the test waiting */ variable 394 strncpy(test_port,"12865",PORTBUFSIZE); /* where is the test waiting */ in set_defaults() 711 strncpy(test_port,arg1,PORTBUFSIZE); in scan_cmd_line() 994 printf("Port: %s\n",test_port); in dump_globals()
|
D | netsh.h | 42 extern char test_port[PORTBUFSIZE]; /* where is the test waiting */
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
D | test_endtoend.py | 172 (_, self.test_port) = s.getsockname() 186 self._options.server_port = self.test_port 196 '-p', str(self.test_port), 197 '-P', str(self.test_port),
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
D | perftestsrunner_unittest.py | 46 test_port = TestPort(host=MockHost(), options=options) 47 runner = PerfTestsRunner(args=args, port=test_port) 51 return runner, test_port
|
D | perftestsrunner_integrationtest.py | 205 test_port = TestPort(host=MockHost(), options=options) 206 test_port.create_driver = lambda worker_number=None, no_timeout=False: driver_class() 208 runner = PerfTestsRunner(args=args, port=test_port) 213 return runner, test_port
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | json_results_generator_unittest.py | 216 test_port = test.TestPort(MockHost()) 220 trie = json_results_generator.test_timings_trie(test_port, individual_test_timings)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
D | rebaselineserver.py | 187 test_baselines = test_config.test_port.expected_baselines(test_file, baseline_extension)
|