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

maeGetSpecStatus

maeGetSpecStatus(
t_outputName
t_testName
[ ?pointId n_pointId ]
)
=> pass / fail / undefined

Description

Returns the specification status for the given output, test and point id.

Arguments

t_outputName

Name of the output.

t_testName

Name of the test.

?pointId n_pointId

Point ID for which you need to get the spec status

The default value is 1.

Value Returned

pass

The specification has passed.

fail

The specification has failed.

undefined

Indicates an invalid case.

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
 ⠀
X