This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 30427 - Tests sometimes fails with message: Wait PropertySheetTab "Properties".
Summary: Tests sometimes fails with message: Wait PropertySheetTab "Properties".
Status: CLOSED FIXED
Alias: None
Product: qa
Classification: Unclassified
Component: Jellytools (show other bugs)
Version: 3.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: issues@qa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-28 14:10 UTC by Jan Becicka
Modified: 2003-02-27 13:45 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Stack trace (4.48 KB, text/plain)
2003-01-28 14:10 UTC, Jan Becicka
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Becicka 2003-01-28 14:10:12 UTC
200301220100, qa-linux
gui.ChangingOfBeanPropertyProperties.testChangeMode

in CVS, module beans/test
Comment 1 Jan Becicka 2003-01-28 14:10:49 UTC
Created attachment 8697 [details]
Stack trace
Comment 2 Jiri Skrivanek 2003-01-29 13:55:00 UTC
I find risky race condition. There should not be used
nbDialogOperator.btOK().pushNoBlock();. It is no reason there to use
no-block operation. It doesn't produce any blocking dialog or
something similar. In that sense combination 

nbDialogOperator.btOK().pushNoBlock();
optionsOperator.close();

seems to be the killer.

Solution:

- close Options sooner

line 312: optionsOperator().close

- don't use no-block calls

line 309,343 and more: nbDialogOperator.ok(); 
Comment 3 Jan Becicka 2003-02-27 13:29:06 UTC
Verified