maeGetRelxTestEnabled
maeGetRelxTestEnabled(t_relxSetupName[ ?testTypet_testType][?runt_runName] [?sessiont_session] ) =>t/nil
Description
Returns the current status of a reliability stage in the specified reliability setup.
Arguments
Value Returned
Examples
The following example indicates that the reliability stage fresh is enabled in the reliability setup relA saved in the active setup of the current maestro session.
maeGetRelxTestEnabled("relA")
=> t
The following example indicates that the reliability stage stress is disabled in the reliability setup relA saved in the active setup of the current maestro session.
maeGetRelxTestEnabled("relB" ?testType "stress")
=> nil
The following example indicates that the reliability stage fresh is disabled in the reliability setup relA saved in Run.0 in the current maestro session.
maeGetRelxTestEnabled("relA" ?testType "fresh" ?run "Run.0")
=> nil
The following example indicates that the reliability stage stress is enabled in the reliability setup relA saved in Run.0 in the current maestro session.
maeGetRelxTestEnabled("relA" ?testType "stress" ?run "Run.0")
=> t
Return to top