Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeGetTestSession

maeGetTestSession (
t_testName
[ ?session t_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

t_testName

Name of the test.

?session t_sessionName

Name of the session. If not specified, the current session is used.

Value Returned

h_testSession

The session handle to the test.

The handle returned by this function can be used as a session argument to SKILL functions prefixed with asi, as shown in the example.

nil

Indicates an error.

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
 ⠀
X