RESOLVED FIXED 138831
[GTK] Use GMainLoopSource in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=138831
Summary [GTK] Use GMainLoopSource in WebKitTestRunner
Carlos Garcia Campos
Reported 2014-11-18 04:19:48 PST
Instead of g_timeout_add().
Attachments
Patch (4.62 KB, patch)
2014-11-18 04:21 PST, Carlos Garcia Campos
svillar: review+
svillar: commit-queue-
Carlos Garcia Campos
Comment 1 2014-11-18 04:21:54 PST
Sergio Villar Senin
Comment 2 2014-11-28 00:38:54 PST
Comment on attachment 241782 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=241782&action=review > Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp:70 > + }, std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::duration<double>(timeout))); I think you forgot to remove the timeoutCallback static function now that you have the lambda.
Carlos Garcia Campos
Comment 3 2014-11-28 08:37:56 PST
(In reply to comment #2) > Comment on attachment 241782 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=241782&action=review > > > Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp:70 > > + }, std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::duration<double>(timeout))); > > I think you forgot to remove the timeoutCallback static function now that > you have the lambda. Right!
Carlos Garcia Campos
Comment 4 2014-11-28 08:39:28 PST
Carlos Alberto Lopez Perez
Comment 5 2014-12-01 05:33:19 PST
(In reply to comment #4) > Committed r176566: <http://trac.webkit.org/changeset/176566> This broke the performance bot. Reported here: https://bugs.webkit.org/show_bug.cgi?id=139122
WebKit Commit Bot
Comment 6 2014-12-01 06:33:40 PST
Re-opened since this is blocked by bug 139124
Carlos Alberto Lopez Perez
Comment 7 2014-12-01 06:51:37 PST
I reverted r176566 on r176591 <https://trac.webkit.org/r176591> after talking with Carlos Garcia.
Carlos Garcia Campos
Comment 8 2014-12-07 06:06:19 PST
(In reply to comment #7) > I reverted r176566 on r176591 <https://trac.webkit.org/r176591> after > talking with Carlos Garcia. Ok, I forgot to handle the case of no-timeout :-P. I'll land a right version.
Carlos Garcia Campos
Comment 9 2014-12-07 06:07:43 PST
Alexey Proskuryakov
Comment 10 2014-12-15 12:55:10 PST
Comment on attachment 241782 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=241782&action=review > Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp:52 > + m_waitToDumpWatchdogTimer.scheduleAfterDelay("[WTR] waitToDumpWatchdogTimerCallback", [this] { waitToDumpWatchdogTimerFired(); }, > + std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::duration<double>(waitToDumpWatchdogTimerInterval))); waitToDumpWatchdogTimerInterval is 30, for 30 seconds. Is the cast to microseconds the right one here? > Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp:71 > gtk_main(); Ditto, why microseconds?
Carlos Garcia Campos
Comment 11 2014-12-16 01:48:21 PST
(In reply to comment #10) > Comment on attachment 241782 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=241782&action=review > > > Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp:52 > > + m_waitToDumpWatchdogTimer.scheduleAfterDelay("[WTR] waitToDumpWatchdogTimerCallback", [this] { waitToDumpWatchdogTimerFired(); }, > > + std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::duration<double>(waitToDumpWatchdogTimerInterval))); > > waitToDumpWatchdogTimerInterval is 30, for 30 seconds. Is the cast to > microseconds the right one here? Yes, the scheduleAfterDelay() version that receives the delay in microseconds creates a glib source using microseconds. For this particular case we could use milliseconds, but we moved all sources using a double value to microseconds to avoid truncations (we had cases in which timers were scheduled immediately because the conversion to milliseconds was 0, see bug #137782). > > Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp:71 > > gtk_main(); > > Ditto, why microseconds?
Note You need to log in before you can comment on or make changes to this bug.