Possible regression between IcedTea6-1.8 and IcedTea6-1.9

Pavel Tisnovsky ptisnovs at redhat.com
Tue Aug 17 02:36:42 PDT 2010


Dr Andrew John Hughes wrote:
> On 18:27 Thu 12 Aug     , Pavel Tisnovsky wrote:
>> Hi all,
>>
>> I tried to find out why some new regression tests does not pass on the
>> IcedTea6 HEAD and - by the way - I may have found the regression between
>> IcedTea6 IcedTea6-1.8 and-1.9.
>>
>> When the following very simple test is run with option
>> -Dsun.java2d.opengl set to True and I run it inside VNC session (ie
>> without acceleration):
>>
>> import javax.swing.JPanel;
>>
>> public class Test extends JPanel {
>>     public Test() {
>>     }
>>
>>     public static void main(String[] args)
>>     {
>>         Test t = new Test();
>>         System.out.println("Test Passed.");
>>     }
>> }
>>
>> It simply wrote warning message in IcedTea6-1.8:
>>
>> /temp/icedtea6-1.8/openjdk/build/linux-amd64/j2sdk-image/bin/java
>> -Dsun.java2d.opengl=True Test
>> Could not enable OpenGL pipeline for default config on screen 0
>> Test Passed.
>>
>> but it failed in IcedTea6-1.9 (and HEAD too):
>>
>> /temp/icedtea6-1.9/openjdk.build/j2sdk-image/bin/java
>> -Dsun.java2d.opengl=True Test
>> Exception in thread "main" java.lang.UnsatisfiedLinkError:
>> sun.java2d.opengl.OGLContext.getOGLIdString()Ljava/lang/String;
>>         at sun.java2d.opengl.OGLContext.getOGLIdString(Native Method)
>>         at
>> sun.java2d.opengl.GLXGraphicsConfig$1.run(GLXGraphicsConfig.java:126)
>>         at
>> sun.java2d.opengl.OGLRenderQueue$QueueFlusher.run(OGLRenderQueue.java:220)
>> ~
>>
>>
>> Tested on RHEL5 x86_64 in VNC session, DISPLAY is set to :2.0 (it's
>> correct, of course).
>>
>> Do anyone remember that we did any changes in XRender or java2d.opengl
>> packages between 1.8 and 1.9?
>>
>> PS: at least these regression tests fail due to issue mentioned above:
>> FAILED: sun/java2d/DirectX/AcceleratedScaleTest/AcceleratedScaleTest.java
>> FAILED: sun/java2d/DirectX/AccelPaintsTest/AccelPaintsTest.java
>> FAILED:
>> sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java
>> FAILED: sun/java2d/DirectX/OverriddenInsetsTest/OverriddenInsetsTest.java
>> FAILED:
>> sun/java2d/DirectX/StrikeDisposalCrashTest/StrikeDisposalCrashTest.java
>> FAILED: sun/java2d/DirectX/TransformedPaintTest/TransformedPaintTest.java
>> FAILED: sun/java2d/OpenGL/DrawBufImgOp.java
>> FAILED: sun/java2d/OpenGL/GradientPaints.java
>> FAILED: sun/java2d/pipe/hw/RSLAPITest/RSLAPITest.java
>> FAILED: sun/java2d/pipe/MutableColorTest/MutableColorTest.java
>>
>> Cheers
>> Pavel
> 
> As discussed on the mailing list, XRender was updated to the new version:
> 
> http://icedtea.classpath.org/hg/release/icedtea6-1.9/rev/9da4f50c13c0
> 
> Part of this involved updating the pipeline code which XRender relies on
> (see the patch).  Both are 7 backports.  Have you checked whether the
> same tests fail in 7?

I think that this issue could be solved by the patch stored in
attachment [OGLContext.patch] because OGLContext.o is already included
in xawt.so (which is correct) but it does not exist JNI link to native
function OGLContext.getOGLIdString().

Is it possible to add this patch to IcedTea6 or (preferably) add its
contents to existing patch 6961633-xrender-02.patch?

But I found another issue: when I run the test against IcedTea6 with the
patch applied JRE failed due to fatal error - see attachment
[hs_err_pid32222.log]. It's quite strange for me because libGL.so
contains function glGetString(). I have to further investigate why this
call failed (I run the test in VNC session which can be one possible
source of failure).

> 
> Note: There is no 1.9 release yet.  The branch was created specifically
> so we'd find stuff like this before release :-)

-------------- next part --------------
A non-text attachment was scrubbed...
Name: OGLContext.patch
Type: text/x-patch
Size: 497 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20100817/aae45649/OGLContext.patch 
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: hs_err_pid32222.log
Url: http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20100817/aae45649/hs_err_pid32222.log 


More information about the distro-pkg-dev mailing list