Computer Access Technology Corporation
IB
Tracer
Verification Script Engine Manual, version 1.0
Page 34 of 35
18. Miscellaneous
functions
18.1 ScriptForDisplayOnly()
Specifies that the script is designed for displaying information only and that its author doesn’t
care about verification script result. Such a script will have a result <DONE> after execution.
Format
:
ScriptForDisplayOnly ()
Example:
ScriptForDisplayOnly();
18.2 Sleep()
Asks VSE not to send any events to a script until the timestamp of the next event is greater than
timestamp of current event plus sleeping time.
Format
:
Sleep(
time
)
Parameters:
time
- VSE time object specifying sleep time
Example:
Sleep ( Time(1000) ); # Don’t send any event occurred during 1 microsecond from the current
event
NOTE : Some other useful miscellaneous functions can be found in the
file : VSTools.inc
19. The VSE important script files
The VSE working files are located in ..\Scripts\VFScripts subfolder of the main IBTracer
folder. The current version of VSE includes following files:
File
Description
VSTools.inc
main VSE file containing definitions of VSE script functions
VS_constants.inc
file containing definitions of some important VSE global constants
VSTemplate.de_
template file for new verification scripts with detailed comments
VSTemplateSimple.de_
template file for new verification scripts with just a few comments
VSUser_globals.inc
file of user global variables and constants definitions