maeGetSpecStatus
maeGetSpecStatus(t_outputName t_testName[?pointIdn_pointId] ) => pass / fail / undefined
Description
Returns the specification status for the given output, test and point id.
Arguments
Value Returned
Examples
Returns the specification status for the output outputA in the test solutions:amptest:1.
; Load the results for that history
maeOpenResults(?history "Interactive.1")
=> t
>
; Get the output value
maeGetOutputValue("outputA" "solutions:amptest:1")
=> 2.2
; Get the spec status
maeGetSpecStatus("outputA" "solutions:amptest:1")
=>"pass"
;close the results
maeCloseResults()
=> t
Return to top