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

axlGetCornersForATest

axlGetCornersForATest( 
x_session 
t_test 
) 
=> l_corners / nil

Description

Returns a list of corners enabled for the given test.

Arguments

x_session

Handle to the session.

t_test

Test name.

Value Returned

l_corners

List containing the names of corners associated with the given test and a list of corner variables and their value pairs.

nil

Unsuccessful operation.

Examples

The following example returns a list of all the enabled corners associated with test Test1:

data_session = axlGetWindowSession(hiGetCurrentWindow())
axlGetCornersForATest(data_session "Test1")
(("C1_VDD_2.2_Temp_1" 
 (("VDD" "2.2") 
     ("temperature" "75") 
     ("corModelSpec" "File=All#Global#gpdk045.scs Section=\"tt\";")
 )
    ) 
    ("C1_VDD_2.2_Temp_0" 
 (("VDD" "2.2") 
     ("temperature" "-25") 
     ("corModelSpec" "File=All#Global#gpdk045.scs Section=\"tt\";")
 )
    ) 
("" nil)
)

Related Topics

Working with Tests


Return to top
 ⠀
X