5import isystem.connect
as ic
10EXAMPLE_TRD_FILE_NAME =
"sdk_example.trd"
13def test_setFunctionTrigger():
14 connMgr = ic.ConnectionMgr()
15 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
17 profCtrl = ic.CProfilerController2(connMgr, EXAMPLE_TRD_FILE_NAME,
"u")
18 profCtrl.waitUntilLoaded(5000, isThrow=
True)
20 print(
"Setting start event of trigger with index 0 on function 'main' entry...")
21 profCtrl.setFunctionTrigger(0,
"main")
22 profCtrl.closeDiscard()
25if __name__ ==
"__main__":
26 test_setFunctionTrigger()