Teledyne LeCroy Verification Script Engine for Teledyne LeCroy PETracer Reference Manual User Manual

Page 26

Advertising
background image

Teledyne LeCroy

Verification Script Engine Reference Manual

Version 6.6x

21

6 Verification Script Engine Output Context Members


All verification scripts have output contexts – some special structures whose members are filled by the

script and can be used inside of the application. (For more details about output contexts, please refer to the CATC
Script Language(CSL) Manual.
) The verification script output contexts have only one member:

out.Result

: Result of the whole verification program defined in the verification script.


This member is supposed to have the values:
_VERIFICATION_PROGRESS (set by default when script starts running)
_VERIFICATION_PASSED
_VERIFICATION_FAILED

The last two values should be set if you decide that the recorded trace does (or does not) satisfy the

imposed verification conditions. In both cases, the verification script stops running.

If you don't specify any of those values, the result of script execution is set as _VERIFICATION_FAILED at exit.

Note: If you don’t care about the results of the script that’s running, please call function

ScriptForDisplayOnly()

one time before stopping the script. Then the results are DONE.

Advertising