verifGetImpTestOutputs
verifGetImpTestOutputs(g_sessionId t_lib t_cell t_view t_history t_test[t_runName] ) =>l_impTestOutputs/ nil
Description
Returns the list of the outputs for an implementation test in a Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
|
Run name for the implementation is in 'Run Plan' mode. This argument is optional. |
Value Returned
|
The specified test does not exist or there is no outputs in the specified test. |
Examples
The following example opens a Verifier cellview and retrieves all the outputs of a test of the specified implementation.
uid = verifOpenCell("test" "sample" "verifier")
=>t
tests=verifGetImpTests(uid "opamp090" "full_diff_opamp_AC" "maestro" "Active")
("opamp090:full_diff_opamp_AC:1" "opamp090:full_diff_opamp_TRAN:1")
outputs=verifGetImpTestOutputs(uid "opamp090" "full_diff_opamp_AC" "maestro" "Active" "opamp090:full_diff_opamp_AC:1")
("Bandwidth" "Current" "DCGain" "InputRandomOffset" "MAC_DCGain")
For an example on how verifGetImpTestOutputs can be used in a custom function, see Copy Implementation Units to Requirements.
Related Topics
Return to top