WebKit Bugzilla
Attachment 359924 Details for
Bug 193734
: webkitpy: Wait longer when launching WebKitTestRunner
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-193734-20190123124933.patch (text/plain), 1.75 KB, created by
Jonathan Bedard
on 2019-01-23 12:49:33 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2019-01-23 12:49:33 PST
Size:
1.75 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 240352) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,13 @@ >+2019-01-23 Jonathan Bedard <jbedard@apple.com> >+ >+ webkitpy: Wait longer when launching WebKitTestRunner >+ https://bugs.webkit.org/show_bug.cgi?id=193734 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/webkitpy/port/simulator_process.py: >+ (SimulatorProcess._start): Increase timeout from 6 seconds to 15 seconds. >+ > 2019-01-23 Wenson Hsieh <wenson_hsieh@apple.com> > > [iOS] fast/events/touch/ios/hover-when-style-change-is-async.html times out >Index: Tools/Scripts/webkitpy/port/simulator_process.py >=================================================================== >--- Tools/Scripts/webkitpy/port/simulator_process.py (revision 240351) >+++ Tools/Scripts/webkitpy/port/simulator_process.py (working copy) >@@ -1,4 +1,4 @@ >-# Copyright (C) 2017 Apple Inc. All rights reserved. >+# Copyright (C) 2017-2019 Apple Inc. All rights reserved. > # > # Redistribution and use in source and binary forms, with or without > # modification, are permitted provided that the following conditions >@@ -95,7 +95,7 @@ class SimulatorProcess(ServerProcess): > self._target_host.listening_socket.listen(3) > self._pid = self._target_host.launch_app(self._bundle_id, self._cmd[1:], env=self._env) > >- with Timeout(6, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))): >+ with Timeout(15, RuntimeError('Timed out waiting for pid {} to connect at port {}'.format(self._pid, self._target_host.listening_port()))): > stdin = None > stdout = None > stderr = None
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193734
: 359924