verifGetResultDataForReq
verifGetResultDataForReq(g_sessionId t_reqId )=>o_resultDataTable/ nil
Description
Returns the simulation result data for the specified requirement in a Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
The specified requirement does not exist, the result data is not available, or the command is not successful. |
Examples
The following example opens a Verifier cellview and retrieves the result data of the implementation mapped to the requirement in that cellview.
uid = verifOpenCellView("test" "results" "verifier")
=> 0
Requirement 'ID1' of 'Note' type
tableToList(verifGetResultDataForReq(uid "ID1"))
(("reqStatus" "0%")
("passed" "0")
("reqTitle" list("Two_Stage_Opamp" "OpAmp" "maestro_MC" "Active (Note)"))
("reqType" "Note")
("noResults" "77")
("reqId" "ID1")
("reqHier" "1")
("failed" "0")
("unmapped" "0")
)
tableToList(verifGetResultDataForReq(uid "ID1.1"))
(("reqStatus" "Not Run")
("passed" "0")
("reqTitle" list("Two_Stage_Opamp" "OpAmp" "maestro_MC" "Active"))
("reqType" "Ran Ok")
("noResults" "1")
("reqId" "ID1.1")
("reqHier" "1->1.1")
("failed" "0")
(list("Two_Stage_Opamp" "OpAmp" "maestro_MC" "Active") table:info)
)
Related Topics
Simulation and Results Extraction Functions
Return to top