maeGetTestEnvVar
maeGetTestEnvVar(t_testName t_varName[?sessiont_sessionName] ) =>g_value/ nil
Description
Returns the value of the specified environment variable for the given test. This function can be used to get the value set for a particular test using the maeSetTestEnvVar function.
Arguments
|
Name of the environment variable for which the value is to be returned. |
||
|
Name of the session. If not specified, the current session is used. |
||
Value Returned
|
The value of the environment variable set for the given test is returned. |
||
Examples
Returns the values set for the PinCheck Term Mismatch Action and PinCheck Term Direction Mismatch Action environment options for the tests in ADE Assembler.
;; Loading setup
sess=maeOpenSetup("opamp090" "full_diff_opamp_AC" "maestro11" ?mode "a")
=> "fnxSession0"
testnames=maeGetSetup()
> ("AC" "TRAN")
maeGetTestEnvVar("AC" "termDirectionMismatch" ?session "fnxSession0")
>"warning"
maeGetTestEnvVar("TRAN" "termMismatch" )
=>"ignore"
Related Topics
Return to top