[Webkit-unassigned] [Bug 46284] New: [GTK] Replace instances of g_timeout_add() with g_idle_add() in testatk.c

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 22 11:50:18 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=46284

           Summary: [GTK] Replace instances of g_timeout_add() with
                    g_idle_add() in testatk.c
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: msanchez at igalia.com
                CC: xan.lopez at gmail.com, mrobinson at webkit.org


Inside WebKit/gtk/tests/testatk.c, there are still some places where the following kind of lines

   g_timeout_add(100, (GSourceFunc)bail_out, loop);

...should be replaced by a call to g_idle_add:

   g_idle_add((GSourceFunc)bail_out, loop);

This is a trivial-yet-needed bug that needs obvious fixing (and further care when adding new tests <- note to myself :-/)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list