1
2
3
4
5
6import isystem.connect as ic
7
8
9winidea_id = ''
10
11
12def test_deleteAll():
13 connMgr = ic.ConnectionMgr()
14 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15
16 bpCtrl = ic.CBreakpointController(connMgr)
17 bpCtrl.setBP("main")
18 bpCtrl.setBP(215, "CORE0/startup.c")
19 bpCtrl.deleteAll()
20 print("All execution BPs deleted.")
21
22
23if __name__ == "__main__":
24 test_deleteAll()