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:27:21 UTC

[jira] Created: (HARMONY-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

[classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
---------------------------------------------------------------------------------------

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


Test case:
------------------
import java.awt.DisplayMode;

import junit.framework.TestCase;

public class TheTest extends TestCase {

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

    public void testcase1() {
        DisplayMode dm = new DisplayMode(1,2,3,10);
        assertFalse(dm.equals((DisplayMode) null));             
    }
}

RI Output:
---------------
.
Time: 0,111

OK (1 test)

Harmony output:
---------------
.E
Time: 0.01
There was 1 error:
1) testcase1(TheTest)java.lang.NullPointerException
	at java.awt.DisplayMode.equals(DisplayMode.java)
	at TheTest.testcase1(TheTest.java:12)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:8)

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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Mark Hindess reassigned HARMONY-2444:
-------------------------------------

    Assignee: Mark Hindess

> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Andrey Pavlenko commented on HARMONY-2444:
------------------------------------------

Mark, the patches have been applied properly. Thanks.

> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Alexei Zakharov updated HARMONY-2444:
-------------------------------------

    Patch Info: [Patch Available]

> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Mark Hindess closed HARMONY-2444.
---------------------------------


Verified.  Thanks.

> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Andrey Pavlenko updated HARMONY-2444:
-------------------------------------

    Attachment: DisplayMode.patch
                DisplayModeTest.patch

The patch and the regression test are attached.

> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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-2444) [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false

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

Mark Hindess resolved HARMONY-2444.
-----------------------------------

    Resolution: Fixed

Thanks for the patches.  Applied in r495671.  Please check that they have been applied as expected.


> [classlib][awt] java.awt.DisplayMode.equals(null) throws NPE instead of returning false
> ---------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2444
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2444
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: DisplayMode.patch, DisplayModeTest.patch
>
>
> Test case:
> ------------------
> import java.awt.DisplayMode;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DisplayMode dm = new DisplayMode(1,2,3,10);
>         assertFalse(dm.equals((DisplayMode) null));             
>     }
> }
> RI Output:
> ---------------
> .
> Time: 0,111
> OK (1 test)
> Harmony output:
> ---------------
> .E
> Time: 0.01
> There was 1 error:
> 1) testcase1(TheTest)java.lang.NullPointerException
> 	at java.awt.DisplayMode.equals(DisplayMode.java)
> 	at TheTest.testcase1(TheTest.java:12)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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