axlGetCornersForATest
axlGetCornersForATest(x_sessiont_test) =>l_corners/ nil
Description
Returns a list of corners enabled for the given test.
Arguments
Value Returned
|
List containing the names of corners associated with the given test and a list of corner variables and their value pairs. |
|
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
Return to top