mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-09 03:23:07 +02:00
Additional cygwin-only check
This commit is contained in:
parent
adbac60c10
commit
428ad8d1f9
1 changed files with 6 additions and 0 deletions
|
@ -211,6 +211,12 @@ public class MIRunControlTest extends BaseTestCase {
|
||||||
IMIExecutionDMContext dmc = (IMIExecutionDMContext) ctxts[0];
|
IMIExecutionDMContext dmc = (IMIExecutionDMContext) ctxts[0];
|
||||||
// Thread id for the main thread should be one
|
// Thread id for the main thread should be one
|
||||||
Assert.assertEquals(1, dmc.getThreadId());
|
Assert.assertEquals(1, dmc.getThreadId());
|
||||||
|
|
||||||
|
if (sProgramIsCygwin) {
|
||||||
|
dmc = (IMIExecutionDMContext) ctxts[2];
|
||||||
|
Assert.assertEquals(2, dmc.getThreadId());
|
||||||
|
}
|
||||||
|
|
||||||
wait.waitReset();
|
wait.waitReset();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue