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

maeSetEnableTestVar

maeSetEnableTestVar(
t_testName
l_variableNames
[ ?enabled g_enabled ]
[ ?session t_sessionName ]
)
=> t / nil

Description

Enables or disables the specified variables or local sweeps for the given test.

Arguments

t_testName

Name of the test.

l_variableNames

List of variable names to be enabled or disabled for the given test

?enabled g_enabled

Status to be set for the given variables.

  • t: Enables the specified variables or local sweeps for the given test. This is the default.
  • nil: Disables the specified variables or local sweeps for the given test.

?session t_sessionName

Name of the session.

If not specified, the current session is used.

Value Returned

t

The specified variables or local sweeps are enabled or disabled for the given test.

nil

The specified variables or local sweeps are not enabled or disabled.

Examples

Enables var1 and var3 local variables for test test1.

sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeSetEnableTestVar("test1" '("var1" "var3") ?enabled t)
=> t

Return to top
 ⠀
X