maeSetSetup
maeSetSetup( [?testsl_testNames] [?variablesl_variables] [?parametersl_params] [?cornersl_corners] [?enabledg_enabled] [?sessiont_sessionName] ) => t / nil
Description
Enables or disables the tests, global variables, parameters, and corners.
Arguments
Value Returned
|
The specified tests, global variables, parameters, or corners are enabled or disabled. |
||
Examples
Enables the specified tests test1, test2, and test3, corners nominal and C1, and variables VDD and IREF.
; load the setup
maeOpenSetup("solutions" "ampTest" "maestro") > t
maeSetSetup(?tests '("test1" "test3"))
; enables test1 and test3.
maeSetSetup(?tests '("test2") ?enabled nil)
; Disable test2
Disables the corners nominal and C1 and the global variables VDD and IREF.
maeSetSetup(?corners '("nominal" "C1") ?variables '("VDD" "IREF")?enabled nil)
Return to top