maeCreateTest
maeCreateTest(t_testName[ ?sourceTestt_sourceTest][ ?libt_lib][ ?cellt_cell] [ ?viewt_view] [ ?simulatort_simulator] [ ?sessiont_sessionName]) => t / nil
Description
Creates a new test and adds it to the given maestro session. The design name for this test is set using the library, cell, and view name. If a source test name is given, it creates a copy of that test.
Arguments
|
Name of the source test to be copied to create the new test. |
|
Value Returned
Examples
Creates a copy of the test solution:ampTest:1 and names it solutions:ampTest:2.
maeCreateTest("solutions:ampTest:2" ?sourceTest "solution:ampTest:1")
maeSaveSetup()
Creates a new test solutions:ampTest:2, sets solutions/ampTest/schematic as the design and Spectre as simulator.
maeCreateTest("solutions:ampTest:2" ?lib "solutions" ?cell "ampTest" ?view "schematic" ?simulator "spectre")
maeSaveSetup()
Return to top