JDK-4403762 : Application behavior is different in Merlin and Kestrel
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 1.3.1
  • Priority: P2
  • Status: Closed
  • Resolution: Duplicate
  • OS: solaris_2
  • CPU: x86
  • Submitted: 2001-01-11
  • Updated: 2001-01-30
  • Resolved: 2001-01-30
Related Reports
Duplicate :  
Description
Command prompt doesn't return when I launch the application in Windows with JDK1.3.1 but it is working fine with Merlin( B46)

---------FrameTest.java
import java.awt.*;

public class FrameTest {

    Frame testframe;

    FrameTest(){
        testframe   = new Frame("Title");
        System.out.println(" End of the statment in the constructor");
    } 

    public static void main(String argv[]){
       new FrameTest();
       System.out.println("End of the statment in Main()");
    }

} 
---------------------
mohamed.sulthan@Eng 2001-01-24

We are unable to test our  javac test suite in Ladybird

Comments
EVALUATION This behavior (of not exiting) also occurs on 1.3.0. This is a well known problem in kestrel. The correct behavior is to exit (on all platforms). This similar issue is fixed in Merlin - see bug 4030718 richard.ray@eng 2001-01-18
18-01-2001