Most recent fail: https://download.eclipse.org/eclipse/downloads/drops4/I20260201-1800/testresults/html/org.eclipse.swt.tests_ep439I-unit-linux-x86_64-java25_linux.gtk.x86_64_25.html
testShowWhile() timed out after 30 seconds
java.util.concurrent.TimeoutException: testShowWhile() timed out after 30 seconds
at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
Looking at the code, could it be, the common thread pool that is used by CompletableFuture.runAsync() code in the test simply has no free executor threads to run, or that they don't have a free core to be executed? Note, our test instances run on VM's with limited CPU resources.
Most recent fail: https://download.eclipse.org/eclipse/downloads/drops4/I20260201-1800/testresults/html/org.eclipse.swt.tests_ep439I-unit-linux-x86_64-java25_linux.gtk.x86_64_25.html
Looking at the code, could it be, the common thread pool that is used by
CompletableFuture.runAsync()code in the test simply has no free executor threads to run, or that they don't have a free core to be executed? Note, our test instances run on VM's with limited CPU resources.