Teledyne LeCroy SAS_SATA Automation API manual User Manual

Page 91

Advertising
background image

 

Automation API for Teledyne LeCroy SAS/SATA Protocol Suite

85

SASTrace Object

Teledyne LeCroy

Example

C++:
// This example uses wrapper functions provided by the

#import directive.

ISASTrace* sas_trace;
. . .
ISASVerificationScript* sas_vscript = NULL;

sas_trace->QueryInterface(IID_ISASVerificationScript,
(void**)&sas_vscript))
assert( sas_vscript != NULL );
IVScriptEngine* sas_vsengine = NULL;
sas_vsengine = sas_vscript ->

GetVScriptEngine("Test_1");

assert( sas_vsengine != NULL );
VS_RESULT result = sas_vsengine ->RunVScript();

if( result == PASSED )
{
::MessageBox( NULL, "Test verification 1 is passed

!!!",

"SASTracer client", MB_OK );
}

. . .

WSH:
Set Analyzer = WScript.CreateObject("LeCroy.SASTracer")

Set Trace = Analyzer.OpenFile( "C:\Some trace

files\some_trace.sas" )

Dim Result
Set VSEngine = Trace.GetVScriptEngine( "Test1" )
Result = VSEngine.RunVScript
If Result = 1 Then
Msgbox "PASSED"
Else
Msgbox "FAILED"
End If
MsgBox( "Done" )

Advertising