Index: firmware/App/Controllers/ConductivitySensors.c =================================================================== diff -u -r62236181e6a9693a619d01967b00496c1d36e146 -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 62236181e6a9693a619d01967b00496c1d36e146) +++ firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -100,14 +100,14 @@ void execConductivitySensors( void ) { - processCPiCPoSensorRead( CONDUCITIVYSENSORS_CPI_SENSOR, getFPGACPi(), getFPGACPiReadCount(), getFPGACPiErrorCount() ); - processCPiCPoSensorRead( CONDUCITIVYSENSORS_CPO_SENSOR, getFPGACPi(), getFPGACPoReadCount(), getFPGACPoErrorCount() ); + processCPiCPoSensorRead( CONDUCTIVITYSENSORS_CPI_SENSOR, getFPGACPi(), getFPGACPiReadCount(), getFPGACPiErrorCount() ); + processCPiCPoSensorRead( CONDUCTIVITYSENSORS_CPO_SENSOR, getFPGACPi(), getFPGACPoReadCount(), getFPGACPoErrorCount() ); if ( ++conductivityDataPublicationTimerCounter >= getConductivityDataPublishInterval() ) { conductivityDataPublicationTimerCounter = 0; - broadcastConductivityData( getConductivityValue(CONDUCITIVYSENSORS_CPI_SENSOR), - getConductivityValue(CONDUCITIVYSENSORS_CPO_SENSOR), + broadcastConductivityData( getConductivityValue(CONDUCTIVITYSENSORS_CPI_SENSOR), + getConductivityValue(CONDUCTIVITYSENSORS_CPO_SENSOR), 0, 0); } @@ -126,12 +126,12 @@ { if ( conductivity > COND_SENSOR_CPI_CPO_MAX_VALUE ) { - SET_ALARM_WITH_2_F32_DATA( ALARM_ID_INLET_WATER_HIGH_CONDUCITIVY, conductivity, state ); + SET_ALARM_WITH_2_F32_DATA( ALARM_ID_INLET_WATER_HIGH_CONDUCTIVITY, conductivity, state ); } if ( conductivity < COND_SENSOR_CPI_CPO_MIN_VALUE ) { - SET_ALARM_WITH_2_F32_DATA( ALARM_ID_INLET_WATER_LOW_CONDUCITIVY, conductivity, state ); + SET_ALARM_WITH_2_F32_DATA( ALARM_ID_INLET_WATER_LOW_CONDUCTIVITY, conductivity, state ); } } @@ -353,3 +353,5 @@ return result; } + +/**@}*/ Index: firmware/App/Controllers/ConductivitySensors.h =================================================================== diff -u -r05e516dc17597cee29c89e5eee25caed055f1151 -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Controllers/ConductivitySensors.h (.../ConductivitySensors.h) (revision 05e516dc17597cee29c89e5eee25caed055f1151) +++ firmware/App/Controllers/ConductivitySensors.h (.../ConductivitySensors.h) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -34,11 +34,11 @@ /// Sensors name typedef enum ConductivitySensors { - CONDUCITIVYSENSORS_CPI_SENSOR = 0, ///< Inlet water conductivity sensor. - CONDUCITIVYSENSORS_CPO_SENSOR, ///< Outlet water conductivity sensor. - CONDUCITIVYSENSORS_CD1_SENSOR, ///< Acid concentration conductivity sensor. - CONDUCITIVYSENSORS_CD2_SENSOR, ///< Bicarb concentration conductivity sensor. - NUM_OF_CONDUCTIVITY_SENSORS ///< Number of conductivity sensors. + CONDUCTIVITYSENSORS_CPI_SENSOR = 0, ///< Inlet water conductivity sensor. + CONDUCTIVITYSENSORS_CPO_SENSOR, ///< Outlet water conductivity sensor. + CONDUCTIVITYSENSORS_CD1_SENSOR, ///< Acid concentration conductivity sensor. + CONDUCTIVITYSENSORS_CD2_SENSOR, ///< Bicarb concentration conductivity sensor. + NUM_OF_CONDUCTIVITY_SENSORS ///< Number of conductivity sensors. } CONDUCTIVITY_SENSORS_T; // ********** public function prototypes ********** @@ -56,4 +56,6 @@ BOOL testSetConductivityDataPublishIntervalOverride( U32 interval_ms ); BOOL testResetConductivityDataPublishIntervalOverride( void ); +/**@}*/ + #endif Index: firmware/App/Modes/ModeDrain.c =================================================================== diff -u -r7965487decd9984a22f4d9ec56d1fb2590d1583b -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Modes/ModeDrain.c (.../ModeDrain.c) (revision 7965487decd9984a22f4d9ec56d1fb2590d1583b) +++ firmware/App/Modes/ModeDrain.c (.../ModeDrain.c) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -84,7 +84,7 @@ { // check inlet water conductivity - checkWaterConductivity( getConductivityValue(CONDUCITIVYSENSORS_CPI_SENSOR), drainState ); + checkWaterConductivity( getConductivityValue(CONDUCTIVITYSENSORS_CPI_SENSOR), drainState ); // execute current drain state switch ( drainState ) Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r7965487decd9984a22f4d9ec56d1fb2590d1583b -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 7965487decd9984a22f4d9ec56d1fb2590d1583b) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -87,7 +87,7 @@ U32 execFillMode( void ) { // check inlet water conductivity - checkWaterConductivity( getConductivityValue(CONDUCITIVYSENSORS_CPI_SENSOR), fillState ); + checkWaterConductivity( getConductivityValue(CONDUCTIVITYSENSORS_CPI_SENSOR), fillState ); // execute current Fill state Index: firmware/App/Modes/ModeRecirculate.c =================================================================== diff -u -r7965487decd9984a22f4d9ec56d1fb2590d1583b -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision 7965487decd9984a22f4d9ec56d1fb2590d1583b) +++ firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -107,7 +107,7 @@ U32 execRecirculateMode( void ) { // check inlet water conductivity - checkWaterConductivity( getConductivityValue(CONDUCITIVYSENSORS_CPI_SENSOR), recircState ); + checkWaterConductivity( getConductivityValue(CONDUCTIVITYSENSORS_CPI_SENSOR), recircState ); // execute current re-circulate state switch ( recircState ) Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r7965487decd9984a22f4d9ec56d1fb2590d1583b -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 7965487decd9984a22f4d9ec56d1fb2590d1583b) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -1331,8 +1331,8 @@ /************************************************************************* * @brief -* The handleTestSetConductivityDataPublishIntervalOverride function handles \n -* a request to override the publish interval of conductivity sensors data +* The handleTestSetConductivityDataPublishIntervalOverrideRequest function +* handles a request to override the publish interval of conductivity sensors data * @details * Inputs : none * Outputs : message handled Index: results/Build_Status_Report.csv =================================================================== diff -u -rf0f670ddd7f5f16ca79f45b5dff58283f163f13f -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision f0f670ddd7f5f16ca79f45b5dff58283f163f13f) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -1,6 +1,6 @@ Running Project, dgfirmware -Date, Fri Jul 17 17:07:19 PDT 2020 +Date, Mon Jul 20 16:24:43 PDT 2020 VectorCAST Pass/Fail Status, Passed @@ -10,7 +10,6 @@ Module, Function Name ropump,execROPumpTest modestandby,handleStandbyIdleState -temperaturesensors,handleSelfTestADCCheck temperaturesensors,handleSelfTestConsistencyCheck drainpump,handleDrainPumpControlToTargetState drainpump,execDrainPumpTest Index: results/VectorCAST.log =================================================================== diff -u -rf0f670ddd7f5f16ca79f45b5dff58283f163f13f -r318d977d9d47b1860f09b93f06cc5885723f3e77 --- results/VectorCAST.log (.../VectorCAST.log) (revision f0f670ddd7f5f16ca79f45b5dff58283f163f13f) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 318d977d9d47b1860f09b93f06cc5885723f3e77) @@ -1,6 +1,6 @@ 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-07-17 17:07:19 +TIME: 2020-07-20 16:24: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 @@ -35,7 +35,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-07-17 17:07:22 +TIME: 2020-07-20 16:24:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -180,7 +180,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-07-17 17:07:23 +TIME: 2020-07-20 16:24:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -195,7 +195,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-07-17 17:07:23 +TIME: 2020-07-20 16:24:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -404,7 +404,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-07-17 17:07:25 +TIME: 2020-07-20 16:24: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/2347984748/CCAST_.CFG @@ -439,7 +439,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-07-17 17:07:27 +TIME: 2020-07-20 16:24:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -458,10 +458,9 @@ Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 100 - Processing script line 200 - Processing script line 250 Processing script line 350 Processing script line 400 + Processing script line 500 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -514,92 +513,225 @@ >>> Processed Test Case: getConductivityValue_Invalid_Sensor (I) @LINE: 153 >>> Processing Test Case: getConductivityValue_No_Overide -(S) @LINE: 158 +(E) Errors from previous script import(s) + >>> (E) @LINE: 154 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:120.5 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 155 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 166 >>> Processed Test Case: getConductivityValue_No_Overide -(I) @LINE: 164 +(I) @LINE: 172 >>> Processing Test Case: getConductivityValue_Overide -(S) @LINE: 169 +(E) Errors from previous script import(s) + >>> (E) @LINE: 165 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:12.3 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 166 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0xCCC33C33 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 188 >>> Processed Test Case: getConductivityValue_Overide -(I) @LINE: 177 +(I) @LINE: 196 >>> Processing Test Case: initConductivitySensors_nominalPath -(S) @LINE: 183 +(E) Errors from previous script import(s) + >>> (E) @LINE: 178 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR]:1 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 179 TEST.VALUE:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR]:1 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 180 TEST.EXPECTED:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR]:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 181 TEST.EXPECTED:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR]:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR..CONDUCITIVYSENSORS_CD2_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 213 >>> Processed Test Case: initConductivitySensors_nominalPath -(I) @LINE: 191 +(I) @LINE: 221 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero -(S) @LINE: 202 +(E) Errors from previous script import(s) + >>> (E) @LINE: 192 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:2 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 198 TEST.EXPECTED:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:2 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 239 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero -(I) @LINE: 208 +(I) @LINE: 245 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(S) @LINE: 221 +(E) Errors from previous script import(s) + >>> (E) @LINE: 209 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:11 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 210 TEST.VALUE:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:10 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 211 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:12.35 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 212 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 219 TEST.EXPECTED:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:3 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 220 TEST.EXPECTED:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 275 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(I) @LINE: 227 +(I) @LINE: 281 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(S) @LINE: 241 +(E) Errors from previous script import(s) + >>> (E) @LINE: 228 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:2 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 229 TEST.VALUE:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:10 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 230 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:12.35 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 231 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 238 TEST.EXPECTED:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:4 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 239 TEST.EXPECTED:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 240 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:10.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 315 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(I) @LINE: 247 +(I) @LINE: 321 >>> Processing Test Case: processCPiCPoSensorRead_Same_FPGA_Reading -(S) @LINE: 261 +(E) Errors from previous script import(s) + >>> (E) @LINE: 248 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:123 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 249 TEST.VALUE:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:100 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 250 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:12.35 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 251 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 257 TEST.EXPECTED:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:123 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 258 TEST.EXPECTED:ConductivitySensors.<>.internalErrorCount[CONDUCITIVYSENSORS_CPI_SENSOR]:101 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 259 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:12.35 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 354 >>> Processed Test Case: processCPiCPoSensorRead_Same_FPGA_Reading -(I) @LINE: 269 +(I) @LINE: 362 >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 272 +(S) @LINE: 365 >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 278 +(I) @LINE: 371 >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_Override -(S) @LINE: 287 +(S) @LINE: 380 >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_Override -(I) @LINE: 295 +(I) @LINE: 388 >>> Processing Test Case: testResetConductivityOverride_Invalid_Sensor -(S) @LINE: 298 +(S) @LINE: 391 >>> Processed Test Case: testResetConductivityOverride_Invalid_Sensor -(I) @LINE: 304 +(I) @LINE: 397 >>> Processing Test Case: testResetConductivityOverride_NotLoggedIn -(S) @LINE: 308 +(S) @LINE: 401 >>> Processed Test Case: testResetConductivityOverride_NotLoggedIn -(I) @LINE: 314 +(I) @LINE: 407 >>> Processing Test Case: testResetConductivityOverride_Reset -(S) @LINE: 325 +(E) Errors from previous script import(s) + >>> (E) @LINE: 315 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:1.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 316 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovInitData:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 317 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:3412.23 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 318 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0xCCC33C33 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 321 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovInitData:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 322 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 323 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 435 >>> Processed Test Case: testResetConductivityOverride_Reset -(I) @LINE: 333 +(I) @LINE: 443 >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 339 +(S) @LINE: 449 >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 345 +(I) @LINE: 455 >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_Override -(S) @LINE: 357 +(S) @LINE: 467 >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_Override -(I) @LINE: 365 +(I) @LINE: 475 >>> Processing Test Case: testSetConductivityOverride_Invalid_Sensor -(S) @LINE: 370 +(S) @LINE: 480 >>> Processed Test Case: testSetConductivityOverride_Invalid_Sensor -(I) @LINE: 376 +(I) @LINE: 486 >>> Processing Test Case: testSetConductivityOverride_NotLoggedIn -(S) @LINE: 384 +(E) Errors from previous script import(s) + >>> (E) @LINE: 377 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:155.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 381 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:155.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 382 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 503 >>> Processed Test Case: testSetConductivityOverride_NotLoggedIn -(I) @LINE: 390 +(I) @LINE: 509 >>> Processing Test Case: testSetConductivityOverride_Override -(S) @LINE: 401 +(E) Errors from previous script import(s) + >>> (E) @LINE: 391 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:155.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 392 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:2.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 393 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 397 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:155.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 398 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:235.98 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 399 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0xCCC33C33 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 535 >>> Processed Test Case: testSetConductivityOverride_Override -(S) @LINE: 401 +(S) @LINE: 535 >>> 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-07-17 17:07:28 -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 tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/CONDUCTIVITYSENSORS/CONDUCTIVITYSENSORS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-17 17:07:29 +TIME: 2020-07-20 16:24:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -621,7 +753,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/CONDUCTIVITYSENSORS/CONDUCTIVITYSENSORS_cba.cvr 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-07-17 17:07:29 +TIME: 2020-07-20 16:24:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -840,7 +972,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-07-17 17:07:31 +TIME: 2020-07-20 16:24: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/2400209084/CCAST_.CFG @@ -876,7 +1008,7 @@ 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-07-17 17:07:34 +TIME: 2020-07-20 16:24:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1030,7 +1162,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-07-17 17:07:36 +TIME: 2020-07-20 16:24:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1045,7 +1177,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-07-17 17:07:37 +TIME: 2020-07-20 16:24:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1067,7 +1199,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-07-17 17:07:38 +TIME: 2020-07-20 16:25:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1304,7 +1436,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-07-17 17:07:39 +TIME: 2020-07-20 16:25: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/1963167139/CCAST_.CFG @@ -1340,7 +1472,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-07-17 17:07:42 +TIME: 2020-07-20 16:25:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1583,7 +1715,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-17 17:07:43 +TIME: 2020-07-20 16:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1605,7 +1737,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr 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-07-17 17:07:44 +TIME: 2020-07-20 16:25:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1990,7 +2122,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-07-17 17:07:45 +TIME: 2020-07-20 16:25: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/3825867763/CCAST_.CFG @@ -2025,7 +2157,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-07-17 17:07:48 +TIME: 2020-07-20 16:25:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2086,7 +2218,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-07-17 17:07:49 +TIME: 2020-07-20 16:25:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2101,7 +2233,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-07-17 17:07:49 +TIME: 2020-07-20 16:25:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2166,7 +2298,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-07-17 17:07:50 +TIME: 2020-07-20 16:25: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/3499035493/CCAST_.CFG @@ -2202,7 +2334,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-07-17 17:07:53 +TIME: 2020-07-20 16:25:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2296,7 +2428,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-07-17 17:07:54 +TIME: 2020-07-20 16:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2311,7 +2443,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-07-17 17:07:54 +TIME: 2020-07-20 16:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2440,7 +2572,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-07-17 17:07:55 +TIME: 2020-07-20 16:25: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/925127052/CCAST_.CFG @@ -2516,7 +2648,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-07-17 17:08:01 +TIME: 2020-07-20 16:25:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2886,7 +3018,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-07-17 17:08:03 +TIME: 2020-07-20 16:25:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2922,7 +3054,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-07-17 17:08:04 +TIME: 2020-07-20 16:25: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/3065853561/CCAST_.CFG @@ -3023,7 +3155,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-07-17 17:08:11 +TIME: 2020-07-20 16:25:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3041,9 +3173,7 @@ Test Script Maintenance Started Test Script Maintenance Complete (0) Translated 0 script lines - Processing script line 50 Processing script line 100 - Processing script line 250 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -3052,41 +3182,98 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execDrainMode_Check_Inlet_Water_Conduction -(S) @LINE: 34 +(E) Errors from previous script import(s) + >>> (E) @LINE: 25 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:23.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 26 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 29 TEST.EXPECTED:uut_prototype_stubs.activateAlarm2Data.alarm:ALARM_ID_INLET_WATER_LOW_CONDUCITIVY + >>> >>> Value for 'Enumeral' out of range + >>> >>> Read "ALARM_ID_INLET_WATER_LOW_CONDUCITIVY" + >>> >>> Command Ignored +(S) @LINE: 44 >>> Processed Test Case: execDrainMode_Check_Inlet_Water_Conduction -(I) @LINE: 44 +(I) @LINE: 54 >>> Processing Test Case: execFillMode_Check_Inlet_Water_Conductivity -(S) @LINE: 54 +(E) Errors from previous script import(s) + >>> (E) @LINE: 45 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:5242.35 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 46 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 49 TEST.EXPECTED:uut_prototype_stubs.activateAlarm2Data.alarm:ALARM_ID_INLET_WATER_HIGH_CONDUCITIVY + >>> >>> Value for 'Enumeral' out of range + >>> >>> Read "ALARM_ID_INLET_WATER_HIGH_CONDUCITIVY" + >>> >>> Command Ignored +(S) @LINE: 74 >>> Processed Test Case: execFillMode_Check_Inlet_Water_Conductivity -(I) @LINE: 64 +(I) @LINE: 84 >>> Processing Test Case: execRecirculateMode_Check_Inlet_Water_Conductivity -(S) @LINE: 72 +(E) Errors from previous script import(s) + >>> (E) @LINE: 65 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:10.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 67 TEST.EXPECTED:uut_prototype_stubs.activateAlarm2Data.alarm:ALARM_ID_INLET_WATER_LOW_CONDUCITIVY + >>> >>> Value for 'Enumeral' out of range + >>> >>> Read "ALARM_ID_INLET_WATER_LOW_CONDUCITIVY" + >>> >>> Command Ignored +(S) @LINE: 100 >>> Processed Test Case: execRecirculateMode_Check_Inlet_Water_Conductivity -(I) @LINE: 82 +(I) @LINE: 110 >>> Processing Test Case: OverrideResetConductivityDataPublishInterval -(E) @LINE: 105 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 - >>> Expected a field name from the record type CCAST_9_12 - >>> Read: override::EXPECTED_BASE=16 +(E) @LINE: 137 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 + >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> Command Ignored. (E) Errors from previous script import(s) + >>> (E) @LINE: 105 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. >>> (E) @LINE: 100 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 >>> >>> Expected a field name from the record type CCAST_9_12 >>> >>> Read: override::EXPECTED_BASE=16 -(S) @LINE: 110 +(S) @LINE: 142 >>> Processed Test Case: OverrideResetConductivityDataPublishInterval -(I) @LINE: 116 +(I) @LINE: 148 >>> Processing Test Case: OverrideSetConductivityDataPublishInterval -(E) @LINE: 138 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 - >>> Expected a field name from the record type CCAST_9_12 - >>> Read: override::EXPECTED_BASE=16 +(E) @LINE: 174 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 + >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> Command Ignored. (E) Errors from previous script import(s) + >>> (E) @LINE: 138 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. >>> (E) @LINE: 128 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 >>> >>> Expected a field name from the record type CCAST_9_12 >>> >>> Read: override::EXPECTED_BASE=16 -(S) @LINE: 143 +(S) @LINE: 179 >>> Processed Test Case: OverrideSetConductivityDataPublishInterval -(I) @LINE: 151 +(I) @LINE: 187 >>> Processing Test Case: OverrideResetSetConductivity +(E) @LINE: 238 TEST.ATTRIBUTES:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override::EXPECTED_BASE=16 + >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> Command Ignored. (E) Errors from previous script import(s) + >>> (E) @LINE: 163 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].data:100.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 164 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].ovInitData:20.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 165 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].ovData:241.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 166 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].override:0xCCC33C33 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 182 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].ovData:20.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 183 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].override:0x0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. >>> (E) @LINE: 79 TEST.ATTRIBUTES:SystemCommMessages.handleTestSetConductivityDataPublishIntervalOverride.message[0].payload[0]:INPUT_BASE=16 >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride >>> >>> in unit SystemCommMessages. @@ -3095,11 +3282,20 @@ >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride >>> >>> in unit SystemCommMessages. >>> >>> Value Line Error - Command Ignored -(S) @LINE: 184 +(S) @LINE: 239 >>> Processed Test Case: OverrideResetSetConductivity -(I) @LINE: 190 +(I) @LINE: 245 >>> Processing Test Case: OverrideTestSetConductivity (E) Errors from previous script import(s) + >>> (E) @LINE: 202 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:100.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 218 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:200.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 219 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0xCCC33C33 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. >>> (E) @LINE: 105 TEST.ATTRIBUTES:SystemCommMessages.handleTestSetConductivityDataPublishIntervalOverride.message[0].payload[0]:INPUT_BASE=16 >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride >>> >>> in unit SystemCommMessages. @@ -3108,11 +3304,14 @@ >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride >>> >>> in unit SystemCommMessages. >>> >>> Value Line Error - Command Ignored -(S) @LINE: 220 +(S) @LINE: 287 >>> Processed Test Case: OverrideTestSetConductivity -(I) @LINE: 230 +(I) @LINE: 297 >>> Processing Test Case: taskPriority_execConductivitySensors (E) Errors from previous script import(s) + >>> (E) @LINE: 244 TEST.VALUE:ConductivitySensors.<>.readCount[CONDUCITIVYSENSORS_CPI_SENSOR]:3 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. >>> (E) @LINE: 214 TEST.VALUE:uut_prototype_stubs.isReverseOsmosisPumpOn.return:1 >>> >>> Could not find function isReverseOsmosisPumpOn >>> >>> in unit uut_prototype_stubs. @@ -3123,17 +3322,42 @@ >>> (E) @LINE: 216 TEST.EXPECTED:TemperatureSensors.<>.tempSensorsExecState:TEMPSENSORS_EXEC_STATE_START >>> >>> The specified unit was not found. >>> >>> Value Line Error - Command Ignored -(S) @LINE: 250 +(S) @LINE: 319 >>> Processed Test Case: taskPriority_execConductivitySensors -(I) @LINE: 260 +(I) @LINE: 329 >>> Processing Test Case: initSoftware_initConductivitySensors -(S) @LINE: 269 +(E) Errors from previous script import(s) + >>> (E) @LINE: 261 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:6.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 262 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovInitData:4.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 263 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:2.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 264 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:234 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 265 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 266 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovInitData:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 267 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].ovData:0.0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 268 TEST.EXPECTED:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. +(S) @LINE: 374 >>> Processed Test Case: initSoftware_initConductivitySensors -(S) @LINE: 269 +(S) @LINE: 374 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-17 17:08:13 +TIME: 2020-07-20 16:25:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3155,7 +3379,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr 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-07-17 17:08:13 +TIME: 2020-07-20 16:25:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3237,7 +3461,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-07-17 17:08:14 +TIME: 2020-07-20 16:25: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/194968077/CCAST_.CFG @@ -3329,7 +3553,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-07-17 17:08:21 +TIME: 2020-07-20 16:25:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3395,7 +3619,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-17 17:08:23 +TIME: 2020-07-20 16:25:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3410,7 +3634,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-07-17 17:08:23 +TIME: 2020-07-20 16:25:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3442,7 +3666,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-07-17 17:08:24 +TIME: 2020-07-20 16:25:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3523,7 +3747,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-07-17 17:08:25 +TIME: 2020-07-20 16:25: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/865302348/CCAST_.CFG @@ -3624,7 +3848,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-07-17 17:08:33 +TIME: 2020-07-20 16:25:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3737,7 +3961,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-07-17 17:08:34 +TIME: 2020-07-20 16:25:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3869,7 +4093,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-07-17 17:08:35 +TIME: 2020-07-20 16:25: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/1672699515/CCAST_.CFG @@ -3940,7 +4164,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-07-17 17:08:41 +TIME: 2020-07-20 16:26:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3994,7 +4218,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-07-17 17:08:42 +TIME: 2020-07-20 16:26:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4009,7 +4233,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-07-17 17:08:43 +TIME: 2020-07-20 16:26:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4067,7 +4291,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-07-17 17:08:44 +TIME: 2020-07-20 16:26: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/9217169/CCAST_.CFG @@ -4114,7 +4338,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-07-17 17:08:47 +TIME: 2020-07-20 16:26:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4159,7 +4383,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-07-17 17:08:48 +TIME: 2020-07-20 16:26:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4174,7 +4398,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-07-17 17:08:49 +TIME: 2020-07-20 16:26:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4198,7 +4422,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-07-17 17:08:49 +TIME: 2020-07-20 16:26:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4241,7 +4465,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-07-17 17:08:50 +TIME: 2020-07-20 16:26: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/4235259824/CCAST_.CFG @@ -4288,7 +4512,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-07-17 17:08:53 +TIME: 2020-07-20 16:26:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4346,7 +4570,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-17 17:08:54 +TIME: 2020-07-20 16:26:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4370,7 +4594,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr 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-07-17 17:08:55 +TIME: 2020-07-20 16:26:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4420,7 +4644,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-07-17 17:08:56 +TIME: 2020-07-20 16:26: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/1236077553/CCAST_.CFG @@ -4487,7 +4711,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-07-17 17:09:01 +TIME: 2020-07-20 16:26:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4549,7 +4773,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-07-17 17:09:03 +TIME: 2020-07-20 16:26:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4564,7 +4788,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-07-17 17:09:03 +TIME: 2020-07-20 16:26:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4637,7 +4861,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-07-17 17:09:04 +TIME: 2020-07-20 16:26: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/3433100860/CCAST_.CFG @@ -4695,7 +4919,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-07-17 17:09:09 +TIME: 2020-07-20 16:26:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4753,7 +4977,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-07-17 17:09:10 +TIME: 2020-07-20 16:26:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4768,7 +4992,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-07-17 17:09:10 +TIME: 2020-07-20 16:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4794,7 +5018,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-07-17 17:09:11 +TIME: 2020-07-20 16:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4860,7 +5084,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-07-17 17:09:12 +TIME: 2020-07-20 16:26:33 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 @@ -4936,7 +5160,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-07-17 17:09:18 +TIME: 2020-07-20 16:26:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4982,7 +5206,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-07-17 17:09:20 +TIME: 2020-07-20 16:26:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4997,7 +5221,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-07-17 17:09:20 +TIME: 2020-07-20 16:26:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5041,7 +5265,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-07-17 17:09:21 +TIME: 2020-07-20 16:26: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/553544110/CCAST_.CFG @@ -5121,7 +5345,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-07-17 17:09:27 +TIME: 2020-07-20 16:26:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5175,7 +5399,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-07-17 17:09:28 +TIME: 2020-07-20 16:26:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5219,7 +5443,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-07-17 17:09:29 +TIME: 2020-07-20 16:26:50 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 @@ -5299,7 +5523,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-07-17 17:09:36 +TIME: 2020-07-20 16:26:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5362,7 +5586,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-07-17 17:09:38 +TIME: 2020-07-20 16:26:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5377,7 +5601,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-17 17:09:39 +TIME: 2020-07-20 16:26:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5407,7 +5631,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr 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-07-17 17:09:39 +TIME: 2020-07-20 16:26:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5480,7 +5704,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-07-17 17:09:41 +TIME: 2020-07-20 16:27: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/3023750484/CCAST_.CFG @@ -5587,7 +5811,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-07-17 17:09:50 +TIME: 2020-07-20 16:27:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5654,7 +5878,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-07-17 17:09:51 +TIME: 2020-07-20 16:27:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5669,7 +5893,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-07-17 17:09:52 +TIME: 2020-07-20 16:27:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5705,7 +5929,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-07-17 17:09:52 +TIME: 2020-07-20 16:27:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5788,7 +6012,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-07-17 17:09:53 +TIME: 2020-07-20 16:27: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/3092074925/CCAST_.CFG @@ -5898,7 +6122,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-07-17 17:10:03 +TIME: 2020-07-20 16:27:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5983,7 +6207,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-17 17:10:05 +TIME: 2020-07-20 16:27:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5998,7 +6222,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-07-17 17:10:05 +TIME: 2020-07-20 16:27:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6034,7 +6258,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-07-17 17:10:06 +TIME: 2020-07-20 16:27:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6146,7 +6370,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-07-17 17:10:07 +TIME: 2020-07-20 16:27: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/2381647150/CCAST_.CFG @@ -6213,7 +6437,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-07-17 17:10:12 +TIME: 2020-07-20 16:27:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6252,6 +6476,18 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execConductivitySensors_BroadcastData +(E) @LINE: 25 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:101.11 + >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> Command Ignored. +(E) @LINE: 26 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> Command Ignored. +(E) @LINE: 27 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].data:202.22 + >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> Command Ignored. +(E) @LINE: 28 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].override:0 + >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> Command Ignored. (E) @LINE: 31 TEST.ATTRIBUTES:SystemComm.processReceivedMessage.message[0].hdr.msgID::INPUT_BASE=16 >>> Expected a field name from the record type MESSAGE_HEADER_T >>> Read: msgID::INPUT_BASE=16 @@ -6393,7 +6629,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-07-17 17:10:14 +TIME: 2020-07-20 16:27:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6421,7 +6657,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-07-17 17:10:15 +TIME: 2020-07-20 16:27:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6667,7 +6903,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-07-17 17:10:16 +TIME: 2020-07-20 16:27: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/2084893629/CCAST_.CFG @@ -6759,7 +6995,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-07-17 17:10:25 +TIME: 2020-07-20 16:27:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6857,7 +7093,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-07-17 17:10:27 +TIME: 2020-07-20 16:27:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6952,7 +7188,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-07-17 17:10:28 +TIME: 2020-07-20 16:27: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/3585417238/CCAST_.CFG @@ -7034,7 +7270,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-07-17 17:10:36 +TIME: 2020-07-20 16:27:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7097,7 +7333,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-07-17 17:10:37 +TIME: 2020-07-20 16:27:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7112,7 +7348,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-07-17 17:10:38 +TIME: 2020-07-20 16:27:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7186,7 +7422,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-07-17 17:10:39 +TIME: 2020-07-20 16:27: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/1396715880/CCAST_.CFG @@ -7221,7 +7457,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-07-17 17:10:42 +TIME: 2020-07-20 16:27:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7325,7 +7561,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-07-17 17:10:43 +TIME: 2020-07-20 16:27:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7340,7 +7576,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-07-17 17:10:44 +TIME: 2020-07-20 16:27:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7486,7 +7722,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-07-17 17:10:45 +TIME: 2020-07-20 16:28: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/2214729248/CCAST_.CFG @@ -7521,7 +7757,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-07-17 17:10:48 +TIME: 2020-07-20 16:28:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7583,7 +7819,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-07-17 17:10:49 +TIME: 2020-07-20 16:28:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7598,7 +7834,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-07-17 17:10:50 +TIME: 2020-07-20 16:28:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7671,7 +7907,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-07-17 17:10:51 +TIME: 2020-07-20 16:28: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/3431170211/CCAST_.CFG @@ -7707,7 +7943,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-07-17 17:10:53 +TIME: 2020-07-20 16:28:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7777,7 +8013,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-17 17:10:55 +TIME: 2020-07-20 16:28:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7792,7 +8028,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-17 17:10:55 +TIME: 2020-07-20 16:28:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7814,7 +8050,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr 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-07-17 17:10:56 +TIME: 2020-07-20 16:28:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7902,7 +8138,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-07-17 17:10:57 +TIME: 2020-07-20 16:28: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/428270081/CCAST_.CFG @@ -7937,7 +8173,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-07-17 17:11:00 +TIME: 2020-07-20 16:28:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8019,7 +8255,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-17 17:11:02 +TIME: 2020-07-20 16:28:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8034,7 +8270,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-07-17 17:11:02 +TIME: 2020-07-20 16:28:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8056,7 +8292,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-07-17 17:11:03 +TIME: 2020-07-20 16:28:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8167,7 +8403,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-07-17 17:11:04 +TIME: 2020-07-20 16:28: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/336674795/CCAST_.CFG @@ -8202,7 +8438,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-07-17 17:11:07 +TIME: 2020-07-20 16:28:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8297,7 +8533,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-07-17 17:11:08 +TIME: 2020-07-20 16:28:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8312,7 +8548,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-07-17 17:11:09 +TIME: 2020-07-20 16:28:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8334,7 +8570,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-07-17 17:11:09 +TIME: 2020-07-20 16:28:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8466,7 +8702,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-07-17 17:11:10 +TIME: 2020-07-20 16:28: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/1114345785/CCAST_.CFG @@ -8501,7 +8737,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-07-17 17:11:13 +TIME: 2020-07-20 16:28:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8602,7 +8838,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-07-17 17:11:14 +TIME: 2020-07-20 16:28:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8617,7 +8853,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-07-17 17:11:14 +TIME: 2020-07-20 16:28:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8755,7 +8991,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-07-17 17:11:15 +TIME: 2020-07-20 16:28: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/241608158/CCAST_.CFG @@ -8790,7 +9026,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-07-17 17:11:19 +TIME: 2020-07-20 16:28:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8949,7 +9185,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-07-17 17:11:20 +TIME: 2020-07-20 16:28:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8964,7 +9200,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-07-17 17:11:21 +TIME: 2020-07-20 16:28:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9207,7 +9443,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-07-17 17:11:22 +TIME: 2020-07-20 16:28:33 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 @@ -9242,7 +9478,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-07-17 17:11:25 +TIME: 2020-07-20 16:28:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9372,7 +9608,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-07-17 17:11:26 +TIME: 2020-07-20 16:28:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9387,7 +9623,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/PRESSURES/PRESSURES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-17 17:11:27 +TIME: 2020-07-20 16:28:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9409,7 +9645,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/PRESSURES/PRESSURES_cba.cvr 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-07-17 17:11:28 +TIME: 2020-07-20 16:28:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9600,7 +9836,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-07-17 17:11:29 +TIME: 2020-07-20 16:28: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/148424956/CCAST_.CFG @@ -9635,7 +9871,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-07-17 17:11:31 +TIME: 2020-07-20 16:28:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9825,7 +10061,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-07-17 17:11:33 +TIME: 2020-07-20 16:28:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9840,7 +10076,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-07-17 17:11:33 +TIME: 2020-07-20 16:28:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10143,7 +10379,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-07-17 17:11:35 +TIME: 2020-07-20 16:28: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/1091159810/CCAST_.CFG @@ -10179,7 +10415,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-07-17 17:11:37 +TIME: 2020-07-20 16:28:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10376,7 +10612,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-17 17:11:39 +TIME: 2020-07-20 16:28:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10391,7 +10627,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-07-17 17:11:39 +TIME: 2020-07-20 16:28:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10413,7 +10649,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-07-17 17:11:40 +TIME: 2020-07-20 16:28:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10725,7 +10961,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-07-17 17:11:42 +TIME: 2020-07-20 16:28: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/480960922/CCAST_.CFG @@ -10760,7 +10996,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-07-17 17:11:45 +TIME: 2020-07-20 16:28:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10794,7 +11030,6 @@ Processing script line 1150 Processing script line 1200 Processing script line 1250 - Processing script line 1350 Processing script line 1400 Processing script line 1450 Processing script line 1500 @@ -11175,69 +11410,79 @@ >>> Processed Test Case: A015_ConductivityOverride (I) @LINE: 1334 >>> Processing Test Case: A016_ConductivityBroadcastIntervalOverride -(E) @LINE: 1339 TEST.EXPECTED:uut_prototype_stubs.handleTestSetConductivityDataPublishIntervalOverride.message[0].hdr.msgID:0xA016 - >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride - >>> in unit uut_prototype_stubs. - >>> Value Line Error - Command Ignored -(E) @LINE: 1340 TEST.EXPECTED:uut_prototype_stubs.handleTestSetConductivityDataPublishIntervalOverride.message[0].hdr.payloadLen:8 - >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride - >>> in unit uut_prototype_stubs. - >>> Value Line Error - Command Ignored -(S) @LINE: 1343 +(E) @LINE: 1360 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::EXPECTED_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1357 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::EXPECTED_BASE=16 + >>> (E) @LINE: 1353 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::EXPECTED_BASE=16 + >>> (E) @LINE: 1339 TEST.EXPECTED:uut_prototype_stubs.handleTestSetConductivityDataPublishIntervalOverride.message[0].hdr.msgID:0xA016 + >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 1340 TEST.EXPECTED:uut_prototype_stubs.handleTestSetConductivityDataPublishIntervalOverride.message[0].hdr.payloadLen:8 + >>> >>> Could not find function handleTestSetConductivityDataPublishIntervalOverride + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 1361 >>> Processed Test Case: A016_ConductivityBroadcastIntervalOverride -(I) @LINE: 1349 +(I) @LINE: 1367 >>> Processing Test Case: InvalidMessageID -(S) @LINE: 1356 +(S) @LINE: 1374 >>> Processed Test Case: InvalidMessageID -(I) @LINE: 1362 +(I) @LINE: 1380 >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 1371 +(S) @LINE: 1389 >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 1377 +(I) @LINE: 1395 >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 1388 +(S) @LINE: 1406 >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 1394 +(I) @LINE: 1412 >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 1405 +(S) @LINE: 1423 >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 1413 +(I) @LINE: 1431 >>> Processing Test Case: processReceivedMessages_ACKReceived -(S) @LINE: 1424 +(S) @LINE: 1442 >>> Processed Test Case: processReceivedMessages_ACKReceived -(I) @LINE: 1430 +(I) @LINE: 1448 >>> Processing Test Case: processReceivedMessages_ACKRequired -(S) @LINE: 1441 +(S) @LINE: 1459 >>> Processed Test Case: processReceivedMessages_ACKRequired -(I) @LINE: 1447 +(I) @LINE: 1465 >>> Processing Test Case: processReceivedMessages_BadCRC -(S) @LINE: 1453 +(S) @LINE: 1471 >>> Processed Test Case: processReceivedMessages_BadCRC -(I) @LINE: 1459 +(I) @LINE: 1477 >>> Processing Test Case: processReceivedMessages_NoMessagesReceived -(S) @LINE: 1462 +(S) @LINE: 1480 >>> Processed Test Case: processReceivedMessages_NoMessagesReceived -(I) @LINE: 1468 +(I) @LINE: 1486 >>> Processing Test Case: processReceivedMessages_OneMessageReceived -(S) @LINE: 1474 +(S) @LINE: 1492 >>> Processed Test Case: processReceivedMessages_OneMessageReceived -(I) @LINE: 1482 +(I) @LINE: 1500 >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 1486 +(S) @LINE: 1504 >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 1492 +(I) @LINE: 1510 >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 1501 +(S) @LINE: 1519 >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 1507 +(I) @LINE: 1525 >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 1515 +(S) @LINE: 1533 >>> Processed Test Case: PendingCANPacketIsPartial -(S) @LINE: 1515 +(S) @LINE: 1533 >>> 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-07-17 17:11:47 +TIME: 2020-07-20 16:28:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11842,7 +12087,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-07-17 17:11:49 +TIME: 2020-07-20 16:28: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/456249163/CCAST_.CFG @@ -11877,7 +12122,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-07-17 17:11:52 +TIME: 2020-07-20 16:29:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12736,7 +12981,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-07-17 17:11:54 +TIME: 2020-07-20 16:29:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12758,7 +13003,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-07-17 17:11:55 +TIME: 2020-07-20 16:29:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13574,7 +13819,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-07-17 17:11:58 +TIME: 2020-07-20 16:29: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/3934269912/CCAST_.CFG @@ -13609,7 +13854,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-07-17 17:12:02 +TIME: 2020-07-20 16:29:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13900,7 +14145,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/TEMPERATURESENSORS/TEMPERATURESENSORS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-17 17:12:04 +TIME: 2020-07-20 16:29:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13922,7 +14167,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/TEMPERATURESENSORS/TEMPERATURESENSORS_cba.cvr 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-07-17 17:12:04 +TIME: 2020-07-20 16:29:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14310,7 +14555,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-07-17 17:12:06 +TIME: 2020-07-20 16:29: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/754038457/CCAST_.CFG @@ -14345,7 +14590,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-07-17 17:12:09 +TIME: 2020-07-20 16:29:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14833,7 +15078,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-07-17 17:12:11 +TIME: 2020-07-20 16:29:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14848,7 +15093,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-07-17 17:12:12 +TIME: 2020-07-20 16:29:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15559,7 +15804,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-07-17 17:12:14 +TIME: 2020-07-20 16:29: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/1297968848/CCAST_.CFG @@ -15594,7 +15839,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-07-17 17:12:17 +TIME: 2020-07-20 16:29:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15737,7 +15982,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-07-17 17:12:18 +TIME: 2020-07-20 16:29:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15752,7 +15997,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-07-17 17:12:19 +TIME: 2020-07-20 16:29:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15982,7 +16227,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-17 17:12:22 +TIME: 2020-07-20 16:29:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15994,7 +16239,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 CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-17 17:12:23 +TIME: 2020-07-20 16:29:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16006,7 +16251,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 DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-17 17:12:23 +TIME: 2020-07-20 16:29:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16018,7 +16263,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 HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-17 17:12:24 +TIME: 2020-07-20 16:29:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16030,7 +16275,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-07-17 17:12:25 +TIME: 2020-07-20 16:29:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16042,7 +16287,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-07-17 17:12:26 +TIME: 2020-07-20 16:29:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16054,7 +16299,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_COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-17 17:12:26 +TIME: 2020-07-20 16:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16066,7 +16311,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_CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-17 17:12:27 +TIME: 2020-07-20 16:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16078,7 +16323,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_DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-17 17:12:28 +TIME: 2020-07-20 16:29:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16090,7 +16335,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_HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-17 17:12:29 +TIME: 2020-07-20 16:29:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16102,7 +16347,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_LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-17 17:12:29 +TIME: 2020-07-20 16:29:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16114,7 +16359,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_MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-17 17:12:30 +TIME: 2020-07-20 16:29:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16126,7 +16371,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_MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-17 17:12:31 +TIME: 2020-07-20 16:29:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16138,7 +16383,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_MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-17 17:12:32 +TIME: 2020-07-20 16:29:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16150,7 +16395,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_MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-17 17:12:32 +TIME: 2020-07-20 16:29:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16162,7 +16407,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-07-17 17:12:33 +TIME: 2020-07-20 16:29:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16174,7 +16419,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-07-17 17:12:34 +TIME: 2020-07-20 16:29:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16186,7 +16431,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_PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-17 17:12:35 +TIME: 2020-07-20 16:29:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16198,7 +16443,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-07-17 17:12:35 +TIME: 2020-07-20 16:29:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16210,7 +16455,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-07-17 17:12:36 +TIME: 2020-07-20 16:29:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16222,7 +16467,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_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-17 17:12:37 +TIME: 2020-07-20 16:29:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16234,7 +16479,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_TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-17 17:12:38 +TIME: 2020-07-20 16:29:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16246,7 +16491,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_VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-17 17:12:38 +TIME: 2020-07-20 16:29:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16258,7 +16503,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 LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-17 17:12:39 +TIME: 2020-07-20 16:29:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16270,7 +16515,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 MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-17 17:12:40 +TIME: 2020-07-20 16:29:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16282,7 +16527,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 MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-17 17:12:41 +TIME: 2020-07-20 16:29:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16294,7 +16539,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 MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-17 17:12:41 +TIME: 2020-07-20 16:29:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16306,7 +16551,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 MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-17 17:12:42 +TIME: 2020-07-20 16:29:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16318,7 +16563,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-07-17 17:12:43 +TIME: 2020-07-20 16:29:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16330,7 +16575,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 OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-17 17:12:43 +TIME: 2020-07-20 16:29:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16342,7 +16587,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 PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-17 17:12:44 +TIME: 2020-07-20 16:29:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16354,7 +16599,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-07-17 17:12:45 +TIME: 2020-07-20 16:29:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16366,7 +16611,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-07-17 17:12:45 +TIME: 2020-07-20 16:29:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16378,7 +16623,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 SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-17 17:12:46 +TIME: 2020-07-20 16:30:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16390,7 +16635,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-07-17 17:12:47 +TIME: 2020-07-20 16:30:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16402,7 +16647,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 TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-17 17:12:48 +TIME: 2020-07-20 16:30:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16414,7 +16659,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 VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-07-17 17:12:49 +TIME: 2020-07-20 16:30:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16426,7 +16671,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-07-17 17:12:49 +TIME: 2020-07-20 16:30:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16445,7 +16690,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-17 17:12:51 +TIME: 2020-07-20 16:30:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16457,7 +16702,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 CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-17 17:12:51 +TIME: 2020-07-20 16:30:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16469,7 +16714,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 DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-17 17:12:52 +TIME: 2020-07-20 16:30:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16481,7 +16726,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 HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-17 17:12:53 +TIME: 2020-07-20 16:30:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16493,7 +16738,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-07-17 17:12:54 +TIME: 2020-07-20 16:30:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16505,7 +16750,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-07-17 17:12:54 +TIME: 2020-07-20 16:30:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16517,7 +16762,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_COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-17 17:12:55 +TIME: 2020-07-20 16:30:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16529,7 +16774,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_CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-17 17:12:56 +TIME: 2020-07-20 16:30:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16541,7 +16786,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_DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-17 17:12:57 +TIME: 2020-07-20 16:30:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16553,7 +16798,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_HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-17 17:12:57 +TIME: 2020-07-20 16:30:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16565,7 +16810,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_LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-17 17:12:58 +TIME: 2020-07-20 16:30:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16577,7 +16822,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_MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-17 17:12:59 +TIME: 2020-07-20 16:30:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16589,7 +16834,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_MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-17 17:13:00 +TIME: 2020-07-20 16:30:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16601,7 +16846,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_MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-17 17:13:00 +TIME: 2020-07-20 16:30:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16613,7 +16858,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_MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-17 17:13:01 +TIME: 2020-07-20 16:30:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16625,7 +16870,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-07-17 17:13:02 +TIME: 2020-07-20 16:30:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16637,7 +16882,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-07-17 17:13:02 +TIME: 2020-07-20 16:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16649,7 +16894,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_PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-17 17:13:03 +TIME: 2020-07-20 16:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16661,7 +16906,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-07-17 17:13:04 +TIME: 2020-07-20 16:30:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16673,7 +16918,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-07-17 17:13:05 +TIME: 2020-07-20 16:30:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16685,7 +16930,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_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-17 17:13:05 +TIME: 2020-07-20 16:30:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16697,7 +16942,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_TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-17 17:13:06 +TIME: 2020-07-20 16:30:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16709,7 +16954,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_VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-17 17:13:07 +TIME: 2020-07-20 16:30:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16721,7 +16966,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 LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-17 17:13:08 +TIME: 2020-07-20 16:30:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16733,7 +16978,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 MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-17 17:13:08 +TIME: 2020-07-20 16:30:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16745,7 +16990,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 MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-17 17:13:09 +TIME: 2020-07-20 16:30:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16757,7 +17002,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 MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-17 17:13:10 +TIME: 2020-07-20 16:30:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16769,7 +17014,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 MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-17 17:13:11 +TIME: 2020-07-20 16:30:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16781,7 +17026,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-07-17 17:13:11 +TIME: 2020-07-20 16:30:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16793,7 +17038,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 OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-17 17:13:12 +TIME: 2020-07-20 16:30:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16805,7 +17050,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 PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-17 17:13:13 +TIME: 2020-07-20 16:30:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16817,7 +17062,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-07-17 17:13:14 +TIME: 2020-07-20 16:30:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16829,7 +17074,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-07-17 17:13:14 +TIME: 2020-07-20 16:30:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16841,7 +17086,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 SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-17 17:13:15 +TIME: 2020-07-20 16:30:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16853,7 +17098,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-07-17 17:13:16 +TIME: 2020-07-20 16:30:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16865,7 +17110,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 TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-17 17:13:18 +TIME: 2020-07-20 16:30:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16877,7 +17122,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 VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-07-17 17:13:18 +TIME: 2020-07-20 16:30:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16889,7 +17134,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-07-17 17:13:19 +TIME: 2020-07-20 16:30:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19)