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:
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];
|
||||
// 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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue