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

maeSetDesignForTest

maeSetDesignForTest(
t_libName 
t_cellName 
t_viewName 
[ ?test t_test ]
[ ?session t_session ]

)
=> t / nil

Description

Sets a design for all tests or the specified test.

Arguments

t_libName

The name of the library for the specified design.

t_cellName

The name of the cell for the specified design.

t_viewName

The name of the view for the specified design.

?test t_test

The name of a single test or a list of tests. If no test is specified, the design is set to all tests in the session.

?session t_session

The name of the session. If no name is specified, the currently active session is used.

Value Returned

t

The command was successful.

nil

Indicates an error.

Examples

The following example shows how to change the design for a single test, all tests, or a list of specified tests.

Changes the design for all tests

maeSetDesignForTest("Two_Stage_Opamp" "OpAmp_TRAN_top" "config")
=> t

Changes the design for a specified test

maeSetDesignForTest("Two_Stage_Opamp" "OpAmp_TRAN_top" "config2" ?test "AC")
=> t

Changes the design for the list of tests

maeSetDesignForTest("Two_Stage_Opamp" "OpAmp_TRAN_top" "config2" ?test list("AC" "TRAN"))
=> t

Return to top
 ⠀
X