Debugger/DebuggerInterfacePython3.py

changeset 1166
a94b0a2fafd7
parent 1131
7781e396c903
child 1171
1ffefa5ca226
equal deleted inserted replaced
1163:0155e7aa345d 1166:a94b0a2fafd7
935 if resp == DebugProtocol.ResponseUTTestErrored: 935 if resp == DebugProtocol.ResponseUTTestErrored:
936 testname, traceback = eval(line[eoc:-1]) 936 testname, traceback = eval(line[eoc:-1])
937 self.debugServer.clientUtTestErrored(testname, traceback) 937 self.debugServer.clientUtTestErrored(testname, traceback)
938 continue 938 continue
939 939
940 if resp == DebugProtocol.ResponseUTTestSkipped:
941 testname, reason = eval(line[eoc:-1])
942 self.debugServer.clientUtTestSkipped(testname, reason)
943 continue
944
945 if resp == DebugProtocol.ResponseUTTestFailedExpected:
946 testname, traceback = eval(line[eoc:-1])
947 self.debugServer.clientUtTestFailedExpected(testname, traceback)
948 continue
949
950 if resp == DebugProtocol.ResponseUTTestSucceededUnexpected:
951 testname = line[eoc:-1]
952 self.debugServer.clientUtTestSucceededUnexpected(testname)
953 continue
954
940 if resp == DebugProtocol.ResponseUTFinished: 955 if resp == DebugProtocol.ResponseUTFinished:
941 self.debugServer.clientUtFinished() 956 self.debugServer.clientUtFinished()
942 continue 957 continue
943 958
944 if resp == DebugProtocol.RequestForkTo: 959 if resp == DebugProtocol.RequestForkTo:

eric ide

mercurial