axlGetHistoryOutputs
axlGetHistoryOutputs(t_sessionNamex_historyEntry?testNamex_testName) =>l_outputStructures/ nil
Description
Returns a list of output structures for the given history and test. If the test name is not given, returns a list of all outputs from the given history. If a session with the given history is not already created, this function opens the history and creates that session too.
Arguments
Value Returned
Examples
The following example returns the list of outputs for test TRAN_EXTR_EV2 in history Interactive.0:
session=axlGetWindowSession()
=> "fnxSession1"
sdb = axlGetMainSetupDB(session)
=> 2708
axlGetHistoryEntry(2708 "Interactive.0")
=> 5716
axlGetHistoryOutputs(session 5716 ?testName "TRAN_EXTR_EV2")
=> ((sevOutputStruct@0x2dd97ec0 sevOutputStruct@0x2dd97ed8 sevOutputStruct@0x2dd97ef0 sevOutputStruct@0x2dd97f08 )
)
Return to top