JDK-6624204 : Regression test fails: test/closed/javax/swing/JPopupMenu/4966112/bug4966112.java
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 7
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: linux
  • CPU: generic
  • Submitted: 2007-10-31
  • Updated: 2015-03-04
  • Resolved: 2011-05-18
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7
6u10Fixed 7 b38Fixed
Related Reports
Relates :  
Relates :  
Description
Regression test fails: test/closed/javax/swing/JPopupMenu/4966112/bug4966112.java

JDK: 7 b22
Tested OSes: 
- Solaris nevada b70: test fails
- Linux i686: test fails
- Windows XP: test passes

Stack trace:
java.lang.RuntimeException: 
Popup was not shown on spinner
Popup was not shown on filechooser
	at bug4966112.main(bug4966112.java:167)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:623)
	at com.sun.javatest.regtest.MainWrapper$MainThread.run(MainWrapper.java:78)
	at java.lang.Thread.run(Thread.java:659) 

The test logs in the attachment.

Comments
SUGGESTED FIX The approved webrev revision was copied to NFS: /net/sa.sfbay/export/home/swing/data/7/6624204.0 URL: http://sa.sfbay.sun.com/projects/swing_data/7/6624204.0
05-08-2008

EVALUATION The problem is in the test. The same popup menu is used for all appearing frames. JRobot tries to open the menu in every frame by mouse click. However, the menu is never hidden explicitly. It causes the menu be appeared only at odd mouse clicks. The problem can be solved by adding JPopupMenu.setVisible(false) before every frame disposing.
29-12-2007