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

axlDeleteOutput

axlDeleteOutput(
t_sessionName
t_testName
[ ?outputName t_outputName ]
[ ?type t_outputType ]
)
=> t / t_error

Description

Deletes an output from a test setup.

Arguments

t_sessionName

Name of session

t_testName

Name of test

?outputName t_outputName

Name of the output to be deleted.

Default value: ""

?type t_outputType

Type of the output.

Possible values: signal and expr.

Default value: ""

Value Returned

t

Successful deletion of an output from the test

t_error

Returns an error message if unsuccessful.

Examples

The following examples delete the outputs from the specified test.

session = axlGetWindowSession()
testname = "simLib1:sim_top1:1"
axlDeleteOutput(session testname "/net6")
axlDeleteOutput(session testname "V0/I/1" ?type "expr")
axlDeleteOutput(session testname "/net5" ?type "signal")
=> t

Return to top
 ⠀
X