maeSetTestEnvVar
maeSetTestEnvVar(t_testName t_varName g_varValue[?sessiont_sessionName] ) =>t_value/ nil
Description
Sets the value for the given environment variable at the test level. The value is used only by the specified test. Other tests in the session use the value set at the global level or specific values set for them, if any.
Arguments
|
Name of the test for which you need to set the value for an environment variable. |
||
Value Returned
Examples
Sets the values for PinCheck Term Mismatch Action and PinCheck Term Direction Mismatch Action in the Environment Options form for test AC in ADE Assembler:
; load the setup
sess=maeOpenSetup("opamp090" "full_diff_opamp_AC" "maestro11" ?mode "a")
=> "fnxSession0"
testnames=maeGetSetup()
> ("AC" "TRAN")
maeSetTestEnvVar( "AC" "termDirectionMismatch" "ignore" ?session "fnxSession0") =>"ignore"
Return to top