axlGetOrigTestToolArgs
axlGetOrigTestToolArgs(x_hsdb) =>l_toolOptions/ nil
Description
Returns an associative list of original tool options set for the test before you ran the simulation after modifying the test setup.
Argument
Value Returned
|
Associative list of original tool options set for the test before you ran a simulation after modifying the test setup. |
|
Examples
The following example shows how to get an associative list of original tool options set for a test:
data_session = axlGetWindowSession(hiGetCurrentWindow())
data_sdb=axlGetMainSetupDB(data_session)
;; Get test args testh= axlGetTest( data_sdb "OpAmp1" ) axlGetOrigTestToolArgs( testh ) '(("lib" "opamplib")
("cell" "ampTest")
("view" "schematic")
("sim" "spectre")
("path" "./aState")
("state" "tran_state")
)
Related Topics
Return to top