import isystem.connect as ic
winidea_id = ''
def test_deleteAll():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
bpCtrl = ic.CBreakpointController(connMgr)
bpCtrl.setBP("main")
bpCtrl.setBP(215, "CORE0/startup.c")
bpCtrl.deleteAll()
print("All execution BPs deleted.")
if __name__ == "__main__":
test_deleteAll()