maeGetRelxTest
maeGetRelxTest(t_relxSetupName[?testTypet_testType] [?runt_runName] [?sessiont_session] ) =>t_testName /nil
Description
Returns the name of the test used in the fresh, stress, or aged stage of a reliability setup.
Arguments
|
Stage of the reliability setup. |
|
|
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. |
|
Value Returned
|
The test name used in the specified stage of the reliability setup. |
|
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