//////////////////////////////////////////
// Welcome to Galaxy Examinator Script
// Find more on www.galaxysemi.com
// File: adv_datalog.csl
//////////////////////////////////////////
// Function to setup the datalog report section
SetDatalogReport()
{
sysLog('*** Script to datalog tests 1000-1005! ***');
// Select file name to process
var vFile = sysPrompt('Select the STDF file to process...');
// Creates a group to hold the file to process!
var group_id = gexGroup('insert','Group1');
// Add selected file into that group.
gexFile(group_id,'insert',vFile,'all','all');
// Set options to all defaults
gexOptions('reset','all','default');
// Set datalog report section: show tests 1000 to 1005
gexReportType('adv_datalog','tests','1000-1005');
// Get report created+show it (the advanced report page)!
gexBuildReport('advanced');
}
// Script entry point
main()
{
// Call function to setup the datalog report
SetDatalogReport();
} |