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

maeDeleteOutput

maeDeleteOutput(
t_outputName
t_testName
[ ?session t_sessionName ]
)
=> t / nil

Description

Deletes the specified output from the setup database.

Arguments

t_outputName

Name of the output to be deleted from the setup.

t_testName

Name of the test for which the output is to be deleted.

?session t_sessionName

Name of the session.

If not specified, the output is deleted from the current session.

Value Returned

t

The specified output gets deleted from the setup database.

nil

The specified output is not deleted.

Examples

Deletes an output from the setup database of the specified test.

sess= maeOpenSetup("solutions" "ampTest" "maestro")
=> "session0"
maeDeleteOutput("out1" "test1")
=> t

Deletes multiple outputs from the setup database of the specified test.

maeDeleteOutput(list("out1" "out2" "out3")"test1")
=> t

Return to top
 ⠀
X