Patch for regression test OnScreenRenderingResizeTest

Pavel Tisnovsky ptisnovs at redhat.com
Mon Sep 20 07:33:37 PDT 2010


Dr Andrew John Hughes wrote:
> On 17:18 Fri 17 Sep     , Pavel Tisnovsky wrote:
>> Hi,
>>
>> is it possible to add patch [1] for regression test
>> OnScreenRenderingResizeTest.java to IcedTea6 HEAD?
>>
>> Changed test is already pushed to OpenJDK7 (bug ID#6984543) and I hope
>> it will be possible to backport it to OpenJDK6 too.
>>
> 
> I don't see this patch in the jdk7/jdk7/jdk repository.  Can you provide a link to the changeset?

http://hg.openjdk.java.net/jdk7/tl/jdk/rev/441e86ab3233

> 
> The backported patch should be an export of the commit i.e. with the bug ID and committer headers
> and named patches/openjdk/6984543-onscreen_rendering_resize_test.patch.
> 
>> Pavel
> 
>> --- openjdk/jdk/test/sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest-old.java	2010-09-17 14:01:17.000000000 +0200
>> +++ openjdk/jdk/test/sun/java2d/DirectX/OnScreenRenderingResizeTest/OnScreenRenderingResizeTest.java	2010-09-17 13:20:00.000000000 +0200
>> @@ -157,7 +157,7 @@
>>              if (cnt == 90 && robot != null) {
>>                  // area where we blitted to should be either white or green
>>                  Point p = frame.getLocationOnScreen();
>> -                p.move(in.left+10, in.top+10);
>> +                p.translate(in.left+10, in.top+10);
>>                  BufferedImage bi =
>>                      robot.createScreenCapture(
>>                          new Rectangle(p.x, p.y, IMAGE_W/2, IMAGE_H/2));
>> @@ -166,7 +166,7 @@
>>  
>>                  // the are where we didn't render should stay white
>>                  p = frame.getLocationOnScreen();
>> -                p.move(in.left, in.top+IMAGE_H+5);
>> +                p.translate(in.left, in.top+IMAGE_H+5);
>>                  bi = robot.createScreenCapture(
>>                      new Rectangle(p.x, p.y,
>>                                    frame.getWidth()-in.left-in.right,
> 
> 




More information about the distro-pkg-dev mailing list