1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Additional cygwin-only check

This commit is contained in:
John Cortell 2010-03-05 17:48:22 +00:00
parent adbac60c10
commit 428ad8d1f9

View file

@ -211,6 +211,12 @@ public class MIRunControlTest extends BaseTestCase {
IMIExecutionDMContext dmc = (IMIExecutionDMContext) ctxts[0];
// Thread id for the main thread should be one
Assert.assertEquals(1, dmc.getThreadId());
if (sProgramIsCygwin) {
dmc = (IMIExecutionDMContext) ctxts[2];
Assert.assertEquals(2, dmc.getThreadId());
}
wait.waitReset();
}