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

axlSetTestToolArgs

axlSetTestToolArgs( 
x_hsdb 
l_toolOptions 
) 
=> x_hsdb / nil 

Description

Sets the tool options for the test.

Arguments

x_hsdb

Handle to the test for which you need to set options.

l_toolOptions

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

  • 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

Value Returned

x_hsdb

Setup database handle.

nil

Unsuccessful operation.

Examples

The following example shows how to load a state saved from ADE L for a test into ADE XL:

session = axlGetWindowSession() 
sdb = axlGetMainSetupDB(session)
libName = axlGetSessionLibName(session)
cellName = axlGetSessionCellName(session)
handleToTest = axlPutTest(sdb "state_test" "ADE") axlSetTestToolArgs(handleToTest list( list("lib" libName) list("cell" cellName) list("view" "schematic")  list("sim" "spectre")))
testSession=asiGetSession(handleToTest) asiLoadState(testSession ?name "spectre_state1" ?lib libName ?cell cellName ?simulator "spectre")

Related Topics

Working with Tests


Return to top
 ⠀
X