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

axlSetDesignVariablePerTest

axlSetDesignVariablePerTest( 
x_mainSDB
t_varName
t_testName
[ ?enabled g_enableStatus ]
) 
=> t / nil

Description

Enables or disables a design variable for a specific test. In the Setup assistant of ADE Explorer or the Data View assistant of ADE Assembler, it selects or clears the check box next to a design variable under a test.

Arguments

x_mainsSDB

Handle to the main setup database

t_varName

Name of the design variable

t_testName

Name of the test

?enabled g_enableStatus

Enable status to be set for the given design variable

Default value: t

Value Returned

t

The design variable was enabled or disabled for the test.

nil

The command was unsuccessful.

Examples

The following example enables a design variable, IREF, for the ACGainBW test.

s1 = axlGetWindowSession()
=> "session0"
x_mainSDB = axlGetMainSetupDB( s1 )
=> 1001
axlSetDesignVariablePerTest(x_mainSDB "IREF" "ACGainBW" ?enabled t)
=> t

The check box next to the IREF variable in the Design Variables list for the ACGainBW test is selected.

Related Topics

axlGetEnabledGlobalVarPerTest


Return to top
 ⠀
X