mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-07 00:55:24 +02:00
Bug 378834 - Temporarily added printouts to get the list of registers of
the Hudson machine. Change-Id: I06346618e1f7c2c114862fd0b8db75f65efc0b2b
This commit is contained in:
parent
b7277f86f0
commit
b2d04ae8ac
1 changed files with 7 additions and 0 deletions
|
@ -46,6 +46,7 @@ import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService;
|
|||
import org.eclipse.cdt.dsf.mi.service.IMIExecutionDMContext;
|
||||
import org.eclipse.cdt.dsf.mi.service.IMIProcesses;
|
||||
import org.eclipse.cdt.dsf.mi.service.MIProcesses;
|
||||
import org.eclipse.cdt.dsf.mi.service.MIRegisters.MIRegisterDMC;
|
||||
import org.eclipse.cdt.dsf.mi.service.command.events.MIStoppedEvent;
|
||||
import org.eclipse.cdt.dsf.service.DsfServicesTracker;
|
||||
import org.eclipse.cdt.dsf.service.DsfSession;
|
||||
|
@ -189,6 +190,12 @@ public class MIRegistersTest extends BaseTestCase {
|
|||
protected void handleCompleted() {
|
||||
if (isSuccess()) {
|
||||
fWait.setReturnInfo(getData());
|
||||
// TODO Remove
|
||||
for (IRegisterDMContext dmcr : getData()) {
|
||||
System.out.print(((MIRegisterDMC)dmcr).getName()+",");
|
||||
}
|
||||
System.out.println();
|
||||
// TODO Remove
|
||||
}
|
||||
|
||||
fWait.waitFinished(getStatus());
|
||||
|
|
Loading…
Add table
Reference in a new issue