Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r497e910ca4972a1a993cb0ae1edf30d225283b34 -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 497e910ca4972a1a993cb0ae1edf30d225283b34) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -69,8 +69,6 @@ #define FLOW_SENSOR_ZERO_READING 0xFFFF ///< Flow sensor reading indicates zero flow (or flow lower than can be detected by sensor). -#define FLOW_SAMPLES_TO_AVERAGE ( 250 / TASK_PRIORITY_INTERVAL ) ///< Averaging flow data over 250 ms intervals. -#define FLOW_AVERAGE_MULTIPLIER ( 1.0 / (F32)FLOW_SAMPLES_TO_AVERAGE ) ///< Optimization - multiplying is faster than dividing. #define MAX_ALLOWED_FLOW_DEVIATION 0.1 ///< Max allowed deviation from target flow. #define FLOW_OUT_OF_RANGE_PERSISTENT_INTERVAL 5 * MS_PER_SECOND ///< Flow out of range time out in counts. #define MAX_PRESSURE_TARGET_TOLERANCE 5 ///< Pressure tolerance from maximum set pressure by user in psi. @@ -127,7 +125,7 @@ static F32 roPumpFlowRateRunningSum = 0; ///< RO pump flow rate running sum static F32 roPumpPressureRunningSum = 0; ///< RO pump pressure running sum -/* These variables are used for POST. POST has not been implemented yet +/* TODO These variables are used for POST. POST has not been implemented yet static RO_PUMP_SELF_TEST_STATE_T roPumpSelfTestState = RO_PUMP_SELF_TEST_STATE_START; ///< Current ro pump self test state static U32 roPumpSelfTestTimerCount = 0; ///< Timer counter for ro pump self test */ @@ -198,25 +196,6 @@ /*********************************************************************//** * @brief - * The setROPumpTargetDutyCycle function sets the duty cycle that the - * pump should run. - * @details Inputs: roPumpOpenLoopTargetDutyCycle, roPumpPWMDutyCyclePct, - * roPumpPWMDutyCyclePctSet, roPumpControlMode - * @details Outputs: roPumpOpenLoopTargetDutyCycle, roPumpPWMDutyCyclePct, - * roPumpPWMDutyCyclePctSet, roPumpControlMode - * @param: duty which is the duty cycle - * @return none - *************************************************************************/ -static void setROPumpTargetDutyCycle( F32 duty ) -{ - roPumpOpenLoopTargetDutyCycle = duty; - roPumpPWMDutyCyclePct = roPumpOpenLoopTargetDutyCycle; - roPumpDutyCyclePctSet = roPumpPWMDutyCyclePct; - roPumpControlMode = PUMP_CONTROL_MODE_OPEN_LOOP; -} - -/*********************************************************************//** - * @brief * The setROPumpTargetFlowRate function sets a new target flow rate for the * RO pump. * @details Inputs: targetROPumpPressure, targetROPumpFlowRate, @@ -233,7 +212,7 @@ BOOL result = FALSE; // First of all, the flow rate must be in range - if ( ( roFlowRate < MAX_RO_FLOWRATE_LPM ) && ( roFlowRate >= MIN_RO_FLOWRATE_LPM ) ) + if ( ( roFlowRate <= MAX_RO_FLOWRATE_LPM ) && ( roFlowRate >= MIN_RO_FLOWRATE_LPM ) ) { // Then the max pressure that we are allowed to reach must be in range if ( ( maxPressure >= MIN_ALLOWED_PRESSURE_PSI ) && ( maxPressure <= MAX_ALLOWED_PRESSURE_PSI ) ) @@ -303,9 +282,9 @@ void execROPumpMonitor( void ) { U16 roFlowReading = getFPGAROPumpFlowRate(); - S32 roFlow = (S32)roFlowReading; + // Update sum for flow average calculation - measuredFlowReadingsSum += roFlow; + measuredFlowReadingsSum += (S32)roFlowReading; // Read the pressure at the sensor. The pump cannot be more that the maximum allowed pressure // to make sure the hardware (especially the ROF) is not damaged. If it is the case, we need to stop immediately @@ -340,10 +319,9 @@ F32 currentFlow = getMeasuredROFlowRate(); F32 targetFlow = getTargetROPumpFlowRate(); F32 error = fabs( 1.0 - ( currentFlow / targetFlow ) ); - BOOL isFlowOutOfRange = error > MAX_ALLOWED_FLOW_DEVIATION; // Figure out whether flow is out of range from which side - if ( isFlowOutOfRange ) + if ( error > MAX_ALLOWED_FLOW_DEVIATION ) { BOOL isFlowOutOfUpperRange = currentFlow > targetFlow; BOOL isFlowOutOfLowerRange = currentFlow < targetFlow; @@ -624,6 +602,25 @@ /*********************************************************************//** * @brief + * The setROPumpTargetDutyCycle function sets the duty cycle that the + * pump should run. + * @details Inputs: roPumpOpenLoopTargetDutyCycle, roPumpPWMDutyCyclePct, + * roPumpPWMDutyCyclePctSet, roPumpControlMode + * @details Outputs: roPumpOpenLoopTargetDutyCycle, roPumpPWMDutyCyclePct, + * roPumpPWMDutyCyclePctSet, roPumpControlMode + * @param: duty which is the duty cycle + * @return none + *************************************************************************/ +static void setROPumpTargetDutyCycle( F32 duty ) +{ + roPumpOpenLoopTargetDutyCycle = duty; + roPumpPWMDutyCyclePct = roPumpOpenLoopTargetDutyCycle; + roPumpDutyCyclePctSet = roPumpPWMDutyCyclePct; + roPumpControlMode = PUMP_CONTROL_MODE_OPEN_LOOP; +} + +/*********************************************************************//** + * @brief * The setROPumpControlSignalDutyCycle function sets the duty cycle for the * RO pump to a given duty cycle. * @details Inputs: none @@ -805,7 +802,7 @@ if ( TRUE == isTestingActivated() ) { // The flow rate and pressure must be in range - if ( flow < MAX_RO_FLOWRATE_LPM && flow >= MIN_RO_FLOWRATE_LPM ) + if ( flow <= MAX_RO_FLOWRATE_LPM && flow >= MIN_RO_FLOWRATE_LPM ) { result = setROPumpTargetFlowRate( flow, MAX_ALLOWED_PRESSURE_PSI ); } Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -133,6 +133,8 @@ #ifdef _VECTORCAST_ case DG_POST_DRAIN_PUMP: testStatus = execDrainPumpSelfTest(); + postState = handlePOSTStatus( testStatus ); + break; // To be able to run integration test in VectorCAST. // Not all the fans and thermistors have been implemented so POST might fail case DG_POST_STATE_THERMISTORS: Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -805,9 +805,7 @@ * The broadcastConductivityData function sends out conductivity data. * @details Inputs: none * @details Outputs: conductivity data message constructed and queued - * @param roRejectionRatio RO rejection ratio - * @param cpi water inlet conductivity data - * @param cpo water outlet conductivity data + * @param conductivityDataPtr which is the data msg constructed and queued * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastConductivityData( void * conductivityDataPtr ) @@ -833,7 +831,7 @@ * The broadcastUVReactorsData function sends out the UV reactors data. * @details Inputs: none * @details Outputs: UV reactors data msg constructed and queued - * @param UV reactors msg constructed and queued + * @param uvReactorsData which is UV reactors msg constructed and queued * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastUVReactorsData( UV_REACTORS_DATA_T *uvReactorsData ) @@ -1088,10 +1086,6 @@ * TEST SUPPORT FUNCTIONS *************************************************************************/ -/************************************************************************* - * TEST SUPPORT FUNCTIONS - *************************************************************************/ - #ifdef DEBUG_ENABLED /*********************************************************************//** * @brief @@ -1562,7 +1556,7 @@ /*********************************************************************//** * @brief - * The handleTestDrainPumpSetPointOverrideRequest function handles a request to + * The handleTestDrainPumpRPMOverrideRequest function handles a request to * override the drain pump speed set point (in RPM). * @details Inputs: none * @details Outputs: message handled @@ -1965,8 +1959,8 @@ /*********************************************************************//** * @brief -* The handleUVReactorsDataPunlishIntervalOverride function handles a request -* to override the publish interval of the UV reactors data +* The handleTestUVReactorsDataPublishIntervalOverride function handles a +* request to override the publish interval of the UV reactors data * @details Inputs: none * @details Outputs: message handled * @param message a pointer to the message to handle Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -122,7 +122,6 @@ // MSG_ID_DG_START_STOP_TRIMMER_HEATER_CMD void handleStartStopTrimmerHeaterCmd( MESSAGE_T *message ); - // MSG_ID_DG_UV_REACTORS_DATA BOOL broadcastUVReactorsData( UV_REACTORS_DATA_T *uvReactorsData ); Index: results/Build_Status_Report.csv =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -1,6 +1,6 @@ Running Project, dgfirmware -Date, Thu Dec 10 12:42:51 PST 2020 +Date, Thu Dec 10 14:54:14 PST 2020 VectorCAST Pass/Fail Status, Passed Index: results/VectorCAST.log =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- results/VectorCAST.log (.../VectorCAST.log) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -1,6 +1,6 @@ COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:42:52 +TIME: 2020-12-10 14:51:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG @@ -35,7 +35,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:42:55 +TIME: 2020-12-10 14:51:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -325,7 +325,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:42:56 +TIME: 2020-12-10 14:51:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -340,7 +340,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:42:57 +TIME: 2020-12-10 14:51:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -799,7 +799,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:43:00 +TIME: 2020-12-10 14:51:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/CCAST_.CFG @@ -834,7 +834,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:43:03 +TIME: 2020-12-10 14:51:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -976,7 +976,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:43:04 +TIME: 2020-12-10 14:51:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -991,7 +991,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:43:05 +TIME: 2020-12-10 14:51:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1203,7 +1203,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:43:07 +TIME: 2020-12-10 14:51:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG @@ -1239,7 +1239,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:43:10 +TIME: 2020-12-10 14:51:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1324,7 +1324,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:43:12 +TIME: 2020-12-10 14:51:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1339,7 +1339,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:43:13 +TIME: 2020-12-10 14:51:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1458,7 +1458,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:43:14 +TIME: 2020-12-10 14:51:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG @@ -1493,7 +1493,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:43:18 +TIME: 2020-12-10 14:51:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1644,7 +1644,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:43:20 +TIME: 2020-12-10 14:51:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1659,7 +1659,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:43:21 +TIME: 2020-12-10 14:51:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1875,7 +1875,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:43:22 +TIME: 2020-12-10 14:51:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG @@ -1910,7 +1910,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:43:26 +TIME: 2020-12-10 14:51:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2151,7 +2151,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:43:28 +TIME: 2020-12-10 14:51:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2166,7 +2166,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:43:28 +TIME: 2020-12-10 14:51:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2532,7 +2532,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:43:31 +TIME: 2020-12-10 14:51:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG @@ -2567,7 +2567,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:43:34 +TIME: 2020-12-10 14:52:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2832,7 +2832,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:43:36 +TIME: 2020-12-10 14:52:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2847,7 +2847,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:43:37 +TIME: 2020-12-10 14:52:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3268,7 +3268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:43:40 +TIME: 2020-12-10 14:52:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG @@ -3304,7 +3304,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:43:43 +TIME: 2020-12-10 14:52:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3370,7 +3370,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:43:44 +TIME: 2020-12-10 14:52:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3385,7 +3385,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:43:45 +TIME: 2020-12-10 14:52:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3466,7 +3466,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:43:46 +TIME: 2020-12-10 14:52:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG @@ -3496,13 +3496,3493 @@ Instrumenting file DrainPump Compiling file DrainPump Compiling file Data File Number 1 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-12-10 14:54:15 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env" + Initializing search list + Creating the Environment Directory + Creating Environment "ACCEL" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Accel + Unit 9 (stub-by-function): Accel + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file Accel + Compiling file Accel + Compiling file Data File Number 1 Linking Instrumented Harness Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-12-10 14:54:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 100 + Processing script line 250 + Processing script line 350 + Processing script line 400 + Processing script line 450 + Processing script line 500 + Processing script line 550 + Processing script line 700 + Processing script line 750 + Processing script line 800 + Processing script line 850 + Processing script line 900 + Processing script line 1000 + Processing script line 1050 + Processing script line 1150 + Processing script line 1200 + Processing script line 1300 + Processing script line 1350 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: calcVectorLength_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: calcVectorLength_NominalPath +(I) @LINE: 37 + >>> Processing Test Case: checkForShockError_BelowLimit +(S) @LINE: 45 + >>> Processed Test Case: checkForShockError_BelowLimit +(I) @LINE: 51 + >>> Processing Test Case: checkForShockError_XShock +(S) @LINE: 60 + >>> Processed Test Case: checkForShockError_XShock +(I) @LINE: 66 + >>> Processing Test Case: checkForShockError_YShock +(S) @LINE: 75 + >>> Processed Test Case: checkForShockError_YShock +(I) @LINE: 81 + >>> Processing Test Case: checkForShockError_ZShock +(S) @LINE: 90 + >>> Processed Test Case: checkForShockError_ZShock +(I) @LINE: 98 + >>> Processing Test Case: checkForTiltError_TiltBad_Alarm +(S) @LINE: 108 + >>> Processed Test Case: checkForTiltError_TiltBad_Alarm +(I) @LINE: 114 + >>> Processing Test Case: checkForTiltError_TiltBad_Alarm2 +(S) @LINE: 124 + >>> Processed Test Case: checkForTiltError_TiltBad_Alarm2 +(I) @LINE: 130 + >>> Processing Test Case: checkForTiltError_TiltBad_NoPersistence +(S) @LINE: 135 + >>> Processed Test Case: checkForTiltError_TiltBad_NoPersistence +(I) @LINE: 141 + >>> Processing Test Case: checkForTiltError_TiltOk +(S) @LINE: 146 + >>> Processed Test Case: checkForTiltError_TiltOk +(I) @LINE: 152 + >>> Processing Test Case: checkForTiltError_TiltOk2 +(S) @LINE: 157 + >>> Processed Test Case: checkForTiltError_TiltOk2 +(I) @LINE: 163 + >>> Processing Test Case: checkForTiltError_TiltOk_ClearAlarm +(S) @LINE: 169 + >>> Processed Test Case: checkForTiltError_TiltOk_ClearAlarm +(I) @LINE: 175 + >>> Processing Test Case: checkForTiltError_TiltOk_ClearAlarm2 +(S) @LINE: 181 + >>> Processed Test Case: checkForTiltError_TiltOk_ClearAlarm2 +(I) @LINE: 189 + >>> Processing Test Case: execAccel_InvalidState +(S) @LINE: 198 + >>> Processed Test Case: execAccel_InvalidState +(I) @LINE: 204 + >>> Processing Test Case: execAccel_MonitorState +(S) @LINE: 239 + >>> Processed Test Case: execAccel_MonitorState +(I) @LINE: 245 + >>> Processing Test Case: execAccel_Start +(S) @LINE: 250 + >>> Processed Test Case: execAccel_Start +(I) @LINE: 258 + >>> Processing Test Case: execAccelTest_CompleteState +(S) @LINE: 266 + >>> Processed Test Case: execAccelTest_CompleteState +(I) @LINE: 272 + >>> Processing Test Case: execAccelTest_Fail +(S) @LINE: 282 + >>> Processed Test Case: execAccelTest_Fail +(I) @LINE: 288 + >>> Processing Test Case: execAccelTest_Fail2 +(S) @LINE: 298 + >>> Processed Test Case: execAccelTest_Fail2 +(I) @LINE: 304 + >>> Processing Test Case: execAccelTest_InvalidState +(S) @LINE: 312 + >>> Processed Test Case: execAccelTest_InvalidState +(I) @LINE: 318 + >>> Processing Test Case: execAccelTest_Pass +(S) @LINE: 325 + >>> Processed Test Case: execAccelTest_Pass +(I) @LINE: 331 + >>> Processing Test Case: execAccelTest_Pass2 +(S) @LINE: 338 + >>> Processed Test Case: execAccelTest_Pass2 +(I) @LINE: 344 + >>> Processing Test Case: execAccelTest_Start +(S) @LINE: 356 + >>> Processed Test Case: execAccelTest_Start +(I) @LINE: 362 + >>> Processing Test Case: execAccelTest_Start_NoCalibration +(S) @LINE: 370 + >>> Processed Test Case: execAccelTest_Start_NoCalibration +(I) @LINE: 378 + >>> Processing Test Case: filterAccelReadings_Full +(S) @LINE: 428 + >>> Processed Test Case: filterAccelReadings_Full +(I) @LINE: 434 + >>> Processing Test Case: filterAccelReadings_NominalPath +(S) @LINE: 484 + >>> Processed Test Case: filterAccelReadings_NominalPath +(I) @LINE: 490 + >>> Processing Test Case: filterAccelReadings_Over1g +(S) @LINE: 537 + >>> Processed Test Case: filterAccelReadings_Over1g +(I) @LINE: 543 + >>> Processing Test Case: filterAccelReadings_Wrap +(S) @LINE: 595 + >>> Processed Test Case: filterAccelReadings_Wrap +(I) @LINE: 603 + >>> Processing Test Case: getAccelCalibration_NominalPath +(S) @LINE: 616 + >>> Processed Test Case: getAccelCalibration_NominalPath +(I) @LINE: 624 + >>> Processing Test Case: getMaxAccelAxis_InvalidAxis +(S) @LINE: 632 + >>> Processed Test Case: getMaxAccelAxis_InvalidAxis +(I) @LINE: 638 + >>> Processing Test Case: getMaxAccelAxis_NominalPath +(S) @LINE: 645 + >>> Processed Test Case: getMaxAccelAxis_NominalPath +(I) @LINE: 651 + >>> Processing Test Case: getMaxAccelAxis_Override +(S) @LINE: 658 + >>> Processed Test Case: getMaxAccelAxis_Override +(I) @LINE: 666 + >>> Processing Test Case: getMeasuredAccelAxis_InvalidAxis +(S) @LINE: 674 + >>> Processed Test Case: getMeasuredAccelAxis_InvalidAxis +(I) @LINE: 680 + >>> Processing Test Case: getMeasuredAccelAxis_NominalPath +(S) @LINE: 687 + >>> Processed Test Case: getMeasuredAccelAxis_NominalPath +(I) @LINE: 693 + >>> Processing Test Case: getMeasuredAccelAxis_Override +(S) @LINE: 700 + >>> Processed Test Case: getMeasuredAccelAxis_Override +(I) @LINE: 708 + >>> Processing Test Case: getPublishAccelDataInterval_NominalPath +(S) @LINE: 714 + >>> Processed Test Case: getPublishAccelDataInterval_NominalPath +(I) @LINE: 720 + >>> Processing Test Case: getPublishAccelDataInterval_Override +(S) @LINE: 726 + >>> Processed Test Case: getPublishAccelDataInterval_Override +(I) @LINE: 734 + >>> Processing Test Case: handleAccelMonitorState_Error +(S) @LINE: 784 + >>> Processed Test Case: handleAccelMonitorState_Error +(I) @LINE: 790 + >>> Processing Test Case: handleAccelMonitorState_NoNewData +(S) @LINE: 836 + >>> Processed Test Case: handleAccelMonitorState_NoNewData +(I) @LINE: 842 + >>> Processing Test Case: handleAccelMonitorState_NoNewData_Alarm +(S) @LINE: 891 + >>> Processed Test Case: handleAccelMonitorState_NoNewData_Alarm +(I) @LINE: 897 + >>> Processing Test Case: handleAccelMonitorState_NominalPath +(S) @LINE: 943 + >>> Processed Test Case: handleAccelMonitorState_NominalPath +(I) @LINE: 951 + >>> Processing Test Case: initAccel_NominalPath +(S) @LINE: 1022 + >>> Processed Test Case: initAccel_NominalPath +(I) @LINE: 1030 + >>> Processing Test Case: publishAccelData_NotTimeToPublish +(S) @LINE: 1037 + >>> Processed Test Case: publishAccelData_NotTimeToPublish +(I) @LINE: 1043 + >>> Processing Test Case: publishAccelData_TimeToPublish +(S) @LINE: 1074 + >>> Processed Test Case: publishAccelData_TimeToPublish +(I) @LINE: 1082 + >>> Processing Test Case: setAccelCalibration_NominalPath +(S) @LINE: 1095 + >>> Processed Test Case: setAccelCalibration_NominalPath +(I) @LINE: 1101 + >>> Processing Test Case: setAccelCalibration_NotLoggedIn +(S) @LINE: 1107 + >>> Processed Test Case: setAccelCalibration_NotLoggedIn +(I) @LINE: 1115 + >>> Processing Test Case: testResetAccelAxisOverride_InvalidAxis +(S) @LINE: 1118 + >>> Processed Test Case: testResetAccelAxisOverride_InvalidAxis +(I) @LINE: 1124 + >>> Processing Test Case: testResetAccelAxisOverride_NotLoggedIn +(S) @LINE: 1136 + >>> Processed Test Case: testResetAccelAxisOverride_NotLoggedIn +(I) @LINE: 1142 + >>> Processing Test Case: testResetAccelAxisOverride_Reset +(S) @LINE: 1154 + >>> Processed Test Case: testResetAccelAxisOverride_Reset +(I) @LINE: 1162 + >>> Processing Test Case: testResetAccelDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 1173 + >>> Processed Test Case: testResetAccelDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 1179 + >>> Processing Test Case: testResetAccelDataPublishIntervalOverride_Reset +(S) @LINE: 1190 + >>> Processed Test Case: testResetAccelDataPublishIntervalOverride_Reset +(I) @LINE: 1198 + >>> Processing Test Case: testResetAccelMaxOverride_InvalidAxis +(S) @LINE: 1201 + >>> Processed Test Case: testResetAccelMaxOverride_InvalidAxis +(I) @LINE: 1207 + >>> Processing Test Case: testResetAccelMaxOverride_NotLoggedIn +(S) @LINE: 1219 + >>> Processed Test Case: testResetAccelMaxOverride_NotLoggedIn +(I) @LINE: 1225 + >>> Processing Test Case: testResetAccelMaxOverride_Reset +(S) @LINE: 1237 + >>> Processed Test Case: testResetAccelMaxOverride_Reset +(I) @LINE: 1245 + >>> Processing Test Case: testSetAccelAxisOverride_InvalidAxis +(S) @LINE: 1249 + >>> Processed Test Case: testSetAccelAxisOverride_InvalidAxis +(I) @LINE: 1255 + >>> Processing Test Case: testSetAccelAxisOverride_NotLoggedIn +(S) @LINE: 1268 + >>> Processed Test Case: testSetAccelAxisOverride_NotLoggedIn +(I) @LINE: 1274 + >>> Processing Test Case: testSetAccelAxisOverride_Override +(S) @LINE: 1287 + >>> Processed Test Case: testSetAccelAxisOverride_Override +(I) @LINE: 1295 + >>> Processing Test Case: testSetAccelDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 1307 + >>> Processed Test Case: testSetAccelDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 1313 + >>> Processing Test Case: testSetAccelDataPublishIntervalOverride_Override +(S) @LINE: 1325 + >>> Processed Test Case: testSetAccelDataPublishIntervalOverride_Override +(I) @LINE: 1333 + >>> Processing Test Case: testSetAccelMaxOverride_InvalidAxis +(S) @LINE: 1337 + >>> Processed Test Case: testSetAccelMaxOverride_InvalidAxis +(I) @LINE: 1343 + >>> Processing Test Case: testSetAccelMaxOverride_NotLoggedIn +(S) @LINE: 1355 + >>> Processed Test Case: testSetAccelMaxOverride_NotLoggedIn +(I) @LINE: 1361 + >>> Processing Test Case: testSetAccelMaxOverride_Override +(S) @LINE: 1374 + >>> Processed Test Case: testSetAccelMaxOverride_Override +(S) @LINE: 1374 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-12-10 14:54:20 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-12-10 14:54:20 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Accel.initAccel test cases + Running: initAccel_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.execAccel test cases + Running: execAccel_InvalidState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccel_MonitorState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccel_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.handleAccelMonitorState test cases + Running: handleAccelMonitorState_Error + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NoNewData + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NoNewData_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getPublishAccelDataInterval test cases + Running: getPublishAccelDataInterval_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getPublishAccelDataInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getMeasuredAccelAxis test cases + Running: getMeasuredAccelAxis_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredAccelAxis_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredAccelAxis_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getMaxAccelAxis test cases + Running: getMaxAccelAxis_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMaxAccelAxis_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMaxAccelAxis_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.publishAccelData test cases + Running: publishAccelData_NotTimeToPublish + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: publishAccelData_TimeToPublish + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.filterAccelReadings test cases + Running: filterAccelReadings_Full + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_Over1g + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_Wrap + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.calcVectorLength test cases + Running: calcVectorLength_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.checkForTiltError test cases + Running: checkForTiltError_TiltBad_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltBad_Alarm2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltBad_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk_ClearAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk_ClearAlarm2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.checkForShockError test cases + Running: checkForShockError_BelowLimit + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_XShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_YShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_ZShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.execAccelTest test cases + Running: execAccelTest_CompleteState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Fail + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Fail2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_InvalidState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Pass + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Pass2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Start_NoCalibration + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.setAccelCalibration test cases + Running: setAccelCalibration_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setAccelCalibration_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getAccelCalibration test cases + Running: getAccelCalibration_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelDataPublishIntervalOverride test cases + Running: testSetAccelDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelDataPublishIntervalOverride test cases + Running: testResetAccelDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelAxisOverride test cases + Running: testSetAccelAxisOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelAxisOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelAxisOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelAxisOverride test cases + Running: testResetAccelAxisOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelAxisOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelAxisOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelMaxOverride test cases + Running: testSetAccelMaxOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelMaxOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelMaxOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelMaxOverride test cases + Running: testResetAccelMaxOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelMaxOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelMaxOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 +TIME: 2020-12-10 14:54:22 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env" + Initializing search list + Creating the Environment Directory + Creating Environment "ALARMMGMT" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing AlarmMgmt + Unit 9 (tdd-sbf-source): AlarmMgmt + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file AlarmMgmt + Compiling file AlarmMgmt + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 +TIME: 2020-12-10 14:54:25 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Processing script line 100 + Processing script line 250 + Processing script line 300 + Processing script line 350 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: activateAlarm_AlreadyActive +(S) @LINE: 29 + >>> Processed Test Case: activateAlarm_AlreadyActive +(I) @LINE: 35 + >>> Processing Test Case: activateAlarm_InvalidAlarm +(S) @LINE: 39 + >>> Processed Test Case: activateAlarm_InvalidAlarm +(I) @LINE: 45 + >>> Processing Test Case: activateAlarm_NoAlarm +(S) @LINE: 49 + >>> Processed Test Case: activateAlarm_NoAlarm +(I) @LINE: 55 + >>> Processing Test Case: activateAlarm_NotAFault +(S) @LINE: 59 + >>> Processed Test Case: activateAlarm_NotAFault +(I) @LINE: 67 + >>> Processing Test Case: activateAlarm1Data_AlreadyActive +(S) @LINE: 73 + >>> Processed Test Case: activateAlarm1Data_AlreadyActive +(I) @LINE: 79 + >>> Processing Test Case: activateAlarm1Data_NominalPath +(S) @LINE: 89 + >>> Processed Test Case: activateAlarm1Data_NominalPath +(I) @LINE: 97 + >>> Processing Test Case: activateAlarm2Data_AlreadyActive +(S) @LINE: 105 + >>> Processed Test Case: activateAlarm2Data_AlreadyActive +(I) @LINE: 111 + >>> Processing Test Case: activateAlarm2Data_NominalPath +(S) @LINE: 124 + >>> Processed Test Case: activateAlarm2Data_NominalPath +(I) @LINE: 132 + >>> Processing Test Case: activateAlarmNoData_AlreadyActive +(S) @LINE: 136 + >>> Processed Test Case: activateAlarmNoData_AlreadyActive +(I) @LINE: 142 + >>> Processing Test Case: activateAlarmNoData_NominalPath +(S) @LINE: 149 + >>> Processed Test Case: activateAlarmNoData_NominalPath +(I) @LINE: 157 + >>> Processing Test Case: clearAlarm_InvalidAlarm +(S) @LINE: 161 + >>> Processed Test Case: clearAlarm_InvalidAlarm +(I) @LINE: 167 + >>> Processing Test Case: clearAlarm_NoAlarm +(S) @LINE: 171 + >>> Processed Test Case: clearAlarm_NoAlarm +(I) @LINE: 177 + >>> Processing Test Case: clearAlarm_NominalPath +(I) @LINE: 182 + >>> 'ALARM_ID_BLOOD_PUMP_MC_CURRENT_CHECK' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 183 + >>> Processed Test Case: clearAlarm_NominalPath +(I) @LINE: 189 + >>> Processing Test Case: clearAlarm_NotActive +(S) @LINE: 193 + >>> Processed Test Case: clearAlarm_NotActive +(I) @LINE: 201 + >>> Processing Test Case: execAlarmMgmt_NominalPath +(S) @LINE: 202 + >>> Processed Test Case: execAlarmMgmt_NominalPath +(I) @LINE: 210 + >>> Processing Test Case: getAlarmActive_InvalidAlarm +(S) @LINE: 214 + >>> Processed Test Case: getAlarmActive_InvalidAlarm +(I) @LINE: 220 + >>> Processing Test Case: getAlarmActive_NominalPath +(S) @LINE: 226 + >>> Processed Test Case: getAlarmActive_NominalPath +(I) @LINE: 232 + >>> Processing Test Case: getAlarmActive_Override +(S) @LINE: 238 + >>> Processed Test Case: getAlarmActive_Override +(I) @LINE: 246 + >>> Processing Test Case: initAlarmMgmt_NominalPath +(S) @LINE: 265 + >>> Processed Test Case: initAlarmMgmt_NominalPath +(I) @LINE: 273 + >>> Processing Test Case: isAlarmActive_NominalPath +(S) @LINE: 277 + >>> Processed Test Case: isAlarmActive_NominalPath +(I) @LINE: 285 + >>> Processing Test Case: testResetAlarmStateOverride_InvalidAlarm +(S) @LINE: 288 + >>> Processed Test Case: testResetAlarmStateOverride_InvalidAlarm +(I) @LINE: 294 + >>> Processing Test Case: testResetAlarmStateOverride_NominalPath +(S) @LINE: 300 + >>> Processed Test Case: testResetAlarmStateOverride_NominalPath +(I) @LINE: 306 + >>> Processing Test Case: testResetAlarmStateOverride_NotLoggedIn +(S) @LINE: 312 + >>> Processed Test Case: testResetAlarmStateOverride_NotLoggedIn +(I) @LINE: 320 + >>> Processing Test Case: testSetAlarmStateOverride_ActivateAlarm +(S) @LINE: 327 + >>> Processed Test Case: testSetAlarmStateOverride_ActivateAlarm +(I) @LINE: 333 + >>> Processing Test Case: testSetAlarmStateOverride_ClearAlarm +(S) @LINE: 340 + >>> Processed Test Case: testSetAlarmStateOverride_ClearAlarm +(I) @LINE: 346 + >>> Processing Test Case: testSetAlarmStateOverride_InvalidAlarm +(S) @LINE: 352 + >>> Processed Test Case: testSetAlarmStateOverride_InvalidAlarm +(I) @LINE: 358 + >>> Processing Test Case: testSetAlarmStateOverride_NotLoggedIn +(S) @LINE: 365 + >>> Processed Test Case: testSetAlarmStateOverride_NotLoggedIn +(S) @LINE: 365 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 +TIME: 2020-12-10 14:54:26 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all AlarmMgmt.initAlarmMgmt test cases + Running: initAlarmMgmt_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.execAlarmMgmt test cases + Running: execAlarmMgmt_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.activateAlarm test cases + Running: activateAlarm_AlreadyActive + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarm_InvalidAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarm_NoAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarm_NotAFault + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.activateAlarmNoData test cases + Running: activateAlarmNoData_AlreadyActive + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarmNoData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.activateAlarm1Data test cases + Running: activateAlarm1Data_AlreadyActive + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarm1Data_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.activateAlarm2Data test cases + Running: activateAlarm2Data_AlreadyActive + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: activateAlarm2Data_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.clearAlarm test cases + Running: clearAlarm_InvalidAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: clearAlarm_NoAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: clearAlarm_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: clearAlarm_NotActive + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.isAlarmActive test cases + Running: isAlarmActive_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.getAlarmActive test cases + Running: getAlarmActive_InvalidAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getAlarmActive_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getAlarmActive_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.testSetAlarmStateOverride test cases + Running: testSetAlarmStateOverride_ActivateAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAlarmStateOverride_ClearAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAlarmStateOverride_InvalidAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAlarmStateOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all AlarmMgmt.testResetAlarmStateOverride test cases + Running: testResetAlarmStateOverride_InvalidAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAlarmStateOverride_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAlarmStateOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 +TIME: 2020-12-10 14:54:27 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env" + Initializing search list + Creating the Environment Directory + Creating Environment "COMM" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Comm + Unit 9 (tdd-sbf-source): Comm + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Inserting Environment User Code + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file Comm + Compiling file Comm + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 +TIME: 2020-12-10 14:54:30 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: clearSCI2CommErrors_NominalPath +(S) @LINE: 28 + >>> Processed Test Case: clearSCI2CommErrors_NominalPath +(I) @LINE: 36 + >>> Processing Test Case: clearSCI2DMAReceiveInterrupt +(S) @LINE: 40 + >>> Processed Test Case: clearSCI2DMAReceiveInterrupt +(I) @LINE: 48 + >>> Processing Test Case: clearSCI2DMATransmitInterrupt +(S) @LINE: 52 + >>> Processed Test Case: clearSCI2DMATransmitInterrupt +(I) @LINE: 60 + >>> Processing Test Case: isCAN1TransmitInProgress_Ch1_8_Busy +(S) @LINE: 65 + >>> Processed Test Case: isCAN1TransmitInProgress_Ch1_8_Busy +(I) @LINE: 71 + >>> Processing Test Case: isCAN1TransmitInProgress_Ch9_16_Busy +(S) @LINE: 76 + >>> Processed Test Case: isCAN1TransmitInProgress_Ch9_16_Busy +(I) @LINE: 82 + >>> Processing Test Case: isCAN1TransmitInProgress_InProgress +(S) @LINE: 87 + >>> Processed Test Case: isCAN1TransmitInProgress_InProgress +(I) @LINE: 93 + >>> Processing Test Case: isCAN1TransmitInProgress_NotBusy +(S) @LINE: 97 + >>> Processed Test Case: isCAN1TransmitInProgress_NotBusy +(I) @LINE: 105 + >>> Processing Test Case: isSCI2DMATransmitInProgress_DMABusy +(S) @LINE: 111 + >>> Processed Test Case: isSCI2DMATransmitInProgress_DMABusy +(I) @LINE: 117 + >>> Processing Test Case: isSCI2DMATransmitInProgress_NotBusy +(S) @LINE: 123 + >>> Processed Test Case: isSCI2DMATransmitInProgress_NotBusy +(I) @LINE: 129 + >>> Processing Test Case: isSCI2DMATransmitInProgress_TransmitterBusy +(S) @LINE: 135 + >>> Processed Test Case: isSCI2DMATransmitInProgress_TransmitterBusy +(I) @LINE: 143 + >>> Processing Test Case: setSCI2DMAReceiveInterrupt +(S) @LINE: 147 + >>> Processed Test Case: setSCI2DMAReceiveInterrupt +(I) @LINE: 155 + >>> Processing Test Case: setSCI2DMATransmitInterrupt +(S) @LINE: 160 + >>> Processed Test Case: setSCI2DMATransmitInterrupt +(I) @LINE: 168 + >>> Processing Test Case: signalCANXmitsCompleted_NominalPath +(S) @LINE: 171 + >>> Processed Test Case: signalCANXmitsCompleted_NominalPath +(I) @LINE: 179 + >>> Processing Test Case: signalCANXmitsInitiated_NominalPath +(S) @LINE: 182 + >>> Processed Test Case: signalCANXmitsInitiated_NominalPath +(S) @LINE: 182 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 +TIME: 2020-12-10 14:54:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 +TIME: 2020-12-10 14:54:32 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Comm.signalCANXmitsInitiated test cases + Running: signalCANXmitsInitiated_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.signalCANXmitsCompleted test cases + Running: signalCANXmitsCompleted_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.isCAN1TransmitInProgress test cases + Running: isCAN1TransmitInProgress_Ch1_8_Busy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: isCAN1TransmitInProgress_Ch9_16_Busy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: isCAN1TransmitInProgress_InProgress + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: isCAN1TransmitInProgress_NotBusy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.setSCI2DMAReceiveInterrupt test cases + Running: setSCI2DMAReceiveInterrupt + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.setSCI2DMATransmitInterrupt test cases + Running: setSCI2DMATransmitInterrupt + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.clearSCI2DMAReceiveInterrupt test cases + Running: clearSCI2DMAReceiveInterrupt + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.clearSCI2DMATransmitInterrupt test cases + Running: clearSCI2DMATransmitInterrupt + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.clearSCI2CommErrors test cases + Running: clearSCI2CommErrors_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.isSCI2DMATransmitInProgress test cases + Running: isSCI2DMATransmitInProgress_DMABusy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: isSCI2DMATransmitInProgress_NotBusy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: isSCI2DMATransmitInProgress_TransmitterBusy + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-12-10 14:54:34 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "COMMBUFFERS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing CommBuffers + Unit 9 (tdd-sbf-source): CommBuffers + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file CommBuffers + Compiling file CommBuffers + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-12-10 14:54:36 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 100 + Processing script line 200 + Processing script line 250 + Processing script line 300 + Processing script line 350 + Processing script line 400 + Processing script line 450 + Processing script line 550 + Processing script line 600 + Processing script line 700 + Processing script line 750 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: InsufficientSpaceForAdd +(S) @LINE: 31 + >>> Processed Test Case: InsufficientSpaceForAdd +(I) @LINE: 37 + >>> Processing Test Case: InsufficientSpaceForAdd_NotFirstTime_NotPersisted +(S) @LINE: 47 + >>> Processed Test Case: InsufficientSpaceForAdd_NotFirstTime_NotPersisted +(I) @LINE: 53 + >>> Processing Test Case: InsufficientSpaceForAdd_NotFirstTime_Persisted_Alarm +(S) @LINE: 69 + >>> Processed Test Case: InsufficientSpaceForAdd_NotFirstTime_Persisted_Alarm +(I) @LINE: 75 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 79 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 85 + >>> Processing Test Case: SuccessfulAdd +(S) @LINE: 148 + >>> Processed Test Case: SuccessfulAdd +(I) @LINE: 154 + >>> Processing Test Case: SuccessfulAdd_ClearLastOverflow +(S) @LINE: 221 + >>> Processed Test Case: SuccessfulAdd_ClearLastOverflow +(I) @LINE: 227 + >>> Processing Test Case: SuccessfulAdd_NoClearLastOverflow +(S) @LINE: 294 + >>> Processed Test Case: SuccessfulAdd_NoClearLastOverflow +(I) @LINE: 300 + >>> Processing Test Case: TransmitDisabled +(S) @LINE: 307 + >>> Processed Test Case: TransmitDisabled +(I) @LINE: 313 + >>> Processing Test Case: TransmitDisabled_ReceivedData +(S) @LINE: 379 + >>> Processed Test Case: TransmitDisabled_ReceivedData +(I) @LINE: 387 + >>> Processing Test Case: clearBuffer_InvalidBuffer +(S) @LINE: 393 + >>> Processed Test Case: clearBuffer_InvalidBuffer +(I) @LINE: 399 + >>> Processing Test Case: clearBuffer_NominalPath +(S) @LINE: 427 + >>> Processed Test Case: clearBuffer_NominalPath +(I) @LINE: 435 + >>> Processing Test Case: ConsumeAllDataInInactiveBuffer +(S) @LINE: 454 + >>> Processed Test Case: ConsumeAllDataInInactiveBuffer +(I) @LINE: 460 + >>> Processing Test Case: ConsumePortionOfDataInInactiveBuffer +(S) @LINE: 484 + >>> Processed Test Case: ConsumePortionOfDataInInactiveBuffer +(I) @LINE: 492 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 496 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 502 + >>> Processing Test Case: LengthLargerThanBuffer +(S) @LINE: 512 + >>> Processed Test Case: LengthLargerThanBuffer +(I) @LINE: 518 + >>> Processing Test Case: LengthLargerThanContents +(S) @LINE: 528 + >>> Processed Test Case: LengthLargerThanContents +(I) @LINE: 534 + >>> Processing Test Case: SuccessfulGetFromBothBuffers +(S) @LINE: 559 + >>> Processed Test Case: SuccessfulGetFromBothBuffers +(I) @LINE: 565 + >>> Processing Test Case: SuccessfulGetFromInactiveBufferOnly +(S) @LINE: 591 + >>> Processed Test Case: SuccessfulGetFromInactiveBufferOnly +(I) @LINE: 599 + >>> Processing Test Case: initCommBuffers_NominalPath +(S) @LINE: 604 + >>> Processed Test Case: initCommBuffers_NominalPath +(I) @LINE: 612 + >>> Processing Test Case: numberOfBytesInCommBuffer_InvalidBuffer +(S) @LINE: 615 + >>> Processed Test Case: numberOfBytesInCommBuffer_InvalidBuffer +(I) @LINE: 621 + >>> Processing Test Case: numberOfBytesInCommBuffer_NominalPath +(S) @LINE: 628 + >>> Processed Test Case: numberOfBytesInCommBuffer_NominalPath +(I) @LINE: 636 + >>> Processing Test Case: LengthLargerThanBuffer +(S) @LINE: 646 + >>> Processed Test Case: LengthLargerThanBuffer +(I) @LINE: 652 + >>> Processing Test Case: LengthLargerThanContents +(S) @LINE: 662 + >>> Processed Test Case: LengthLargerThanContents +(I) @LINE: 668 + >>> Processing Test Case: SuccessfulPeekFromBothBuffers +(S) @LINE: 701 + >>> Processed Test Case: SuccessfulPeekFromBothBuffers +(I) @LINE: 707 + >>> Processing Test Case: SuccessfulPeekFromInactiveBufferOnly +(S) @LINE: 740 + >>> Processed Test Case: SuccessfulPeekFromInactiveBufferOnly +(I) @LINE: 746 + >>> Processing Test Case: peekFromCommBuffer_InvalidBuffer +(S) @LINE: 750 + >>> Processed Test Case: peekFromCommBuffer_InvalidBuffer +(I) @LINE: 758 + >>> Processing Test Case: switchDoubleBuffer_Switch0To1 +(S) @LINE: 763 + >>> Processed Test Case: switchDoubleBuffer_Switch0To1 +(I) @LINE: 769 + >>> Processing Test Case: switchDoubleBuffer_Switch1To0 +(S) @LINE: 774 + >>> Processed Test Case: switchDoubleBuffer_Switch1To0 +(S) @LINE: 774 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-12-10 14:54:38 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-12-10 14:54:39 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all CommBuffers.initCommBuffers test cases + Running: initCommBuffers_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.clearBuffer test cases + Running: clearBuffer_InvalidBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: clearBuffer_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.addToCommBuffer test cases + Running: InsufficientSpaceForAdd + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: InsufficientSpaceForAdd_NotFirstTime_NotPersisted + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: InsufficientSpaceForAdd_NotFirstTime_Persisted_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: InvalidBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulAdd + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulAdd_ClearLastOverflow + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulAdd_NoClearLastOverflow + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: TransmitDisabled + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: TransmitDisabled_ReceivedData + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.getFromCommBuffer test cases + Running: InvalidBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: LengthLargerThanBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: LengthLargerThanContents + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulGetFromBothBuffers + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulGetFromInactiveBufferOnly + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.peekFromCommBuffer test cases + Running: LengthLargerThanBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: LengthLargerThanContents + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulPeekFromBothBuffers + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: SuccessfulPeekFromInactiveBufferOnly + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: peekFromCommBuffer_InvalidBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.numberOfBytesInCommBuffer test cases + Running: numberOfBytesInCommBuffer_InvalidBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: numberOfBytesInCommBuffer_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.switchDoubleBuffer test cases + Running: switchDoubleBuffer_Switch0To1 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: switchDoubleBuffer_Switch1To0 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CommBuffers.getDataFromInactiveBuffer test cases + Running: ConsumeAllDataInInactiveBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: ConsumePortionOfDataInInactiveBuffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-12-10 14:54:40 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "CONCENTRATEPUMPS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing ConcentratePumps + Unit 9 (stub-by-function): ConcentratePumps + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file ConcentratePumps + Compiling file ConcentratePumps + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-12-10 14:54:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Processing script line 100 + Processing script line 150 + Processing script line 350 + Processing script line 400 + Processing script line 450 + Processing script line 500 + Processing script line 550 + Processing script line 600 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: calcMeasuredPumpsSpeed_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: calcMeasuredPumpsSpeed_NominalPath +(I) @LINE: 35 + >>> Processing Test Case: calcMeasuredPumpsSpeed_Zero_Flow_rate +(S) @LINE: 40 + >>> Processed Test Case: calcMeasuredPumpsSpeed_Zero_Flow_rate +(I) @LINE: 48 + >>> Processing Test Case: execConcentratePumpController_Fault +(S) @LINE: 55 + >>> Processed Test Case: execConcentratePumpController_Fault +(I) @LINE: 61 + >>> Processing Test Case: execConcentratePumpController_OffState +(S) @LINE: 67 + >>> Processed Test Case: execConcentratePumpController_OffState +(I) @LINE: 73 + >>> Processing Test Case: execConcentratePumpController_OnState +(S) @LINE: 82 + >>> Processed Test Case: execConcentratePumpController_OnState +(I) @LINE: 90 + >>> Processing Test Case: execConcentratePumpMonitor_Broadcast +(S) @LINE: 104 + >>> Processed Test Case: execConcentratePumpMonitor_Broadcast +(I) @LINE: 110 + >>> Processing Test Case: execConcentratePumpMonitor_NominalPath +(S) @LINE: 113 + >>> Processed Test Case: execConcentratePumpMonitor_NominalPath +(I) @LINE: 119 + >>> Processing Test Case: execConcentratePumpMonitor_Speed_Control_Error +(S) @LINE: 133 + >>> Processed Test Case: execConcentratePumpMonitor_Speed_Control_Error +(I) @LINE: 141 + >>> Processing Test Case: getMeasuredPumpSpeed_InvalidPumpId +(S) @LINE: 144 + >>> Processed Test Case: getMeasuredPumpSpeed_InvalidPumpId +(I) @LINE: 150 + >>> Processing Test Case: getMeasuredPumpSpeed_NominalPath +(S) @LINE: 156 + >>> Processed Test Case: getMeasuredPumpSpeed_NominalPath +(I) @LINE: 162 + >>> Processing Test Case: getMeasuredPumpSpeed_Override +(S) @LINE: 168 + >>> Processed Test Case: getMeasuredPumpSpeed_Override +(I) @LINE: 176 + >>> Processing Test Case: getPublishConcentratePumpDataInterval_NoOverride +(S) @LINE: 182 + >>> Processed Test Case: getPublishConcentratePumpDataInterval_NoOverride +(I) @LINE: 188 + >>> Processing Test Case: getPublishConcentratePumpDataInterval_Override +(S) @LINE: 194 + >>> Processed Test Case: getPublishConcentratePumpDataInterval_Override +(I) @LINE: 202 + >>> Processing Test Case: handleConcentratePumpOffState_NominalPath +(S) @LINE: 208 + >>> Processed Test Case: handleConcentratePumpOffState_NominalPath +(I) @LINE: 214 + >>> Processing Test Case: handleConcentratePumpOffState_On_Request +(S) @LINE: 222 + >>> Processed Test Case: handleConcentratePumpOffState_On_Request +(I) @LINE: 230 + >>> Processing Test Case: handleConcentratePumpOnState_ControlPumps +(S) @LINE: 245 + >>> Processed Test Case: handleConcentratePumpOnState_ControlPumps +(I) @LINE: 251 + >>> Processing Test Case: handleConcentratePumpOnState_Off_Request +(S) @LINE: 259 + >>> Processed Test Case: handleConcentratePumpOnState_Off_Request +(I) @LINE: 267 + >>> Processing Test Case: initConcentratePump_NominalPath +(S) @LINE: 294 + >>> Processed Test Case: initConcentratePump_NominalPath +(I) @LINE: 302 + >>> Processing Test Case: requestConcentratePumpOff_Invalid_PumpId +(I) @LINE: 306 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 307 + >>> Processed Test Case: requestConcentratePumpOff_Invalid_PumpId +(I) @LINE: 313 + >>> Processing Test Case: requestConcentratePumpOff_NominalPath +(S) @LINE: 317 + >>> Processed Test Case: requestConcentratePumpOff_NominalPath +(I) @LINE: 325 + >>> Processing Test Case: requestConcentratePumpOn_Invalid_PumpId +(I) @LINE: 331 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 332 + >>> Processed Test Case: requestConcentratePumpOn_Invalid_PumpId +(I) @LINE: 338 + >>> Processing Test Case: requestConcentratePumpOn_NominalPath +(S) @LINE: 342 + >>> Processed Test Case: requestConcentratePumpOn_NominalPath +(I) @LINE: 350 + >>> Processing Test Case: setConcentratePumpSpeed_Greater_Than_Max +(I) @LINE: 354 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_SPEED_OUT_OF_RANGE' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 356 + >>> Processed Test Case: setConcentratePumpSpeed_Greater_Than_Max +(I) @LINE: 362 + >>> Processing Test Case: setConcentratePumpSpeed_Invalid_Pump +(I) @LINE: 366 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. +(I) @LINE: 367 + >>> 'NUM_OF_CONCENTRATE_PUMPS' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 368 + >>> Processed Test Case: setConcentratePumpSpeed_Invalid_Pump +(I) @LINE: 374 + >>> Processing Test Case: setConcentratePumpSpeed_Less_Than_Min +(I) @LINE: 378 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_SPEED_OUT_OF_RANGE' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 380 + >>> Processed Test Case: setConcentratePumpSpeed_Less_Than_Min +(I) @LINE: 386 + >>> Processing Test Case: setConcentratePumpSpeed_Reverse_Speed +(S) @LINE: 393 + >>> Processed Test Case: setConcentratePumpSpeed_Reverse_Speed +(I) @LINE: 399 + >>> Processing Test Case: setConcentratePumpSpeed_Valid_Pump_And_Speed +(S) @LINE: 406 + >>> Processed Test Case: setConcentratePumpSpeed_Valid_Pump_And_Speed +(I) @LINE: 414 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Equal_Current +(S) @LINE: 419 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Equal_Current +(I) @LINE: 425 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Greater_Than_Current +(S) @LINE: 430 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Greater_Than_Current +(I) @LINE: 436 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Current +(S) @LINE: 441 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Current +(I) @LINE: 447 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Step_Increase +(S) @LINE: 452 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Step_Increase +(I) @LINE: 458 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate +(S) @LINE: 466 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate +(I) @LINE: 474 + >>> Processing Test Case: stopConcentratePump_NominalPath +(S) @LINE: 482 + >>> Processed Test Case: stopConcentratePump_NominalPath +(I) @LINE: 490 + >>> Processing Test Case: testResetConcentratePumpDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 492 + >>> Processed Test Case: testResetConcentratePumpDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 498 + >>> Processing Test Case: testResetConcentratePumpDataPublishIntervalOverride_Reset +(S) @LINE: 507 + >>> Processed Test Case: testResetConcentratePumpDataPublishIntervalOverride_Reset +(I) @LINE: 515 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(S) @LINE: 519 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(I) @LINE: 525 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(S) @LINE: 528 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(I) @LINE: 534 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_Override +(S) @LINE: 542 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_Override +(I) @LINE: 550 + >>> Processing Test Case: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 553 + >>> Processed Test Case: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 559 + >>> Processing Test Case: testSetConcentratePumpDataPublishIntervalOverride_Override +(S) @LINE: 569 + >>> Processed Test Case: testSetConcentratePumpDataPublishIntervalOverride_Override +(I) @LINE: 577 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(S) @LINE: 582 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(I) @LINE: 588 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(S) @LINE: 592 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(I) @LINE: 598 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_Override +(S) @LINE: 609 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_Override +(I) @LINE: 617 + >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Not_Logged_in +(S) @LINE: 622 + >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Not_Logged_in +(I) @LINE: 628 + >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Pump +(S) @LINE: 632 + >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Pump +(I) @LINE: 638 + >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Max +(S) @LINE: 645 + >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Max +(I) @LINE: 651 + >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Min +(S) @LINE: 658 + >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Min +(I) @LINE: 664 + >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Override +(S) @LINE: 671 + >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Override +(S) @LINE: 671 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-12-10 14:54:44 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-12-10 14:54:45 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all ConcentratePumps.initConcentratePump test cases + Running: initConcentratePump_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.execConcentratePumpMonitor test cases + Running: execConcentratePumpMonitor_Broadcast + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execConcentratePumpMonitor_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execConcentratePumpMonitor_Speed_Control_Error + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.execConcentratePumpController test cases + Running: execConcentratePumpController_Fault + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execConcentratePumpController_OffState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execConcentratePumpController_OnState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.requestConcentratePumpsOn test cases + Running: requestConcentratePumpOn_Invalid_PumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: requestConcentratePumpOn_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.requestConcentratePumpsOff test cases + Running: requestConcentratePumpOff_Invalid_PumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: requestConcentratePumpOff_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.setConcentratePumpTargetSpeed test cases + Running: setConcentratePumpSpeed_Greater_Than_Max + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setConcentratePumpSpeed_Invalid_Pump + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setConcentratePumpSpeed_Less_Than_Min + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setConcentratePumpSpeed_Reverse_Speed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setConcentratePumpSpeed_Valid_Pump_And_Speed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.stopConcentratePump test cases + Running: stopConcentratePump_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.handleConcentratePumpOffState test cases + Running: handleConcentratePumpOffState_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleConcentratePumpOffState_On_Request + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.stepConcentratePumpToTargetSpeed test cases + Running: stepConcentratePumpToTargetSpeed_Target_Equal_Current + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: stepConcentratePumpToTargetSpeed_Target_Greater_Than_Current + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: stepConcentratePumpToTargetSpeed_Target_Less_Than_Current + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: stepConcentratePumpToTargetSpeed_Target_Less_Than_Step_Increase + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.handleConcentratePumpOnState test cases + Running: handleConcentratePumpOnState_ControlPumps + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleConcentratePumpOnState_Off_Request + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.getPublishConcentratePumpDataInterval test cases + Running: getPublishConcentratePumpDataInterval_NoOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getPublishConcentratePumpDataInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.calcMeasuredPumpsSpeed test cases + Running: calcMeasuredPumpsSpeed_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: calcMeasuredPumpsSpeed_Zero_Flow_rate + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.getMeasuredPumpSpeed test cases + Running: getMeasuredPumpSpeed_InvalidPumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredPumpSpeed_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredPumpSpeed_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.testSetConcentratePumpDataPublishIntervalOverride test cases + Running: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.testResetConcentratePumpDataPublishIntervalOverride test cases + Running: testResetConcentratePumpDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConcentratePumpDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.testSetConcentratePumpTargetSpeedOverride test cases + Running: testSetConcentratePumpTargetSpeedOverride_Invalid_Not_Logged_in + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpTargetSpeedOverride_Invalid_Pump + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Max + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Min + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpTargetSpeedOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.testSetConcentratePumpMeasuredSpeedOverride test cases + Running: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConcentratePumpMeasuredSpeedOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConcentratePumps.testResetConcentratePumpMeasuredSpeedOverride test cases + Running: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConcentratePumpMeasuredSpeedOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-12-10 14:54:47 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "CONDUCTIVITYSENSORS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing ConductivitySensors + Unit 9 (stub-by-function): ConductivitySensors + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file ConductivitySensors + Compiling file ConductivitySensors + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-12-10 14:54:50 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 100 + Processing script line 150 + Processing script line 200 + Processing script line 250 + Processing script line 300 + Processing script line 350 + Processing script line 450 + Processing script line 600 + Processing script line 700 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: calcCompensatedConductivity_At_25_C_Temp +(S) @LINE: 28 + >>> Processed Test Case: calcCompensatedConductivity_At_25_C_Temp +(I) @LINE: 34 + >>> Processing Test Case: calcCompensatedConductivity_At_Zero_Conductivity +(S) @LINE: 38 + >>> Processed Test Case: calcCompensatedConductivity_At_Zero_Conductivity +(I) @LINE: 44 + >>> Processing Test Case: calcCompensatedConductivity_Pos_Conductivity_At_20_C_Temp +(S) @LINE: 48 + >>> Processed Test Case: calcCompensatedConductivity_Pos_Conductivity_At_20_C_Temp +(I) @LINE: 54 + >>> Processing Test Case: calcCompensatedConductivity_Pos_Conductivity_At_28_C_Temp +(S) @LINE: 58 + >>> Processed Test Case: calcCompensatedConductivity_Pos_Conductivity_At_28_C_Temp +(I) @LINE: 66 + >>> Processing Test Case: calcRORejectionRatio_Normal_CPi_CPo +(S) @LINE: 70 + >>> Processed Test Case: calcRORejectionRatio_Normal_CPi_CPo +(I) @LINE: 76 + >>> Processing Test Case: calcRORejectionRatio_Zero_CPi +(S) @LINE: 80 + >>> Processed Test Case: calcRORejectionRatio_Zero_CPi +(I) @LINE: 88 + >>> Processing Test Case: checkConcentrateConductivity_Acid_Too_High +(S) @LINE: 92 + >>> Processed Test Case: checkConcentrateConductivity_Acid_Too_High +(I) @LINE: 98 + >>> Processing Test Case: checkConcentrateConductivity_Acid_Too_Low +(S) @LINE: 102 + >>> Processed Test Case: checkConcentrateConductivity_Acid_Too_Low +(I) @LINE: 108 + >>> Processing Test Case: checkConcentrateConductivity_Bicarb_Too_High +(S) @LINE: 112 + >>> Processed Test Case: checkConcentrateConductivity_Bicarb_Too_High +(I) @LINE: 118 + >>> Processing Test Case: checkConcentrateConductivity_Bicarb_Too_Low +(S) @LINE: 122 + >>> Processed Test Case: checkConcentrateConductivity_Bicarb_Too_Low +(I) @LINE: 128 + >>> Processing Test Case: checkConcentrateConductivity_InRange +(S) @LINE: 132 + >>> Processed Test Case: checkConcentrateConductivity_InRange +(I) @LINE: 140 + >>> Processing Test Case: checkInletWaterConductivity_In_Range +(S) @LINE: 144 + >>> Processed Test Case: checkInletWaterConductivity_In_Range +(I) @LINE: 150 + >>> Processing Test Case: checkInletWaterConductivity_Too_High +(S) @LINE: 155 + >>> Processed Test Case: checkInletWaterConductivity_Too_High +(I) @LINE: 161 + >>> Processing Test Case: checkInletWaterConductivity_Too_Low +(S) @LINE: 166 + >>> Processed Test Case: checkInletWaterConductivity_Too_Low +(I) @LINE: 174 + >>> Processing Test Case: checkRORejectionRatio_CPO_Too_High +(I) @LINE: 179 + >>> 'TRUE' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 181 + >>> Processed Test Case: checkRORejectionRatio_CPO_Too_High +(I) @LINE: 187 + >>> Processing Test Case: checkRORejectionRatio_In_Range +(S) @LINE: 194 + >>> Processed Test Case: checkRORejectionRatio_In_Range +(I) @LINE: 200 + >>> Processing Test Case: checkRORejectionRatio_Out_Of_Range +(I) @LINE: 205 + >>> 'TRUE' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 207 + >>> Processed Test Case: checkRORejectionRatio_Out_Of_Range +(I) @LINE: 215 + >>> Processing Test Case: execConductivitySensors_Broadcast +(S) @LINE: 218 + >>> Processed Test Case: execConductivitySensors_Broadcast +(I) @LINE: 224 + >>> Processing Test Case: execConductivitySensors_No_Broadcast +(S) @LINE: 227 + >>> Processed Test Case: execConductivitySensors_No_Broadcast +(I) @LINE: 235 + >>> Processing Test Case: getConductivityDataPublishInterval_No_Override +(S) @LINE: 240 + >>> Processed Test Case: getConductivityDataPublishInterval_No_Override +(I) @LINE: 246 + >>> Processing Test Case: getConductivityDataPublishInterval_Override +(S) @LINE: 251 + >>> Processed Test Case: getConductivityDataPublishInterval_Override +(I) @LINE: 259 + >>> Processing Test Case: getConductivityValue_Invalid_Sensor +(S) @LINE: 264 + >>> Processed Test Case: getConductivityValue_Invalid_Sensor +(I) @LINE: 270 + >>> Processing Test Case: getConductivityValue_No_Overide +(S) @LINE: 274 + >>> Processed Test Case: getConductivityValue_No_Overide +(I) @LINE: 280 + >>> Processing Test Case: getConductivityValue_Overide +(S) @LINE: 287 + >>> Processed Test Case: getConductivityValue_Overide +(I) @LINE: 295 + >>> Processing Test Case: initConductivitySensors_nominalPath +(S) @LINE: 306 + >>> Processed Test Case: initConductivitySensors_nominalPath +(I) @LINE: 314 + >>> Processing Test Case: prefixStrToSIFactor_Default +(S) @LINE: 317 + >>> Processed Test Case: prefixStrToSIFactor_Default +(I) @LINE: 323 + >>> Processing Test Case: prefixStrToSIFactor_Micro +(S) @LINE: 326 + >>> Processed Test Case: prefixStrToSIFactor_Micro +(I) @LINE: 332 + >>> Processing Test Case: prefixStrToSIFactor_Milli +(S) @LINE: 335 + >>> Processed Test Case: prefixStrToSIFactor_Milli +(I) @LINE: 343 + >>> Processing Test Case: processCD1CD2SensorRead_Add_Data_To_Package +(S) @LINE: 351 + >>> Processed Test Case: processCD1CD2SensorRead_Add_Data_To_Package +(I) @LINE: 357 + >>> Processing Test Case: processCD1CD2SensorRead_Empty_Buffer +(S) @LINE: 362 + >>> Processed Test Case: processCD1CD2SensorRead_Empty_Buffer +(I) @LINE: 368 + >>> Processing Test Case: processCD1CD2SensorRead_Error +(S) @LINE: 373 + >>> Processed Test Case: processCD1CD2SensorRead_Error +(I) @LINE: 379 + >>> Processing Test Case: processCD1CD2SensorRead_Error_No_Alarm +(S) @LINE: 384 + >>> Processed Test Case: processCD1CD2SensorRead_Error_No_Alarm +(I) @LINE: 390 + >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started +(S) @LINE: 399 + >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started +(I) @LINE: 405 + >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started_Newline +(S) @LINE: 412 + >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started_Newline +(I) @LINE: 418 + >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started_Semicolon +(S) @LINE: 425 + >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started_Semicolon +(I) @LINE: 431 + >>> Processing Test Case: processCD1CD2SensorRead_Process_CD1_Measurement +(S) @LINE: 438 + >>> Processed Test Case: processCD1CD2SensorRead_Process_CD1_Measurement +(I) @LINE: 444 + >>> Processing Test Case: processCD1CD2SensorRead_Process_CD2_Measurement +(S) @LINE: 451 + >>> Processed Test Case: processCD1CD2SensorRead_Process_CD2_Measurement +(I) @LINE: 457 + >>> Processing Test Case: processCD1CD2SensorRead_Start_Package +(S) @LINE: 465 + >>> Processed Test Case: processCD1CD2SensorRead_Start_Package +(I) @LINE: 473 + >>> Processing Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time +(S) @LINE: 483 + >>> Processed Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time +(I) @LINE: 489 + >>> Processing Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time +(S) @LINE: 497 + >>> Processed Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time +(I) @LINE: 503 + >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev +(S) @LINE: 512 + >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev +(I) @LINE: 518 + >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev +(S) @LINE: 528 + >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev +(I) @LINE: 534 + >>> Processing Test Case: processCPiCPoSensorRead_Same_FPGA_Reading +(S) @LINE: 545 + >>> Processed Test Case: processCPiCPoSensorRead_Same_FPGA_Reading +(I) @LINE: 553 + >>> Processing Test Case: processMeasurementDataPackage_Bad_Status_Alarm +(S) @LINE: 578 + >>> Processed Test Case: processMeasurementDataPackage_Bad_Status_Alarm +(I) @LINE: 584 + >>> Processing Test Case: processMeasurementDataPackage_Good_Status +(S) @LINE: 611 + >>> Processed Test Case: processMeasurementDataPackage_Good_Status +(I) @LINE: 619 + >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 622 + >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 628 + >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_Override +(S) @LINE: 637 + >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_Override +(I) @LINE: 645 + >>> Processing Test Case: testResetConductivityOverride_Invalid_Sensor +(S) @LINE: 649 + >>> Processed Test Case: testResetConductivityOverride_Invalid_Sensor +(I) @LINE: 655 + >>> Processing Test Case: testResetConductivityOverride_NotLoggedIn +(S) @LINE: 659 + >>> Processed Test Case: testResetConductivityOverride_NotLoggedIn +(I) @LINE: 665 + >>> Processing Test Case: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor +(S) @LINE: 669 + >>> Processed Test Case: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor +(I) @LINE: 675 + >>> Processing Test Case: testResetConductivityOverride_Reset +(S) @LINE: 679 + >>> Processed Test Case: testResetConductivityOverride_Reset +(I) @LINE: 687 + >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 693 + >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 699 + >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_Override +(S) @LINE: 711 + >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_Override +(I) @LINE: 719 + >>> Processing Test Case: testSetConductivityOverride_Invalid_Sensor +(S) @LINE: 724 + >>> Processed Test Case: testSetConductivityOverride_Invalid_Sensor +(I) @LINE: 730 + >>> Processing Test Case: testSetConductivityOverride_NotLoggedIn +(S) @LINE: 735 + >>> Processed Test Case: testSetConductivityOverride_NotLoggedIn +(I) @LINE: 741 + >>> Processing Test Case: testSetConductivityOverride_Override +(S) @LINE: 746 + >>> Processed Test Case: testSetConductivityOverride_Override +(S) @LINE: 746 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-12-10 14:54:51 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-12-10 14:54:52 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all ConductivitySensors.initConductivitySensors test cases + Running: initConductivitySensors_nominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.execConductivitySensors test cases + Running: execConductivitySensors_Broadcast + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execConductivitySensors_No_Broadcast + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.checkInletWaterConductivity test cases + Running: checkInletWaterConductivity_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkInletWaterConductivity_Too_High + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkInletWaterConductivity_Too_Low + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.checkRORejectionRatio test cases + Running: checkRORejectionRatio_CPO_Too_High + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkRORejectionRatio_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkRORejectionRatio_Out_Of_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.checkConcentrateConductivity test cases + Running: checkConcentrateConductivity_Acid_Too_High + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkConcentrateConductivity_Acid_Too_Low + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkConcentrateConductivity_Bicarb_Too_High + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkConcentrateConductivity_Bicarb_Too_Low + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkConcentrateConductivity_InRange + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.getConductivityValue test cases + Running: getConductivityValue_Invalid_Sensor + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getConductivityValue_No_Overide + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getConductivityValue_Overide + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.calcCompensatedConductivity test cases + Running: calcCompensatedConductivity_At_25_C_Temp + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: calcCompensatedConductivity_At_Zero_Conductivity + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: calcCompensatedConductivity_Pos_Conductivity_At_20_C_Temp + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: calcCompensatedConductivity_Pos_Conductivity_At_28_C_Temp + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.calcRORejectionRatio test cases + Running: calcRORejectionRatio_Normal_CPi_CPo + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: calcRORejectionRatio_Zero_CPi + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.processCPiCPoSensorRead test cases + Running: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCPiCPoSensorRead_Same_FPGA_Reading + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.prefixStrToSIFactor test cases + Running: prefixStrToSIFactor_Default + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: prefixStrToSIFactor_Micro + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: prefixStrToSIFactor_Milli + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.processMeasurementDataPackage test cases + Running: processMeasurementDataPackage_Bad_Status_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processMeasurementDataPackage_Good_Status + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.processCD1CD2SensorRead test cases + Running: processCD1CD2SensorRead_Add_Data_To_Package + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Empty_Buffer + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Error + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Error_No_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Package_Not_Started + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Package_Not_Started_Newline + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Package_Not_Started_Semicolon + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Process_CD1_Measurement + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Process_CD2_Measurement + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processCD1CD2SensorRead_Start_Package + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.getConductivityDataPublishInterval test cases + Running: getConductivityDataPublishInterval_No_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getConductivityDataPublishInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.testSetConductivityOverride test cases + Running: testSetConductivityOverride_Invalid_Sensor + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConductivityOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConductivityOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.testResetConductivityOverride test cases + Running: testResetConductivityOverride_Invalid_Sensor + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConductivityOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConductivityOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.testSetConductivityDataPublishIntervalOverride test cases + Running: testSetConductivityDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetConductivityDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ConductivitySensors.testResetConductivityDataPublishIntervalOverride test cases + Running: testResetConductivityDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConductivityDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 +TIME: 2020-12-10 14:54:54 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env" + Initializing search list + Creating the Environment Directory + Creating Environment "CPLD" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing CPLD + Unit 9 (tdd-sbf-source): CPLD + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Inserting Environment User Code + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file CPLD + Compiling file CPLD + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 +TIME: 2020-12-10 14:54:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Processing script line 100 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: getCPLDWatchdogExpired_NominalPath +(S) @LINE: 28 + >>> Processed Test Case: getCPLDWatchdogExpired_NominalPath +(I) @LINE: 36 + >>> Processing Test Case: initCPLD_NominalPath +(S) @LINE: 42 + >>> Processed Test Case: initCPLD_NominalPath +(I) @LINE: 50 + >>> Processing Test Case: setCPLDLampBlue_Off +(S) @LINE: 55 + >>> Processed Test Case: setCPLDLampBlue_Off +(I) @LINE: 61 + >>> Processing Test Case: setCPLDLampBlue_On +(S) @LINE: 66 + >>> Processed Test Case: setCPLDLampBlue_On +(I) @LINE: 74 + >>> Processing Test Case: setCPLDLampGreen_Off +(S) @LINE: 79 + >>> Processed Test Case: setCPLDLampGreen_Off +(I) @LINE: 85 + >>> Processing Test Case: setCPLDLampGreen_On +(S) @LINE: 90 + >>> Processed Test Case: setCPLDLampGreen_On +(I) @LINE: 98 + >>> Processing Test Case: setCPLDLampRed_Off +(S) @LINE: 103 + >>> Processed Test Case: setCPLDLampRed_Off +(I) @LINE: 109 + >>> Processing Test Case: setCPLDLampRed_On +(S) @LINE: 114 + >>> Processed Test Case: setCPLDLampRed_On +(I) @LINE: 122 + >>> Processing Test Case: toggleCPLDWatchdog_NominalPath +(S) @LINE: 124 + >>> Processed Test Case: toggleCPLDWatchdog_NominalPath +(S) @LINE: 124 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 +TIME: 2020-12-10 14:54:58 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 +TIME: 2020-12-10 14:54:58 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all CPLD.initCPLD test cases + Running: initCPLD_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CPLD.toggleCPLDWatchdog test cases + Running: toggleCPLDWatchdog_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CPLD.getCPLDWatchdogExpired test cases + Running: getCPLDWatchdogExpired_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CPLD.setCPLDLampGreen test cases + Running: setCPLDLampGreen_Off + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setCPLDLampGreen_On + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CPLD.setCPLDLampBlue test cases + Running: setCPLDLampBlue_Off + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setCPLDLampBlue_On + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all CPLD.setCPLDLampRed test cases + Running: setCPLDLampRed_Off + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setCPLDLampRed_On + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-12-10 14:54:59 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env" + Initializing search list + Creating the Environment Directory + Creating Environment "DRAINPUMP" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing DrainPump + Unit 9 (tdd-sbf-source): DrainPump + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Inserting Environment User Code + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file DrainPump + Compiling file DrainPump + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:43:50 +TIME: 2020-12-10 14:55:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3720,7 +7200,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:43:53 +TIME: 2020-12-10 14:55:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3735,7 +7215,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:43:54 +TIME: 2020-12-10 14:55:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3757,7 +7237,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:43:54 +TIME: 2020-12-10 14:55:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4103,7 +7583,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:43:57 +TIME: 2020-12-10 14:55:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/CCAST_.CFG @@ -4139,7 +7619,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:44:00 +TIME: 2020-12-10 14:55:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4314,7 +7794,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:44:03 +TIME: 2020-12-10 14:55:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4329,7 +7809,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FANS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:44:03 +TIME: 2020-12-10 14:55:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4603,7 +8083,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:44:06 +TIME: 2020-12-10 14:55:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/CCAST_.CFG @@ -4638,7 +8118,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:44:10 +TIME: 2020-12-10 14:55:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5159,7 +8639,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:44:13 +TIME: 2020-12-10 14:55:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5174,7 +8654,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:44:14 +TIME: 2020-12-10 14:55:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6086,7 +9566,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:44:18 +TIME: 2020-12-10 14:55:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG @@ -6122,7 +9602,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:44:22 +TIME: 2020-12-10 14:55:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6372,7 +9852,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:44:24 +TIME: 2020-12-10 14:55:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6387,7 +9867,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:44:24 +TIME: 2020-12-10 14:55:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6803,7 +10283,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:44:27 +TIME: 2020-12-10 14:55:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG @@ -6838,7 +10318,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:44:30 +TIME: 2020-12-10 14:55:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6899,7 +10379,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:44:31 +TIME: 2020-12-10 14:55:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6914,7 +10394,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:44:32 +TIME: 2020-12-10 14:55:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6979,7 +10459,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:44:34 +TIME: 2020-12-10 14:55:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG @@ -7015,7 +10495,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:44:37 +TIME: 2020-12-10 14:55:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7156,7 +10636,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:44:39 +TIME: 2020-12-10 14:55:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7171,7 +10651,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:44:40 +TIME: 2020-12-10 14:55:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7379,7 +10859,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:44:41 +TIME: 2020-12-10 14:55:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG @@ -7461,7 +10941,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:44:50 +TIME: 2020-12-10 14:55:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7538,7 +11018,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:44:53 +TIME: 2020-12-10 14:55:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7553,7 +11033,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:44:53 +TIME: 2020-12-10 14:55:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7583,7 +11063,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:44:54 +TIME: 2020-12-10 14:55:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7679,7 +11159,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:44:56 +TIME: 2020-12-10 14:56:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/CCAST_.CFG @@ -7755,7 +11235,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:45:04 +TIME: 2020-12-10 14:56:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7808,7 +11288,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:45:06 +TIME: 2020-12-10 14:56:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7823,7 +11303,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:45:07 +TIME: 2020-12-10 14:56:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7853,7 +11333,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:45:07 +TIME: 2020-12-10 14:56:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7912,7 +11392,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:45:09 +TIME: 2020-12-10 14:56:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/CCAST_.CFG @@ -7980,7 +11460,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:45:16 +TIME: 2020-12-10 14:56:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8042,7 +11522,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:45:18 +TIME: 2020-12-10 14:56:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8057,7 +11537,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:45:18 +TIME: 2020-12-10 14:56:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8085,7 +11565,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:45:19 +TIME: 2020-12-10 14:56:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8164,7 +11644,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:45:21 +TIME: 2020-12-10 14:56:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG @@ -8240,7 +11720,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:45:29 +TIME: 2020-12-10 14:56:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8281,7 +11761,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:45:31 +TIME: 2020-12-10 14:56:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8296,7 +11776,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:45:32 +TIME: 2020-12-10 14:56:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8332,7 +11812,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:45:33 +TIME: 2020-12-10 14:56:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/CCAST_.CFG @@ -8423,7 +11903,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:45:43 +TIME: 2020-12-10 14:56:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8508,7 +11988,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:45:45 +TIME: 2020-12-10 14:56:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8523,7 +12003,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:45:46 +TIME: 2020-12-10 14:56:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8636,7 +12116,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-10 12:45:48 +TIME: 2020-12-10 14:56:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG @@ -8728,7 +12208,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-10 12:45:57 +TIME: 2020-12-10 14:56:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8800,7 +12280,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-10 12:46:00 +TIME: 2020-12-10 14:56:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8881,7 +12361,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:46:01 +TIME: 2020-12-10 14:56:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG @@ -8942,7 +12422,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:46:08 +TIME: 2020-12-10 14:57:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8983,7 +12463,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:46:09 +TIME: 2020-12-10 14:57:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8998,7 +12478,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:46:10 +TIME: 2020-12-10 14:57:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9024,7 +12504,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:46:11 +TIME: 2020-12-10 14:57:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9060,7 +12540,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:46:12 +TIME: 2020-12-10 14:57:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG @@ -9170,7 +12650,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:46:24 +TIME: 2020-12-10 14:57:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9266,7 +12746,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:46:26 +TIME: 2020-12-10 14:57:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9288,7 +12768,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:46:27 +TIME: 2020-12-10 14:57:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9393,7 +12873,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:46:29 +TIME: 2020-12-10 14:57:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/CCAST_.CFG @@ -9476,7 +12956,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:46:37 +TIME: 2020-12-10 14:57:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9532,7 +13012,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:46:40 +TIME: 2020-12-10 14:57:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9547,7 +13027,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:46:40 +TIME: 2020-12-10 14:57:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9577,7 +13057,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:46:41 +TIME: 2020-12-10 14:57:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9642,7 +13122,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:46:43 +TIME: 2020-12-10 14:57:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/CCAST_.CFG @@ -9659,7 +13139,7 @@ File: DrainPump.c (using cached data) File: Fans.c (using cached data) File: LoadCell.c (using cached data) - File: ROPump.c (using cached data) + File: ROPump.c File: TemperatureSensors.c (using cached data) File: Valves.c (using cached data) QuickParse Utility Completed @@ -9817,7 +13297,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:47:00 +TIME: 2020-12-10 14:57:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9916,7 +13396,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:47:03 +TIME: 2020-12-10 14:57:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9931,7 +13411,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:47:04 +TIME: 2020-12-10 14:57:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10068,7 +13548,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:47:06 +TIME: 2020-12-10 14:57:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG @@ -10169,7 +13649,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:47:16 +TIME: 2020-12-10 14:58:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10267,7 +13747,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:47:19 +TIME: 2020-12-10 14:58:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10282,7 +13762,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:47:19 +TIME: 2020-12-10 14:58:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10414,7 +13894,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:47:21 +TIME: 2020-12-10 14:58:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/CCAST_.CFG @@ -10495,7 +13975,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:47:30 +TIME: 2020-12-10 14:58:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10540,7 +14020,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:47:32 +TIME: 2020-12-10 14:58:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10555,7 +14035,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:47:33 +TIME: 2020-12-10 14:58:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10599,7 +14079,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:47:34 +TIME: 2020-12-10 14:58:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/CCAST_.CFG @@ -10727,7 +14207,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:47:45 +TIME: 2020-12-10 14:58:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10781,7 +14261,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:47:47 +TIME: 2020-12-10 14:58:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10796,7 +14276,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:47:48 +TIME: 2020-12-10 14:58:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10836,7 +14316,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:47:48 +TIME: 2020-12-10 14:58:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10896,7 +14376,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:47:50 +TIME: 2020-12-10 14:58:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG @@ -10987,7 +14467,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:47:59 +TIME: 2020-12-10 14:58:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11050,7 +14530,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:48:01 +TIME: 2020-12-10 14:58:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11065,7 +14545,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:48:01 +TIME: 2020-12-10 14:58:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11139,7 +14619,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:48:03 +TIME: 2020-12-10 14:58:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/CCAST_.CFG @@ -11186,7 +14666,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:48:06 +TIME: 2020-12-10 14:58:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11222,7 +14702,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:48:08 +TIME: 2020-12-10 14:58:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11237,7 +14717,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:48:09 +TIME: 2020-12-10 14:58:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11261,7 +14741,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:48:10 +TIME: 2020-12-10 14:58:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11289,7 +14769,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:48:11 +TIME: 2020-12-10 14:58:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG @@ -11336,7 +14816,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:48:15 +TIME: 2020-12-10 14:58:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11381,7 +14861,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:48:17 +TIME: 2020-12-10 14:58:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11396,7 +14876,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:48:17 +TIME: 2020-12-10 14:58:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11420,7 +14900,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:48:18 +TIME: 2020-12-10 14:58:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11463,7 +14943,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:48:20 +TIME: 2020-12-10 14:59:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/CCAST_.CFG @@ -11510,7 +14990,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:48:24 +TIME: 2020-12-10 14:59:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11546,7 +15026,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:48:25 +TIME: 2020-12-10 14:59:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11561,7 +15041,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:48:26 +TIME: 2020-12-10 14:59:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11585,7 +15065,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:48:26 +TIME: 2020-12-10 14:59:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11613,7 +15093,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-10 12:48:28 +TIME: 2020-12-10 14:59:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG @@ -11660,7 +15140,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-10 12:48:31 +TIME: 2020-12-10 14:59:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11716,7 +15196,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-10 12:48:33 +TIME: 2020-12-10 14:59:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11773,7 +15253,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:48:34 +TIME: 2020-12-10 14:59:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/CCAST_.CFG @@ -11820,7 +15300,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:48:38 +TIME: 2020-12-10 14:59:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11856,7 +15336,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:48:40 +TIME: 2020-12-10 14:59:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11871,7 +15351,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:48:40 +TIME: 2020-12-10 14:59:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11895,7 +15375,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:48:41 +TIME: 2020-12-10 14:59:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11923,7 +15403,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:48:42 +TIME: 2020-12-10 14:59:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/CCAST_.CFG @@ -11970,7 +15450,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:48:45 +TIME: 2020-12-10 14:59:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12006,7 +15486,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:48:47 +TIME: 2020-12-10 14:59:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12021,7 +15501,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:48:47 +TIME: 2020-12-10 14:59:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12045,7 +15525,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:48:48 +TIME: 2020-12-10 14:59:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12073,7 +15553,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:48:49 +TIME: 2020-12-10 14:59:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/CCAST_.CFG @@ -12120,7 +15600,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:48:53 +TIME: 2020-12-10 14:59:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12156,7 +15636,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:48:54 +TIME: 2020-12-10 14:59:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12171,7 +15651,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:48:55 +TIME: 2020-12-10 14:59:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12195,7 +15675,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:48:56 +TIME: 2020-12-10 14:59:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12223,7 +15703,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:48:57 +TIME: 2020-12-10 14:59:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG @@ -12290,7 +15770,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:49:03 +TIME: 2020-12-10 14:59:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12352,7 +15832,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:49:05 +TIME: 2020-12-10 14:59:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12367,7 +15847,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:49:05 +TIME: 2020-12-10 14:59:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12440,7 +15920,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:49:07 +TIME: 2020-12-10 14:59:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/CCAST_.CFG @@ -12487,7 +15967,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:49:11 +TIME: 2020-12-10 14:59:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12523,7 +16003,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:49:12 +TIME: 2020-12-10 14:59:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12538,7 +16018,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:49:13 +TIME: 2020-12-10 14:59:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12562,7 +16042,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:49:13 +TIME: 2020-12-10 14:59:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12590,7 +16070,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:49:15 +TIME: 2020-12-10 14:59:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/CCAST_.CFG @@ -12637,7 +16117,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:49:18 +TIME: 2020-12-10 14:59:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12678,7 +16158,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:49:20 +TIME: 2020-12-10 15:00:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12693,7 +16173,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:49:20 +TIME: 2020-12-10 15:00:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12717,7 +16197,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:49:21 +TIME: 2020-12-10 15:00:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12752,7 +16232,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:49:22 +TIME: 2020-12-10 15:00:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG @@ -12810,7 +16290,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:49:27 +TIME: 2020-12-10 15:00:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12868,7 +16348,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:49:29 +TIME: 2020-12-10 15:00:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12883,7 +16363,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:49:30 +TIME: 2020-12-10 15:00:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12909,7 +16389,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:49:31 +TIME: 2020-12-10 15:00:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12975,7 +16455,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:49:32 +TIME: 2020-12-10 15:00:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG @@ -13051,7 +16531,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:49:39 +TIME: 2020-12-10 15:00:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13097,7 +16577,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:49:41 +TIME: 2020-12-10 15:00:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13112,7 +16592,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:49:42 +TIME: 2020-12-10 15:00:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13156,7 +16636,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:49:43 +TIME: 2020-12-10 15:00:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG @@ -13236,7 +16716,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:49:50 +TIME: 2020-12-10 15:00:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13281,7 +16761,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:49:52 +TIME: 2020-12-10 15:00:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13296,7 +16776,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:49:52 +TIME: 2020-12-10 15:00:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13340,7 +16820,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:49:54 +TIME: 2020-12-10 15:00:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/CCAST_.CFG @@ -13399,7 +16879,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:49:59 +TIME: 2020-12-10 15:00:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13444,7 +16924,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:50:00 +TIME: 2020-12-10 15:00:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13459,7 +16939,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:50:01 +TIME: 2020-12-10 15:00:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13502,7 +16982,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:50:02 +TIME: 2020-12-10 15:00:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/CCAST_.CFG @@ -13551,7 +17031,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:50:06 +TIME: 2020-12-10 15:00:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13602,7 +17082,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:50:08 +TIME: 2020-12-10 15:00:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13626,7 +17106,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:50:09 +TIME: 2020-12-10 15:00:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13662,7 +17142,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:50:10 +TIME: 2020-12-10 15:00:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG @@ -13772,7 +17252,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:50:21 +TIME: 2020-12-10 15:01:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13856,7 +17336,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:50:23 +TIME: 2020-12-10 15:01:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13871,7 +17351,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:50:24 +TIME: 2020-12-10 15:01:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13982,7 +17462,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:50:26 +TIME: 2020-12-10 15:01:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG @@ -14100,7 +17580,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:50:36 +TIME: 2020-12-10 15:01:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14170,7 +17650,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:50:39 +TIME: 2020-12-10 15:01:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14185,7 +17665,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:50:40 +TIME: 2020-12-10 15:01:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14223,7 +17703,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:50:40 +TIME: 2020-12-10 15:01:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14314,7 +17794,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:50:42 +TIME: 2020-12-10 15:01:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG @@ -14424,7 +17904,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:50:52 +TIME: 2020-12-10 15:01:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14612,7 +18092,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:50:54 +TIME: 2020-12-10 15:01:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14648,7 +18128,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:50:55 +TIME: 2020-12-10 15:01:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14798,7 +18278,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:50:57 +TIME: 2020-12-10 15:01:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG @@ -14888,7 +18368,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:51:06 +TIME: 2020-12-10 15:01:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14958,7 +18438,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:51:09 +TIME: 2020-12-10 15:02:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14973,7 +18453,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:51:10 +TIME: 2020-12-10 15:02:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15005,7 +18485,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:51:11 +TIME: 2020-12-10 15:02:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15092,7 +18572,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:51:12 +TIME: 2020-12-10 15:02:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/CCAST_.CFG @@ -15153,7 +18633,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:51:19 +TIME: 2020-12-10 15:02:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15194,7 +18674,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:51:20 +TIME: 2020-12-10 15:02:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15209,7 +18689,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:51:21 +TIME: 2020-12-10 15:02:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15235,7 +18715,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:51:21 +TIME: 2020-12-10 15:02:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15270,7 +18750,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 12:51:23 +TIME: 2020-12-10 15:02:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/CCAST_.CFG @@ -15378,7 +18858,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 12:51:34 +TIME: 2020-12-10 15:02:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15445,7 +18925,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 12:51:36 +TIME: 2020-12-10 15:02:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15460,7 +18940,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 12:51:36 +TIME: 2020-12-10 15:02:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15540,7 +19020,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 12:51:38 +TIME: 2020-12-10 15:02:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG @@ -15617,7 +19097,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 12:51:44 +TIME: 2020-12-10 15:02:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15928,7 +19408,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 12:51:47 +TIME: 2020-12-10 15:02:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15958,7 +19438,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 12:51:47 +TIME: 2020-12-10 15:02:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16345,7 +19825,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 12:51:49 +TIME: 2020-12-10 15:02:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/CCAST_.CFG @@ -16405,7 +19885,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 12:51:54 +TIME: 2020-12-10 15:02:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16437,7 +19917,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 12:51:56 +TIME: 2020-12-10 15:02:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16452,7 +19932,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 12:51:56 +TIME: 2020-12-10 15:02:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16472,7 +19952,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 12:51:58 +TIME: 2020-12-10 15:02:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/CCAST_.CFG @@ -16521,7 +20001,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 12:52:02 +TIME: 2020-12-10 15:02:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16553,7 +20033,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 12:52:03 +TIME: 2020-12-10 15:03:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16568,7 +20048,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 12:52:04 +TIME: 2020-12-10 15:03:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16588,7 +20068,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 12:52:05 +TIME: 2020-12-10 15:03:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/CCAST_.CFG @@ -16637,7 +20117,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 12:52:09 +TIME: 2020-12-10 15:03:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16669,7 +20149,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 12:52:10 +TIME: 2020-12-10 15:03:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16684,7 +20164,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 12:52:11 +TIME: 2020-12-10 15:03:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16704,7 +20184,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 12:52:12 +TIME: 2020-12-10 15:03:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/CCAST_.CFG @@ -16764,7 +20244,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 12:52:16 +TIME: 2020-12-10 15:03:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16796,7 +20276,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 12:52:18 +TIME: 2020-12-10 15:03:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16811,7 +20291,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 12:52:18 +TIME: 2020-12-10 15:03:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16831,7 +20311,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 12:52:19 +TIME: 2020-12-10 15:03:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG @@ -16932,7 +20412,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 12:52:29 +TIME: 2020-12-10 15:03:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17007,7 +20487,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 12:52:31 +TIME: 2020-12-10 15:03:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17022,7 +20502,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 12:52:31 +TIME: 2020-12-10 15:03:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17118,7 +20598,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 12:52:33 +TIME: 2020-12-10 15:03:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/CCAST_.CFG @@ -17200,7 +20680,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 12:52:40 +TIME: 2020-12-10 15:03:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17263,7 +20743,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 12:52:42 +TIME: 2020-12-10 15:03:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17278,7 +20758,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 12:52:43 +TIME: 2020-12-10 15:03:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17351,7 +20831,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:52:44 +TIME: 2020-12-10 15:03:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/CCAST_.CFG @@ -17431,7 +20911,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:52:51 +TIME: 2020-12-10 15:03:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17475,7 +20955,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:52:52 +TIME: 2020-12-10 15:03:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17490,7 +20970,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:52:53 +TIME: 2020-12-10 15:03:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17520,7 +21000,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:52:53 +TIME: 2020-12-10 15:04:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17564,7 +21044,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:52:55 +TIME: 2020-12-10 15:04:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/CCAST_.CFG @@ -17642,7 +21122,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:53:02 +TIME: 2020-12-10 15:04:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17691,7 +21171,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:53:04 +TIME: 2020-12-10 15:04:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17706,7 +21186,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:53:04 +TIME: 2020-12-10 15:04:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17736,7 +21216,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:53:05 +TIME: 2020-12-10 15:04:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17788,7 +21268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/INT_UVREACTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:53:06 +TIME: 2020-12-10 15:04:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/CCAST_.CFG @@ -17870,7 +21350,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/INT_UVREACTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:53:14 +TIME: 2020-12-10 15:04:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17947,7 +21427,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/INT_UVREACTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:53:16 +TIME: 2020-12-10 15:04:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17962,7 +21442,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UVREACTORS/INT_UVREACTORS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:53:16 +TIME: 2020-12-10 15:04:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17984,7 +21464,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UVREACTORS/INT_UVREACTORS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:53:17 +TIME: 2020-12-10 15:04:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18079,7 +21559,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 12:53:18 +TIME: 2020-12-10 15:04:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG @@ -18161,7 +21641,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 12:53:26 +TIME: 2020-12-10 15:04:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18223,7 +21703,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 12:53:28 +TIME: 2020-12-10 15:04:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18238,7 +21718,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 12:53:28 +TIME: 2020-12-10 15:04:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18312,7 +21792,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 12:53:30 +TIME: 2020-12-10 15:04:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/CCAST_.CFG @@ -18401,7 +21881,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 12:53:38 +TIME: 2020-12-10 15:04:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18455,7 +21935,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 12:53:39 +TIME: 2020-12-10 15:04:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18470,7 +21950,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 12:53:40 +TIME: 2020-12-10 15:04:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18529,7 +22009,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 12:53:41 +TIME: 2020-12-10 15:04:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG @@ -18564,7 +22044,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 12:53:44 +TIME: 2020-12-10 15:05:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18677,7 +22157,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 12:53:46 +TIME: 2020-12-10 15:05:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18692,7 +22172,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 12:53:46 +TIME: 2020-12-10 15:05:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18854,7 +22334,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 12:53:48 +TIME: 2020-12-10 15:05:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/CCAST_.CFG @@ -18889,7 +22369,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 12:53:51 +TIME: 2020-12-10 15:05:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18937,7 +22417,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 12:53:52 +TIME: 2020-12-10 15:05:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18952,7 +22432,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 12:53:52 +TIME: 2020-12-10 15:05:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19003,7 +22483,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 12:53:54 +TIME: 2020-12-10 15:05:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG @@ -19038,7 +22518,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 12:53:56 +TIME: 2020-12-10 15:05:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19100,7 +22580,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 12:53:58 +TIME: 2020-12-10 15:05:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19115,7 +22595,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 12:53:58 +TIME: 2020-12-10 15:05:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19188,7 +22668,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 12:54:00 +TIME: 2020-12-10 15:05:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/CCAST_.CFG @@ -19223,7 +22703,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 12:54:02 +TIME: 2020-12-10 15:05:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19271,7 +22751,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 12:54:03 +TIME: 2020-12-10 15:05:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19286,7 +22766,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 12:54:04 +TIME: 2020-12-10 15:05:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19337,7 +22817,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-10 12:54:05 +TIME: 2020-12-10 15:05:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG @@ -19373,7 +22853,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-10 12:54:08 +TIME: 2020-12-10 15:05:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19521,7 +23001,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-10 12:54:09 +TIME: 2020-12-10 15:05:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19701,7 +23181,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 12:54:11 +TIME: 2020-12-10 15:05:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/CCAST_.CFG @@ -19736,7 +23216,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 12:54:13 +TIME: 2020-12-10 15:05:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19784,7 +23264,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 12:54:15 +TIME: 2020-12-10 15:05:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19799,7 +23279,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 12:54:15 +TIME: 2020-12-10 15:05:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19850,7 +23330,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-10 12:54:16 +TIME: 2020-12-10 15:05:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/CCAST_.CFG @@ -19885,7 +23365,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-10 12:54:19 +TIME: 2020-12-10 15:05:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19966,7 +23446,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-10 12:54:20 +TIME: 2020-12-10 15:05:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20017,7 +23497,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-10 12:54:21 +TIME: 2020-12-10 15:05:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/CCAST_.CFG @@ -20052,7 +23532,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-10 12:54:24 +TIME: 2020-12-10 15:05:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20144,9 +23624,11 @@ >>> Processed Test Case: execInitAndPOSTMode_POST_Passed (I) @LINE: 140 >>> Processing Test Case: execInitAndPOSTMode_Pressures -(I) @LINE: 156 +(I) @LINE: 158 >>> 'DG_POST_STATE_UV_REACTORS' was specified as a macro, but it is in the symbol dictionary. (E) Errors from previous script import(s) + >>> (I) @LINE: 156 + >>> >>> 'DG_POST_STATE_UV_REACTORS' was specified as a macro, but it is in the symbol dictionary. >>> (I) @LINE: 153 >>> >>> 'DG_POST_STATE_UV_REACTORS' was specified as a macro, but it is in the symbol dictionary. >>> (E) @LINE: 32 TEST.EXPECTED:ModeInitPOST.execInitAndPOSTMode.return:7 @@ -20157,27 +23639,27 @@ >>> (E) @LINE: 33 TEST.EXPECTED:ModeInitPOST.execInitAndPOSTMode.return:MACRO=DG_POST_STATE_UV_REACTORS >>> >>> Warning: Value already set >>> >>> Previous value 7 ignored -(S) @LINE: 157 +(S) @LINE: 159 >>> Processed Test Case: execInitAndPOSTMode_Pressures -(I) @LINE: 163 +(I) @LINE: 165 >>> Processing Test Case: execInitAndPOSTMode_RTC -(I) @LINE: 166 +(I) @LINE: 168 >>> 'DG_POST_STATE_TEMPERATURE_SENSORS' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 167 +(S) @LINE: 169 >>> Processed Test Case: execInitAndPOSTMode_RTC -(I) @LINE: 173 - >>> Processing Test Case: execInitAndPOSTMode_Start (I) @LINE: 175 + >>> Processing Test Case: execInitAndPOSTMode_Start +(I) @LINE: 177 >>> 'DG_POST_STATE_FPGA' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 176 +(S) @LINE: 178 >>> Processed Test Case: execInitAndPOSTMode_Start -(I) @LINE: 182 +(I) @LINE: 184 >>> Processing Test Case: execInitAndPOSTMode_TemperatureSensor -(I) @LINE: 185 +(I) @LINE: 187 >>> 'DG_POST_STATE_HEATERS' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 186 +(S) @LINE: 188 >>> Processed Test Case: execInitAndPOSTMode_TemperatureSensor -(I) @LINE: 192 +(I) @LINE: 194 >>> Processing Test Case: execInitAndPOSTMode_Thermistors (E) Errors from previous script import(s) >>> (E) @LINE: 58 TEST.VALUE:ModeInitPOST.<>.postState:DG_POST_STATE_THERMISTORS @@ -20190,45 +23672,45 @@ >>> >>> Could not find function execThermistorsSelfTest >>> >>> in unit uut_prototype_stubs. >>> >>> Value Line Error - Command Ignored -(S) @LINE: 209 +(S) @LINE: 211 >>> Processed Test Case: execInitAndPOSTMode_Thermistors -(I) @LINE: 215 +(I) @LINE: 217 >>> Processing Test Case: execInitAndPOSTMode_UV_Reactors -(S) @LINE: 220 +(S) @LINE: 222 >>> Processed Test Case: execInitAndPOSTMode_UV_Reactors -(I) @LINE: 228 +(I) @LINE: 230 >>> Processing Test Case: getCurrentInitAndPOSTState_NominalPath -(S) @LINE: 231 +(S) @LINE: 233 >>> Processed Test Case: getCurrentInitAndPOSTState_NominalPath -(I) @LINE: 239 +(I) @LINE: 241 >>> Processing Test Case: handlePOSTStatus_Failed -(S) @LINE: 245 +(S) @LINE: 247 >>> Processed Test Case: handlePOSTStatus_Failed -(I) @LINE: 251 +(I) @LINE: 253 >>> Processing Test Case: handlePOSTStatus_Passed -(S) @LINE: 255 +(S) @LINE: 257 >>> Processed Test Case: handlePOSTStatus_Passed -(I) @LINE: 263 +(I) @LINE: 265 >>> Processing Test Case: initInitAndPOSTMode_NominalPath -(S) @LINE: 272 +(S) @LINE: 274 >>> Processed Test Case: initInitAndPOSTMode_NominalPath -(I) @LINE: 280 +(I) @LINE: 282 >>> Processing Test Case: isPOSTCompleted._NominalPath -(S) @LINE: 283 +(S) @LINE: 285 >>> Processed Test Case: isPOSTCompleted._NominalPath -(I) @LINE: 291 +(I) @LINE: 293 >>> Processing Test Case: isPOSTPassed_NominalPath -(S) @LINE: 294 +(S) @LINE: 296 >>> Processed Test Case: isPOSTPassed_NominalPath -(I) @LINE: 302 +(I) @LINE: 304 >>> Processing Test Case: transitionToInitAndPOSTMode_NominalPath -(S) @LINE: 303 +(S) @LINE: 305 >>> Processed Test Case: transitionToInitAndPOSTMode_NominalPath -(S) @LINE: 303 +(S) @LINE: 305 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-10 12:54:25 +TIME: 2020-12-10 15:05:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20408,7 +23890,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 12:54:27 +TIME: 2020-12-10 15:05:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG @@ -20443,7 +23925,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 12:54:30 +TIME: 2020-12-10 15:05:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20537,7 +24019,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 12:54:31 +TIME: 2020-12-10 15:05:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20559,7 +24041,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 12:54:32 +TIME: 2020-12-10 15:05:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20670,7 +24152,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 12:54:33 +TIME: 2020-12-10 15:05:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/CCAST_.CFG @@ -20705,7 +24187,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 12:54:36 +TIME: 2020-12-10 15:05:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20753,7 +24235,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 12:54:37 +TIME: 2020-12-10 15:06:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20768,7 +24250,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 12:54:38 +TIME: 2020-12-10 15:06:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20819,7 +24301,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 12:54:39 +TIME: 2020-12-10 15:06:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/CCAST_.CFG @@ -20854,7 +24336,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 12:54:42 +TIME: 2020-12-10 15:06:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20910,7 +24392,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 12:54:43 +TIME: 2020-12-10 15:06:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20925,7 +24407,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 12:54:43 +TIME: 2020-12-10 15:06:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20991,7 +24473,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:54:45 +TIME: 2020-12-10 15:06:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG @@ -21026,7 +24508,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:54:47 +TIME: 2020-12-10 15:06:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21125,7 +24607,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:54:49 +TIME: 2020-12-10 15:06:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21140,7 +24622,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:54:49 +TIME: 2020-12-10 15:06:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21162,7 +24644,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:54:50 +TIME: 2020-12-10 15:06:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21301,7 +24783,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 12:54:51 +TIME: 2020-12-10 15:06:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG @@ -21336,7 +24818,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 12:54:54 +TIME: 2020-12-10 15:06:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21437,7 +24919,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 12:54:55 +TIME: 2020-12-10 15:06:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21452,7 +24934,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 12:54:55 +TIME: 2020-12-10 15:06:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21590,7 +25072,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-10 12:54:57 +TIME: 2020-12-10 15:06:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/CCAST_.CFG @@ -21626,7 +25108,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-10 12:55:00 +TIME: 2020-12-10 15:06:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22481,7 +25963,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-10 12:55:03 +TIME: 2020-12-10 15:06:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23586,7 +27068,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 12:55:08 +TIME: 2020-12-10 15:06:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG @@ -23621,7 +27103,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 12:55:11 +TIME: 2020-12-10 15:06:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23780,7 +27262,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 12:55:12 +TIME: 2020-12-10 15:06:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23795,7 +27277,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 12:55:13 +TIME: 2020-12-10 15:06:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24038,7 +27520,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 12:55:14 +TIME: 2020-12-10 15:06:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/CCAST_.CFG @@ -24073,7 +27555,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 12:55:17 +TIME: 2020-12-10 15:06:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24134,7 +27616,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 12:55:19 +TIME: 2020-12-10 15:06:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24149,7 +27631,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 12:55:19 +TIME: 2020-12-10 15:06:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24219,7 +27701,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 12:55:20 +TIME: 2020-12-10 15:06:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/CCAST_.CFG @@ -24254,7 +27736,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 12:55:23 +TIME: 2020-12-10 15:06:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24391,7 +27873,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 12:55:25 +TIME: 2020-12-10 15:06:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24406,7 +27888,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 12:55:25 +TIME: 2020-12-10 15:06:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24590,7 +28072,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 12:55:27 +TIME: 2020-12-10 15:06:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG @@ -24625,7 +28107,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 12:55:30 +TIME: 2020-12-10 15:06:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24809,7 +28291,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 12:55:31 +TIME: 2020-12-10 15:07:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24824,7 +28306,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 12:55:32 +TIME: 2020-12-10 15:07:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25103,7 +28585,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 12:55:33 +TIME: 2020-12-10 15:07:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG @@ -25138,7 +28620,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 12:55:36 +TIME: 2020-12-10 15:07:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25374,7 +28856,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 12:55:38 +TIME: 2020-12-10 15:07:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25389,7 +28871,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 12:55:39 +TIME: 2020-12-10 15:07:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25766,7 +29248,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 12:55:41 +TIME: 2020-12-10 15:07:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG @@ -25802,7 +29284,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 12:55:44 +TIME: 2020-12-10 15:07:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26141,7 +29623,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 12:55:46 +TIME: 2020-12-10 15:07:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26163,7 +29645,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 12:55:46 +TIME: 2020-12-10 15:07:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26180,14 +29662,6 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ROPump.setROPumpTargetDutyCycle test cases - Running: setROPumpTargetDutyCycle_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running all ROPump.setROPumpTargetFlowRate test cases Running: setROPumpTargetFlowRate_Flow_And_Pressure_In_Range Preparing Test Data @@ -26472,6 +29946,14 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all ROPump.setROPumpTargetDutyCycle test cases + Running: setROPumpTargetDutyCycle_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ROPump.setROPumpControlSignalDutyCycle test cases Running: setROPumpControlSignalDutyCycle_NominalPath Preparing Test Data @@ -26699,7 +30181,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 12:55:49 +TIME: 2020-12-10 15:07:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/CCAST_.CFG @@ -26735,7 +30217,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 12:55:52 +TIME: 2020-12-10 15:07:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27215,7 +30697,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 12:55:54 +TIME: 2020-12-10 15:07:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27230,7 +30712,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 12:55:55 +TIME: 2020-12-10 15:07:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28035,7 +31517,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 12:55:58 +TIME: 2020-12-10 15:07:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/CCAST_.CFG @@ -28071,7 +31553,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 12:56:01 +TIME: 2020-12-10 15:07:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28136,7 +31618,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 12:56:02 +TIME: 2020-12-10 15:07:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28151,7 +31633,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 12:56:03 +TIME: 2020-12-10 15:07:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28231,7 +31713,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-10 12:56:04 +TIME: 2020-12-10 15:07:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG @@ -28266,7 +31748,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-10 12:56:07 +TIME: 2020-12-10 15:07:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28823,7 +32305,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-10 12:56:09 +TIME: 2020-12-10 15:07:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29605,7 +33087,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 12:56:12 +TIME: 2020-12-10 15:07:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG @@ -29641,7 +33123,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 12:56:16 +TIME: 2020-12-10 15:07:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30818,7 +34300,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 12:56:19 +TIME: 2020-12-10 15:07:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30840,7 +34322,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 12:56:20 +TIME: 2020-12-10 15:07:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32094,7 +35576,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 12:56:25 +TIME: 2020-12-10 15:08:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/CCAST_.CFG @@ -32129,7 +35611,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 12:56:27 +TIME: 2020-12-10 15:08:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32161,7 +35643,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 12:56:28 +TIME: 2020-12-10 15:08:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32176,7 +35658,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 12:56:29 +TIME: 2020-12-10 15:08:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32196,7 +35678,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 12:56:30 +TIME: 2020-12-10 15:08:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/CCAST_.CFG @@ -32231,7 +35713,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 12:56:33 +TIME: 2020-12-10 15:08:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32263,7 +35745,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 12:56:34 +TIME: 2020-12-10 15:08:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32278,7 +35760,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 12:56:35 +TIME: 2020-12-10 15:08:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32298,7 +35780,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 12:56:36 +TIME: 2020-12-10 15:08:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/CCAST_.CFG @@ -32333,7 +35815,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 12:56:39 +TIME: 2020-12-10 15:08:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32365,7 +35847,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 12:56:40 +TIME: 2020-12-10 15:08:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32380,7 +35862,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 12:56:41 +TIME: 2020-12-10 15:08:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32400,7 +35882,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 12:56:42 +TIME: 2020-12-10 15:08:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG @@ -32435,7 +35917,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 12:56:44 +TIME: 2020-12-10 15:08:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32467,7 +35949,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 12:56:45 +TIME: 2020-12-10 15:08:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32482,7 +35964,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 12:56:46 +TIME: 2020-12-10 15:08:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32502,7 +35984,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 12:56:47 +TIME: 2020-12-10 15:08:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG @@ -32537,7 +36019,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 12:56:50 +TIME: 2020-12-10 15:08:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32813,7 +36295,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 12:56:52 +TIME: 2020-12-10 15:08:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32828,7 +36310,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 12:56:52 +TIME: 2020-12-10 15:08:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33253,7 +36735,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 12:56:55 +TIME: 2020-12-10 15:08:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/CCAST_.CFG @@ -33288,7 +36770,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 12:56:58 +TIME: 2020-12-10 15:08:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33477,7 +36959,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 12:56:59 +TIME: 2020-12-10 15:08:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33492,7 +36974,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 12:57:00 +TIME: 2020-12-10 15:08:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33786,7 +37268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 12:57:02 +TIME: 2020-12-10 15:08:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/CCAST_.CFG @@ -33821,7 +37303,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 12:57:04 +TIME: 2020-12-10 15:08:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33894,7 +37376,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 12:57:05 +TIME: 2020-12-10 15:08:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33909,7 +37391,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 12:57:06 +TIME: 2020-12-10 15:08:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34004,7 +37486,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 12:57:07 +TIME: 2020-12-10 15:08:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG @@ -34039,7 +37521,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 12:57:10 +TIME: 2020-12-10 15:08:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34213,7 +37695,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 12:57:11 +TIME: 2020-12-10 15:08:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34228,7 +37710,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 12:57:12 +TIME: 2020-12-10 15:08:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34488,7 +37970,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/UVREACTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 12:57:13 +TIME: 2020-12-10 15:08:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/CCAST_.CFG @@ -34523,7 +38005,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e UVREACTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/UVREACTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 12:57:16 +TIME: 2020-12-10 15:08:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34728,7 +38210,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UVREACTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/UVREACTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 12:57:18 +TIME: 2020-12-10 15:08:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34743,7 +38225,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UVREACTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 12:57:18 +TIME: 2020-12-10 15:08:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -35053,7 +38535,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 12:57:20 +TIME: 2020-12-10 15:08:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG @@ -35088,7 +38570,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 12:57:23 +TIME: 2020-12-10 15:09:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -35533,7 +39015,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 12:57:25 +TIME: 2020-12-10 15:09:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -35548,7 +39030,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 12:57:26 +TIME: 2020-12-10 15:09:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36266,7 +39748,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 12:57:28 +TIME: 2020-12-10 15:09:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG @@ -36301,7 +39783,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 12:57:31 +TIME: 2020-12-10 15:09:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36444,7 +39926,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 12:57:32 +TIME: 2020-12-10 15:09:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36459,7 +39941,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 12:57:33 +TIME: 2020-12-10 15:09:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36689,7 +40171,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:57:38 +TIME: 2020-12-10 15:09:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36701,7 +40183,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:57:39 +TIME: 2020-12-10 15:09:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36713,7 +40195,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:57:40 +TIME: 2020-12-10 15:09:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36725,7 +40207,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:57:41 +TIME: 2020-12-10 15:09:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36737,7 +40219,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:57:42 +TIME: 2020-12-10 15:09:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36749,7 +40231,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:57:43 +TIME: 2020-12-10 15:09:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36761,7 +40243,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:57:44 +TIME: 2020-12-10 15:09:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36773,7 +40255,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:57:45 +TIME: 2020-12-10 15:09:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36785,7 +40267,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:57:46 +TIME: 2020-12-10 15:09:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36797,7 +40279,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:57:47 +TIME: 2020-12-10 15:09:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36809,7 +40291,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:57:48 +TIME: 2020-12-10 15:09:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36821,7 +40303,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:57:49 +TIME: 2020-12-10 15:09:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36833,7 +40315,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:57:50 +TIME: 2020-12-10 15:09:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36845,7 +40327,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:57:51 +TIME: 2020-12-10 15:09:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36857,7 +40339,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:57:52 +TIME: 2020-12-10 15:09:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36869,7 +40351,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:57:53 +TIME: 2020-12-10 15:09:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36881,7 +40363,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:57:54 +TIME: 2020-12-10 15:09:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36893,7 +40375,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:57:55 +TIME: 2020-12-10 15:09:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36905,7 +40387,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-10 12:57:56 +TIME: 2020-12-10 15:09:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36917,7 +40399,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:57:57 +TIME: 2020-12-10 15:09:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36929,7 +40411,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:57:58 +TIME: 2020-12-10 15:09:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36941,7 +40423,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:57:59 +TIME: 2020-12-10 15:09:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36953,7 +40435,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:58:00 +TIME: 2020-12-10 15:09:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36965,7 +40447,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:58:01 +TIME: 2020-12-10 15:09:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36977,7 +40459,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:58:02 +TIME: 2020-12-10 15:09:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -36989,7 +40471,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:58:03 +TIME: 2020-12-10 15:09:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37001,7 +40483,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:58:05 +TIME: 2020-12-10 15:09:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37013,7 +40495,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:58:06 +TIME: 2020-12-10 15:09:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37025,7 +40507,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:58:07 +TIME: 2020-12-10 15:09:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37037,7 +40519,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:58:08 +TIME: 2020-12-10 15:09:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37049,7 +40531,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-10 12:58:09 +TIME: 2020-12-10 15:09:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37061,7 +40543,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:58:10 +TIME: 2020-12-10 15:09:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37073,7 +40555,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:58:10 +TIME: 2020-12-10 15:09:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37085,7 +40567,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:58:11 +TIME: 2020-12-10 15:09:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37097,7 +40579,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:58:12 +TIME: 2020-12-10 15:09:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37109,7 +40591,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:58:13 +TIME: 2020-12-10 15:09:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37121,7 +40603,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:58:14 +TIME: 2020-12-10 15:09:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37133,7 +40615,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:58:15 +TIME: 2020-12-10 15:09:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37145,7 +40627,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:58:16 +TIME: 2020-12-10 15:09:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37157,7 +40639,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:58:17 +TIME: 2020-12-10 15:10:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37169,7 +40651,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:58:18 +TIME: 2020-12-10 15:10:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37181,7 +40663,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:58:19 +TIME: 2020-12-10 15:10:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37193,7 +40675,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:58:20 +TIME: 2020-12-10 15:10:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37205,7 +40687,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:58:21 +TIME: 2020-12-10 15:10:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37217,7 +40699,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:58:22 +TIME: 2020-12-10 15:10:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37229,7 +40711,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 12:58:23 +TIME: 2020-12-10 15:10:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37241,7 +40723,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 12:58:24 +TIME: 2020-12-10 15:10:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37253,7 +40735,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 12:58:25 +TIME: 2020-12-10 15:10:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37265,7 +40747,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 12:58:26 +TIME: 2020-12-10 15:10:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37277,7 +40759,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 12:58:28 +TIME: 2020-12-10 15:10:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37289,7 +40771,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 12:58:28 +TIME: 2020-12-10 15:10:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37301,7 +40783,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 12:58:29 +TIME: 2020-12-10 15:10:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37313,7 +40795,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 12:58:30 +TIME: 2020-12-10 15:10:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37325,7 +40807,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 12:58:31 +TIME: 2020-12-10 15:10:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37337,7 +40819,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 12:58:32 +TIME: 2020-12-10 15:10:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37349,7 +40831,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 12:58:33 +TIME: 2020-12-10 15:10:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37361,7 +40843,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 12:58:34 +TIME: 2020-12-10 15:10:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37373,7 +40855,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 12:58:35 +TIME: 2020-12-10 15:10:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37385,7 +40867,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/INT_UVREACTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 12:58:36 +TIME: 2020-12-10 15:10:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37397,7 +40879,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 12:58:37 +TIME: 2020-12-10 15:10:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37409,7 +40891,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 12:58:38 +TIME: 2020-12-10 15:10:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37421,7 +40903,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 12:58:39 +TIME: 2020-12-10 15:10:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37433,7 +40915,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 12:58:40 +TIME: 2020-12-10 15:10:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37445,7 +40927,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 12:58:41 +TIME: 2020-12-10 15:10:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37457,7 +40939,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-10 12:58:42 +TIME: 2020-12-10 15:10:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37469,7 +40951,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 12:58:43 +TIME: 2020-12-10 15:10:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37481,7 +40963,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-10 12:58:44 +TIME: 2020-12-10 15:10:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37493,7 +40975,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-10 12:58:45 +TIME: 2020-12-10 15:10:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37505,7 +40987,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 12:58:46 +TIME: 2020-12-10 15:10:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37517,7 +40999,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 12:58:47 +TIME: 2020-12-10 15:10:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37529,7 +41011,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 12:58:48 +TIME: 2020-12-10 15:10:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37541,7 +41023,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 12:58:49 +TIME: 2020-12-10 15:10:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37553,7 +41035,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 12:58:50 +TIME: 2020-12-10 15:10:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37565,7 +41047,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-10 12:58:51 +TIME: 2020-12-10 15:10:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37577,7 +41059,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 12:58:52 +TIME: 2020-12-10 15:10:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37589,7 +41071,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 12:58:53 +TIME: 2020-12-10 15:10:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37601,7 +41083,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 12:58:54 +TIME: 2020-12-10 15:10:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37613,7 +41095,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 12:58:55 +TIME: 2020-12-10 15:10:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37625,7 +41107,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 12:58:56 +TIME: 2020-12-10 15:10:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37637,7 +41119,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 12:58:57 +TIME: 2020-12-10 15:10:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37649,7 +41131,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 12:58:59 +TIME: 2020-12-10 15:10:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37661,7 +41143,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 12:59:00 +TIME: 2020-12-10 15:10:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37673,7 +41155,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-10 12:59:01 +TIME: 2020-12-10 15:10:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37685,7 +41167,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 12:59:02 +TIME: 2020-12-10 15:10:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37697,7 +41179,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 12:59:03 +TIME: 2020-12-10 15:10:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37709,7 +41191,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 12:59:04 +TIME: 2020-12-10 15:10:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37721,7 +41203,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 12:59:05 +TIME: 2020-12-10 15:10:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37733,7 +41215,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 12:59:06 +TIME: 2020-12-10 15:10:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37745,7 +41227,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 12:59:07 +TIME: 2020-12-10 15:10:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37757,7 +41239,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 12:59:08 +TIME: 2020-12-10 15:10:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37769,7 +41251,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 12:59:09 +TIME: 2020-12-10 15:10:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37781,7 +41263,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 12:59:10 +TIME: 2020-12-10 15:10:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37793,7 +41275,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UVREACTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 12:59:11 +TIME: 2020-12-10 15:10:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37805,7 +41287,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/UVREACTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 12:59:11 +TIME: 2020-12-10 15:10:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37817,7 +41299,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 12:59:12 +TIME: 2020-12-10 15:10:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37836,7 +41318,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-10 12:59:14 +TIME: 2020-12-10 15:10:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37848,7 +41330,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-10 12:59:15 +TIME: 2020-12-10 15:11:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37860,7 +41342,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-10 12:59:16 +TIME: 2020-12-10 15:11:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37872,7 +41354,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-10 12:59:17 +TIME: 2020-12-10 15:11:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37884,7 +41366,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-10 12:59:18 +TIME: 2020-12-10 15:11:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37896,7 +41378,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-10 12:59:19 +TIME: 2020-12-10 15:11:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37908,7 +41390,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-10 12:59:20 +TIME: 2020-12-10 15:11:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37920,7 +41402,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-10 12:59:21 +TIME: 2020-12-10 15:11:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37932,7 +41414,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-10 12:59:22 +TIME: 2020-12-10 15:11:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37944,7 +41426,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-10 12:59:23 +TIME: 2020-12-10 15:11:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37956,7 +41438,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-10 12:59:25 +TIME: 2020-12-10 15:11:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37968,7 +41450,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-10 12:59:26 +TIME: 2020-12-10 15:11:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37980,7 +41462,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-10 12:59:27 +TIME: 2020-12-10 15:11:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -37992,7 +41474,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-10 12:59:28 +TIME: 2020-12-10 15:11:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38004,7 +41486,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-10 12:59:29 +TIME: 2020-12-10 15:11:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38016,7 +41498,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-10 12:59:30 +TIME: 2020-12-10 15:11:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38028,7 +41510,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-10 12:59:31 +TIME: 2020-12-10 15:11:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38040,7 +41522,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-10 12:59:32 +TIME: 2020-12-10 15:11:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38052,7 +41534,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-10 12:59:33 +TIME: 2020-12-10 15:11:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38064,7 +41546,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-10 12:59:34 +TIME: 2020-12-10 15:11:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38076,7 +41558,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-10 12:59:35 +TIME: 2020-12-10 15:11:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38088,7 +41570,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-10 12:59:36 +TIME: 2020-12-10 15:11:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38100,7 +41582,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-10 12:59:37 +TIME: 2020-12-10 15:11:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38112,7 +41594,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-10 12:59:38 +TIME: 2020-12-10 15:11:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38124,7 +41606,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-10 12:59:40 +TIME: 2020-12-10 15:11:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38136,7 +41618,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-10 12:59:40 +TIME: 2020-12-10 15:11:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38148,7 +41630,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-10 12:59:41 +TIME: 2020-12-10 15:11:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38160,7 +41642,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-10 12:59:42 +TIME: 2020-12-10 15:11:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38172,7 +41654,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-10 12:59:44 +TIME: 2020-12-10 15:11:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38184,7 +41666,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-10 12:59:45 +TIME: 2020-12-10 15:11:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38196,7 +41678,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-10 12:59:46 +TIME: 2020-12-10 15:11:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38208,7 +41690,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-10 12:59:46 +TIME: 2020-12-10 15:11:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38220,7 +41702,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-10 12:59:47 +TIME: 2020-12-10 15:11:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38232,7 +41714,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-10 12:59:48 +TIME: 2020-12-10 15:11:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38244,7 +41726,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-10 12:59:49 +TIME: 2020-12-10 15:11:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38256,7 +41738,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-10 12:59:50 +TIME: 2020-12-10 15:11:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38268,7 +41750,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-10 12:59:51 +TIME: 2020-12-10 15:11:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38280,7 +41762,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-10 12:59:52 +TIME: 2020-12-10 15:11:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38292,7 +41774,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-10 12:59:53 +TIME: 2020-12-10 15:11:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38304,7 +41786,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-10 12:59:54 +TIME: 2020-12-10 15:11:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38316,7 +41798,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-10 12:59:55 +TIME: 2020-12-10 15:11:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38328,7 +41810,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-10 12:59:56 +TIME: 2020-12-10 15:11:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38340,7 +41822,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-10 12:59:57 +TIME: 2020-12-10 15:11:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38352,7 +41834,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-10 12:59:58 +TIME: 2020-12-10 15:11:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38364,7 +41846,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-10 12:59:59 +TIME: 2020-12-10 15:11:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38376,7 +41858,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-10 13:00:01 +TIME: 2020-12-10 15:11:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38388,7 +41870,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-10 13:00:02 +TIME: 2020-12-10 15:11:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38400,7 +41882,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-10 13:00:03 +TIME: 2020-12-10 15:11:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38412,7 +41894,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-10 13:00:04 +TIME: 2020-12-10 15:11:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38424,7 +41906,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-10 13:00:05 +TIME: 2020-12-10 15:11:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38436,7 +41918,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-10 13:00:06 +TIME: 2020-12-10 15:11:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38448,7 +41930,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-10 13:00:07 +TIME: 2020-12-10 15:11:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38460,7 +41942,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-10 13:00:08 +TIME: 2020-12-10 15:11:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38472,7 +41954,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-10 13:00:09 +TIME: 2020-12-10 15:11:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38484,7 +41966,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-10 13:00:10 +TIME: 2020-12-10 15:11:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38496,7 +41978,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-10 13:00:11 +TIME: 2020-12-10 15:12:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38508,7 +41990,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-10 13:00:12 +TIME: 2020-12-10 15:12:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38520,7 +42002,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UVREACTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316 -TIME: 2020-12-10 13:00:13 +TIME: 2020-12-10 15:12:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38532,7 +42014,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2715182316/INT_UVREACTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-10 13:00:14 +TIME: 2020-12-10 15:12:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38544,7 +42026,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-10 13:00:15 +TIME: 2020-12-10 15:12:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38556,7 +42038,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-10 13:00:16 +TIME: 2020-12-10 15:12:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38568,7 +42050,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-10 13:00:17 +TIME: 2020-12-10 15:12:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38580,7 +42062,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-10 13:00:18 +TIME: 2020-12-10 15:12:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38592,7 +42074,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-10 13:00:19 +TIME: 2020-12-10 15:12:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38604,7 +42086,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-10 13:00:20 +TIME: 2020-12-10 15:12:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38616,7 +42098,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-10 13:00:21 +TIME: 2020-12-10 15:12:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38628,7 +42110,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-10 13:00:22 +TIME: 2020-12-10 15:12:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38640,7 +42122,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-10 13:00:23 +TIME: 2020-12-10 15:12:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38652,7 +42134,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-10 13:00:24 +TIME: 2020-12-10 15:12:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38664,7 +42146,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-10 13:00:25 +TIME: 2020-12-10 15:12:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38676,7 +42158,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-10 13:00:26 +TIME: 2020-12-10 15:12:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38688,7 +42170,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-10 13:00:27 +TIME: 2020-12-10 15:12:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38700,7 +42182,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-10 13:00:28 +TIME: 2020-12-10 15:12:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38712,7 +42194,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-10 13:00:29 +TIME: 2020-12-10 15:12:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38724,7 +42206,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-10 13:00:31 +TIME: 2020-12-10 15:12:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38736,7 +42218,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-10 13:00:32 +TIME: 2020-12-10 15:12:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38748,7 +42230,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-10 13:00:33 +TIME: 2020-12-10 15:12:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38760,7 +42242,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-10 13:00:34 +TIME: 2020-12-10 15:12:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38772,7 +42254,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-10 13:00:35 +TIME: 2020-12-10 15:12:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38784,7 +42266,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-10 13:00:37 +TIME: 2020-12-10 15:12:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38796,7 +42278,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-10 13:00:38 +TIME: 2020-12-10 15:12:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38808,7 +42290,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-10 13:00:39 +TIME: 2020-12-10 15:12:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38820,7 +42302,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-10 13:00:40 +TIME: 2020-12-10 15:12:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38832,7 +42314,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-10 13:00:42 +TIME: 2020-12-10 15:12:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38844,7 +42326,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-10 13:00:44 +TIME: 2020-12-10 15:12:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38856,7 +42338,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-10 13:00:45 +TIME: 2020-12-10 15:12:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38868,7 +42350,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-10 13:00:46 +TIME: 2020-12-10 15:12:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38880,7 +42362,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-10 13:00:47 +TIME: 2020-12-10 15:12:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38892,7 +42374,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-10 13:00:48 +TIME: 2020-12-10 15:12:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38904,7 +42386,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-10 13:00:49 +TIME: 2020-12-10 15:12:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38916,7 +42398,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-10 13:00:51 +TIME: 2020-12-10 15:12:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38928,7 +42410,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-10 13:00:52 +TIME: 2020-12-10 15:12:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38940,7 +42422,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UVREACTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084 -TIME: 2020-12-10 13:00:53 +TIME: 2020-12-10 15:12:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38952,7 +42434,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/489974084/UVREACTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-10 13:00:54 +TIME: 2020-12-10 15:12:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -38964,7 +42446,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-10 13:00:55 +TIME: 2020-12-10 15:12:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) Index: results/cppcheckError.csv =================================================================== diff -u -r88f28230d288947ba84840b967e95b32e3deffaa -r00b32a5dad2e136d31cfaf0de16f7767b9920fec --- results/cppcheckError.csv (.../cppcheckError.csv) (revision 88f28230d288947ba84840b967e95b32e3deffaa) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision 00b32a5dad2e136d31cfaf0de16f7767b9920fec) @@ -28,7 +28,7 @@ dgfirmware/firmware/App/Services/AlarmMgmt.c,70,style,unusedFunction,The function 'execAlarmMgmt' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,776,style,unusedFunction,The function 'execNVDataMgmt' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,655,style,unusedFunction,The function 'execNVDataMgmtSelfTest' is never used. -dgfirmware/firmware/App/Controllers/ROPump.c,419,style,unusedFunction,The function 'execROPumpTest' is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,397,style,unusedFunction,The function 'execROPumpTest' is never used. dgfirmware/firmware/FWCommon/RTC.c,364,style,unusedFunction,The function 'execRTC' is never used. dgfirmware/firmware/FWCommon/Accel.c,665,style,unusedFunction,The function 'getAccelCalibration' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,764,style,unusedFunction,The function 'getBootloaderFlag' is never used. @@ -38,7 +38,7 @@ dgfirmware/firmware/App/Modes/ModeFault.c,88,style,unusedFunction,The function 'getCurrentFaultState' is never used. dgfirmware/firmware/App/Modes/ModeFlush.c,92,style,unusedFunction,The function 'getCurrentFlushState' is never used. dgfirmware/firmware/App/Modes/ModeHeatDisinfect.c,93,style,unusedFunction,The function 'getCurrentHeatDisinfectState' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,250,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,252,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. dgfirmware/firmware/App/Modes/ModeService.c,88,style,unusedFunction,The function 'getCurrentServiceState' is never used. dgfirmware/firmware/App/Modes/ModeSolo.c,118,style,unusedFunction,The function 'getCurrentSoloState' is never used. dgfirmware/firmware/App/Modes/ModeStandby.c,234,style,unusedFunction,The function 'getCurrentStandbyState' is never used. @@ -51,8 +51,8 @@ dgfirmware/firmware/FWCommon/NVDataMgmt.c,558,style,unusedFunction,The function 'getTreatmentTime' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,595,style,unusedFunction,The function 'getWaterConsumption' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,287,style,unusedFunction,The function 'initNVDataMgmt' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,200,style,unusedFunction,The function 'isPOSTCompleted' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,213,style,unusedFunction,The function 'isPOSTPassed' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,202,style,unusedFunction,The function 'isPOSTCompleted' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,215,style,unusedFunction,The function 'isPOSTPassed' is never used. dgfirmware/firmware/App/Drivers/Comm.c,259,style,unusedFunction,The function 'isSCI2DMATransmitInProgress' is never used. dgfirmware/firmware/App/Drivers/SafetyShutdown.c,71,style,unusedFunction,The function 'isSafetyShutdownActivated' is never used. dgfirmware/firmware/App/Services/Interrupts.c,91,style,unusedFunction,The function 'phantomInterrupt' is never used.