winIDEA SDK
test_set_function_trigger.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2#
3# (c) TASKING Germany GmbH, 2023
4
5import isystem.connect as ic
6
7winidea_id = ''
8
9
10EXAMPLE_TRD_FILE_NAME = "example.trd"
11
12
13def test_setFunctionTrigger():
14 connMgr = ic.ConnectionMgr()
15 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
16
17 profCtrl = ic.CProfilerController2(connMgr, EXAMPLE_TRD_FILE_NAME, "u")
18 profCtrl.waitUntilLoaded(5000, isThrow=True)
19
20 print("Setting start event of trigger with index 0 on function 'main' entry...")
21 profCtrl.setFunctionTrigger(0, "main")
22 profCtrl.closeDiscard()
23
24
25if __name__ == "__main__":
26 test_setFunctionTrigger()