Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlGetHistoryOutputs

axlGetHistoryOutputs( 
t_sessionName 
x_historyEntry 
?testName x_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

t_sessionName

Name of the session.

x_historyEntry

Integer argument representing the history entry.

?testName x_testName

Name of the test for which outputs are to be returned.

Value Returned

l_outputStructures

List of output structures.

nil

History or test is not found in the given session.

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
 ⠀
X