1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-03-28 14:56:28 +01:00

Increase timeout waiting for stopped event in test

Fixes #119
This commit is contained in:
Jonah Graham 2022-11-09 07:22:21 -05:00
parent cc67bd3b59
commit 5007c8b337

View file

@ -3234,8 +3234,8 @@ public class GDBMultiNonStopRunControlTest extends BaseParametrizedTestCase {
}
});
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(100)); // confirm one thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(100)); // confirm the other thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(1000)); // confirm one thread was suspended
eventWaitor.waitForEvent(TestsPlugin.massageTimeout(1000)); // confirm the other thread was suspended
// Also confirm that all processes are suspended
Boolean result = runAsyncCall(new AsyncRunnable<Boolean>() {