-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
b45
-
x86, sparc
-
solaris_8, solaris_10
-
Verified
Name: iaR10016 Date: 03/02/2004
Filed By : J2SE-SQA [###@###.###
JDK : JDK1.5.0-b40, JDK1.5.0-b39
(not reproducible using JDK1.4.2-b28, JDK1.5.0-b32c)
Platform[s] : Solaris 8 sparc with OpenWindows, Solaris 8 x86 with OpenWindows
Awt and swing components initialization time is too long in JDK1.5.0-b40 on Solaris (sparc, x86)
with the OpenWindows window manager in contrast with previous JDK builds.
Please, compile and execute the following test example using JDK1.5.0 and JDK1.4.2 to reproduce
the failure:
--------- owtest.java ---------
import java.awt.*;
public class owtest extends Frame {
public owtest() {
super("I am a Frame!");
final Label ll1 = new Label("I am a Label!");
add(ll1);
}
public static void main(String[] args) {
Frame frame = new owtest();
frame.setSize(new Dimension(400, 100));
frame.setVisible(true);
}
}
-------------------------------
On my Solaris 8 (sparc) box tested frame appears and redraws its context after 3 seconds approximately with
JDK1.4.2 and after 15 seconds approximately with JDK1.5.0-b40.
Specific machine info:
======================
Hostname: linux-1
OS: Solaris 8 (sparc) (Open Windows)
Hostname: linux-10
OS: Solaris 8 (x86) (Open Windows)
======================================================================
- duplicates
-
JDK-5012504 REGRESSION: 2 Regression-test awt tests fail on Solaris (O/W)
- Closed
- relates to
-
JDK-5035007 REGRESSION: JCK1.5 api/javax_swing/interactive/JWindowTests.html#JWindow fails
- Closed
-
JDK-4846692 Problem displaying text of JOptionPane with Solaris 8 and OpenWindows Desktop
- Closed
-
JDK-5020204 OpenWindows: Window content showing is delayed.
- Resolved
-
JDK-5028173 REGRESSION: JCK1.5 api/java_awt/interactive/event/EventTests.html#EventTest0018
- Closed