axlGetRunStatus
axlGetRunStatus(t_sessionName[?optionNamet_optionName][?historyNamet_historyName]) =>l_statusValues
Description
Returns the completion status in terms of the number of points, tests, or corners completed for all histories running in the given session or for the specified history.
Arguments
Value Returned
Examples
The following example code shows how the completion status for a simulation run is returned:
axlSession=axlGetWindowSession( hiGetCurrentWindow())
=> "session0"
axlGetRunStatus("session0")
=> (4 14)
; The returned value suggests that out of the total 14 points to be run in the session session0, simulations are complete for 4 points.
;
axlGetRunStatus("session0" ?historyName "Interactive.10" ?optionName "tests")
=> (1 2)
; The returned value suggests that out of the total two tests in the Interactive.10 history of session0, simulations are complete for one test.
;
axlGetRunStatus("session0" ?historyName "Interactive.10" ?optionName "corners")
=> (4 8)
; The returned value suggests that out of the total eight corners to be run in the Interactive.10 history of session0, simulations are complete for four corners.
Related Topics
Return to top