You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Pavel Dolgov (JIRA)" <ji...@apache.org> on 2006/12/04 17:21:21 UTC

[jira] Created: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

[classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
------------------------------------------------------------------------------------------

                 Key: HARMONY-2443
                 URL: http://issues.apache.org/jira/browse/HARMONY-2443
             Project: Harmony
          Issue Type: Bug
            Reporter: Pavel Dolgov
            Priority: Minor


Test case:
-----------------
import java.awt.Graphics;
import java.awt.ScrollPane;

import junit.framework.TestCase;

public class TheTest extends TestCase {

    public static void main(String args[]) {
        junit.textui.TestRunner.run(TheTest.class);
    }

    public void testcase1() {
        ScrollPane scp = new ScrollPane();
        scp.printComponents((Graphics) null);
    }
}

RI output:
-------------------
.
Time: 0,13

OK (1 test)

Harmony output:
------------------
.E
Time: 0.581
There was 1 error:
1) testcase1(TheTest)java.lang.NullPointerException
	at java.awt.Container.paintComponentsImpl(Container.java)
	at java.awt.Container.paintComponents(Container.java:977)
	at java.awt.Container.printComponents(Container.java:968)
	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
	at TheTest.testcase1(TheTest.java:13)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:9)

FAILURES!!!
Tests run: 1,  Failures: 0,  Errors: 1



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov reassigned HARMONY-2443:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12468652 ] 

Alexei Zakharov commented on HARMONY-2443:
------------------------------------------

BTW I have added the above test case to ContainerRTest at 501422.

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-2443:
-------------------------------------

    Patch Info: [Patch Available]

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12466417 ] 

Andrey Pavlenko commented on HARMONY-2443:
------------------------------------------

Pavel, could you please mark this issues as "Patch available"?

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov closed HARMONY-2443.
------------------------------------


closed

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Krivenko updated HARMONY-2443:
-------------------------------------

    Attachment: Harmony-2443-Container.patch

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Krivenko updated HARMONY-2443:
-------------------------------------

    Attachment: Harmony-2443-ContainerTest.patch

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2443?page=comments#action_12458388 ] 
            
Andrey Pavlenko commented on HARMONY-2443:
------------------------------------------

Why it's unexpected? I think the behavior of Harmony is quite reasonable here. 

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov resolved HARMONY-2443.
--------------------------------------

    Resolution: Cannot Reproduce

I cannot reproduce the failure on the current Harmony snapshot. It seems the root cause of this issue was fixed by patches from other already applied JIRAs. Please confirm that I can close this JIRA.

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2443?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12468774 ] 

Andrey Pavlenko commented on HARMONY-2443:
------------------------------------------

Alexei, this issue is already fixed in HARMONY-2527, you can close this issue.

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Alexei Zakharov
>            Priority: Minor
>         Attachments: Harmony-2443-Container.patch, Harmony-2443-ContainerTest.patch
>
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2443) [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE

Posted by "Pavel Dolgov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2443?page=all ]

Pavel Dolgov updated HARMONY-2443:
----------------------------------

    Component/s: Classlib

> [classlib][awt] java.awt.ScrollPane.printComponents((Graphics) null) throws unexpected NPE
> ------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2443
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2443
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> -----------------
> import java.awt.Graphics;
> import java.awt.ScrollPane;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         ScrollPane scp = new ScrollPane();
>         scp.printComponents((Graphics) null);
>     }
> }
> RI output:
> -------------------
> .
> Time: 0,13
> OK (1 test)
> Harmony output:
> ------------------
> .E
> Time: 0.581
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.Container.paintComponentsImpl(Container.java)
> 	at java.awt.Container.paintComponents(Container.java:977)
> 	at java.awt.Container.printComponents(Container.java:968)
> 	at java.awt.ScrollPane.printComponents(ScrollPane.java:396)
> 	at TheTest.testcase1(TheTest.java:13)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:9)
> FAILURES!!!
> Tests run: 1,  Failures: 0,  Errors: 1

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira