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

axlGetWCCTest

axlGetWCCTest(
x_wccHandle 
) 
=> t_testName / nil 

Description

Returns the name of the test of the specification associated with a worst-case corner.

Arguments

x_wccHandle

Handle to the spec of a worst-case corner.

Value Returned

t_testName

Name of the test of the given specification.

nil

The command was not successful.

Examples

The following example prints the test and spec names associated with the worst-case corners in the setup.

corners = (cadr (axlGetCorners sdb))
(foreach corner corners    cornerh = (axlGetCorner sdb corner)
specs = (axlGetWCCSpecs cornerh)
(if (cadr specs) then
(printf "Corner: %s\n" corner)
else
(if (cadr specs) then
(printf "Corner: %s\n" corner)
(printf "\tno specs\n")
)

(foreach spec (cadr specs)
         spec = (axlGetWCCSpec cornerh spec)
testname = (axlGetWCCTest spec)
specname = (axlGetWCCResult spec)
wcccorner = (axlGetWCCCorner spec)
(printf "\tTest = %s\n" testname)
(printf "\tSpec name = %L\n" specname)
(printf "\tWCC corner = %L\n\n" wcccorner)
)
)

Related Topics

Worst Case Corners


Return to top
 ⠀
X