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

maeGetRelxTest

maeGetRelxTest(
t_relxSetupName
[ ?testType t_testType ]
[ ?run t_runName ]
[ ?session t_session ]
)
=> t_testName / nil

Description

Returns the name of the test used in the fresh, stress, or aged stage of a reliability setup.

Arguments

t_relxSetupName

Name of the reliability setup.

?testType t_testType

Stage of the reliability setup.

Valid values: fresh, stress, aged.

Default: fresh

?run t_runName

Name of the run in a run plan.

If you do not specify this argument, the test name is retrieved from the reliability setup in the active setup.

This argument is useful only when the setup has a run plan.

?session t_session

Name of the ADE Explorer or ADE Assembler session

Default: The current session.

Value Returned

t_testName

The test name used in the specified stage of the reliability setup.

nil

The test name is not retrieved because of an error.

Examples

The following example returns the name of the test used in the fresh stage of the reliability setup relA saved in the active setup of the current maestro session.

maeGetRelxTest("relA")
=> "testA"

The following example returns the name of the test used in the stress stage of the reliability setup relA saved in the active setup of the current maestro session.

maeGetRelxTest("relA" ?testType "stress" )
=> "testB"

The following example returns the name of the test used in the stress stage of the reliability setup relA saved in Run.0 in current maestro session.

maeGetRelxTest("relA" ?testType "stress" ?run "Run.0")
=> "testC"

Return to top
 ⠀
X