Bug 133516
Summary: | [GTK] TestWebKitAPI/Tests/WebKit2Gtk/TestPrinting time outs when some of the GTK Print backends are not built. | ||
---|---|---|---|
Product: | WebKit | Reporter: | Carlos Alberto Lopez Perez <clopez> |
Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | bugs-noreply, cgarcia, gustavo, mrobinson |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Carlos Alberto Lopez Perez
On the 32-bits GTK Release bot, the API test TestWebKitAPI/WebKit2Gtk/TestPrinting times out
Log: http://build.webkit.org/builders/GTK%20Linux%2032-bit%20Release/builds/44458/steps/API%20tests/logs/stdio
Possible cause: unknown.
I don't have at hand a 32-bit machine now to test it.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Carlos Alberto Lopez Perez
I've debugging this issue. The failure is not 32-bit specific.
The issue happens (on any architecture) when GTK+ was built without enabling the CUPS backend (gtk-3.6) or the cloudprint backend (gtk-3.12).
The 32-bit build bot is building GTK+ like this:
GTK+ 3.6.0
===========
GDK backends: x11
X11 extensions: XKB Xinerama XI2.2 XRANDR XFIXES Composite DAMAGE
Print backends: file lpr
[...] http://build.webkit.org/builders/GTK%20Linux%2032-bit%20Release/builds/46618/steps/jhbuild/logs/stdio
The 64-bit build bot is however building the CUPS backend:
GTK+ 3.6.0
===========
GDK backends: x11
X11 extensions: XKB Xinerama XI2.2 XRANDR XFIXES Composite DAMAGE
Print backends: file lpr cups
[...] http://build.webkit.org/builders/GTK%20Linux%2064-bit%20Release%20%28Tests%29/builds/2471/steps/jhbuild/logs/stdio
The test timeouts on the first case (cups is not built).
I tried to build manually gtk+ with "--disable-cups" and I can reproduce the issue. I can also reproduce it by temporally moving the cups module file (WebKitBuild/Dependencies/Root/lib64/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.so) to a temporally directory, so GTK+ can't load it.
In the test, the timeout seems to be in the callback to printFinishedCallback: is not triggered.
I tried with gtk-3.12 and the same thing happens, but instead of happening with the cups backend, now happens with the cloudprint one.
I'm not sure about what is happening, but at first sight it seems a bug in GTK+
Carlos Alberto Lopez Perez
This fixed the test on my tries:
$ apt-get install libcups2-dev cups-daemon
$ Tools/jhbuild/jhbuild-wrapper --gtk buildone --force gtk+
For some reason (at least on Debian), cups-daemon is required, otherwise the test still time outs.
Carlos Alberto Lopez Perez
(In reply to comment #2)
> This fixed the test on my tries:
>
> $ apt-get install libcups2-dev cups-daemon
kov installed this on the 32-bit buildbot. Now the test passes. The bot is green :)
Carlos Alberto Lopez Perez
(In reply to comment #3)
> (In reply to comment #2)
> > This fixed the test on my tries:
> >
> > $ apt-get install libcups2-dev cups-daemon
>
> kov installed this on the 32-bit buildbot. Now the test passes. The bot is green :)
It also fixed it on the ARM buildbot.