maeGetTestSession
maeGetTestSession (t_testName[?sessiont_sessionName] ) =>h_testSession/ nil
Description
Returns session handle to the given test. You can use this handle to view or modify the test details.
Arguments
|
Name of the session. If not specified, the current session is used. |
||
Value Returned
|
The session handle to the test.
The handle returned by this function can be used as a session argument to SKILL functions prefixed with |
||
Examples
;; Loading setup
sess=maeOpenSetup("opamp090" "full_diff_opamp_AC" "maestro11" ?mode "a")
=> "session0"
testnames=maeGetSetup()
> ("AC" "TRAN")
>
testHandle=maeGetTestSession(car(testnames))
=>stdobj@0x21989b60
asiAddModelLibSelection(testHandle "../models/spectre/gpdk090.scs" "NN")
=> t
>
maeRunSimulation()
=> "Interactive.1"
maeWaitUntilDone('All)
=> t
maeGetSimulationMessages(?msgType "ERROR")
maeExportOutputView() => "/servers/scratch02/testcases/adexl_workshop/design/Interactive.1.csv" exit()
Return to top