maeSetEnvOption
maeSetEnvOption(t_testName[?optionsl_options] [?sessiont_sessionName] ) => t / nil
Description
Sets values for one or more environment options for the given test.
Arguments
|
List of environment options and the values to be set for them. You can use
|
||
Value Returned
|
The values for the environment options are set successfully. |
||
Examples
Sets values for multiple environment options.
sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeSetEnvOption("AC" ?options '(("stopViewList" ("spectre")) ("modelFiles" (("./models.scs" "FF")))))
;; Sets the stopViewList as ("spectre") and modelFiles as (("./models.scs" "FF")
Sets multiple model files by specifying a list of model file paths.
sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeSetEnvOption("AC" ?options '(("modelFiles" (("./models.scs" "FF") ("./TECH/GPDK045/gpdk045/models/spectre/gpdk045.scs" "mc") ("./DESIGNS/GPDK045/FRACNPLL/models/inductor.scs")))))
Related Topics
Return to top