axlSetTestToolArgs
axlSetTestToolArgs(x_hsdb l_toolOptions) =>x_hsdb/ nil
Description
Sets the tool options for the test.
Arguments
|
Associative list of tool option names and values for the test. |
Value Returned
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
Return to top