Lines Matching refs:command
23 …def check_list_output(self, command, active_plans = [], completed_plans = [], discarded_plans = []… argument
34 interp.HandleCommand(command, result)
35 print("Command: %s"%(command))
40 (command, result.GetError()))
43 … self.assertTrue(result.Succeeded(), "command: '%s' failed: '%s'"%(command, result.GetError()))
101 command = "thread plan list %d"%(current_id)
102 self.check_list_output (command, ["wrap_step_over.WrapStepOver"], [])
105 command = "thread plan list -i %d"%(current_id)
106 self.check_list_output(command, ["WrapStepOver", "Stepping over line main.c"])
109 command = "thread plan list -t %d"%(current_tid)
110 self.check_list_output(command, ["wrap_step_over.WrapStepOver"])
113 command = "thread plan list -t %d %d"%(current_tid, current_id)
114 self.check_list_output(command, ["wrap_step_over.WrapStepOver"])
124 command = "thread plan list -t %d"%(fake_tid)
125 self.check_list_output(command)
133 command = "thread plan list %d"%(current_id)
134 self.check_list_output(command, [], ["wrap_step_over.WrapStepOver"])
156 command = "thread plan list %d"%(current_id)
157 self.check_list_output(command, [], [], ["Stepping over line main.c:"])