Community
Participate
Working Groups
The last days I faced an ugly issue when executing the RWTAllTestSuite. There is one test that randomly freezes the test suite. This is the test method: org.eclipse.rwt.internal.lifecycle.RWTLifeCycle_Test.testSwitchThreadCannotBeInterrupted() Sadly it happens randomly and I can't reproduce it reliable.
Apparently, the test tried to unblock the ui thread after the actual test by calling switchThread() from the test thread. When the ui had not terminated at that point this put the main thread into wait. Fixed by calling notifyAll on the lock instead. Changes are in CVS HEAD and 1.4 Maintenance branch.