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

axlGetTestToolArgs

axlGetTestToolArgs( 
x_hsdb 
) 
=> l_toolOptions / nil 

Description

Returns an associative list of tool option names and values for a test.

Arguments

x_hsdb

Handle to the test.

Value Returned

l_toolOptions

Associative list of tool option names and values for the test.
Valid values when the tool is ADE are:

  • Library name: lib t_libName
  • Cell name: cell t_cellName
  • View name: view t_viewName
  • Simulator name: sim t_simulator
  • State name: state t_stateName
  • Path to ADE state: path t_path

nil

Unsuccessful operation.

Examples

The following example retrieves an associative list of tool option names and values for test with handle testh.

data_sdb = axlGetMainSetupDB(axlGetWindowSession())
;; Get test args testh= axlGetTest( data_sdb "OpAmp1" ) axlGetTestToolArgs( testh ) '(("lib"   "opamplib")
("cell" "ampTest")
("view" "schematic")
("sim" "spectre")
("path" "./artist_state")
("state" "tran_state")
)

Related Topics

axlGetOrigTestToolArgs

axlToolSetSetupOptions


Return to top
 ⠀
X