Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -rd717fd8e877c00b205621ca5ef885c9a59c47376 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision d717fd8e877c00b205621ca5ef885c9a59c47376) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -32,6 +32,9 @@ #define CONCENTRATE_PUMP_ON_CONTROL 0x1A ///< Configuration to turn on concentrate pump with 8 microsteps. #define CONCENTRATE_PUMP_OFF_CONTROL 0x3A ///< Configuration to turn off concentrate pump. +#define CONCENTRATE_PUMP_FORWARD_DIR 0x1 ///< Concentrate pump forward direction configuration. +#define CONCENTRATE_PUMP_REVERSE_DIR 0x0 ///< Concentrate pump reverse direction configuration. + #define CONCENTRATE_PUMP_SPEED_INCREMENT 8.0 ///< Speed increase (mL/min) when controlling concentrate pump to target step speed. #define CONCENTRATE_PUMP_MIN_SPEED 3.0 ///< Minimum speed for concentrate pump in mL per min. #define CONCENTRATE_PUMP_MAX_SPEED 49.0 ///< Maximum speed for concentrate pump in mL per min. @@ -61,28 +64,39 @@ NUM_OF_CONCENTRATE_PUMP_STATES ///< Number of concentrate pump states } CONCENTRATE_PUMP_STATE_T; +/// Concentrate pump data structure +typedef struct +{ + U32 controlTimerCounter; ///< Timer counter to perform control on concentrate pump + CONCENTRATE_PUMP_STATE_T execState; ///< Concentrate pump execute current state + BOOL hasTurnOnPumpsBeenRequested; ///< Flag indicates a request to turn concentrate pumps on + + F32 pumpTargetSpeed; ///< Target concentrate pumps' speed (mL/min) + F32 currentPumpSpeed; ///< Current controlled concentrate pumps' speed (mL/min) + OVERRIDE_F32_T measuredPumpSpeed; ///< Measured concentrate pump speed (mL/min) + U16 togglePeriodCount; ///< Converted pump speed (mL/min) to toggle period counts (0.5 uS increment counts per step) + + U08 direction; ///< Concentrate pump motor direction. + void ( *control )( U08 ); ///< Concentrate pump FPGA control function pointer + void ( *setStepSpeed )( U16 ); ///< Concentrate pump FPGA set step speed function pointer +} CONCENTRATE_PUMP_T; + // ********** private data ********** -static CONCENTRATE_PUMP_STATE_T concentratePumpState; ///< Concentrate pump module current state. -static BOOL hasTurnOnPumpsBeenRequested; ///< Flag indicates a request to turn concentrate pumps on. -static U32 concentratePumpControlTimerCounter; ///< Timer counter to perform control on concentrate pump. static U32 concentratePumpMonitorTimerCounter; ///< Timer counter to perform monitor on concentrate pump. /// Concentrate pump data publish interval. static OVERRIDE_U32_T concentratePumpDataPublishInterval = { CONCENTRATE_PUMP_DATA_PUBLISH_INTERVAL, CONCENTRATE_PUMP_DATA_PUBLISH_INTERVAL, 0, 0 }; -static F32 pumpTargetSpeed[ NUM_OF_CONCENTRATE_PUMPS ]; ///< Target concentrate pumps' speed (mL/min). -static F32 currentPumpSpeed[ NUM_OF_CONCENTRATE_PUMPS ]; ///< Current controlled concentrate pumps' speed (mL/min). -static OVERRIDE_F32_T measuredPumpSpeed[ NUM_OF_CONCENTRATE_PUMPS ]; ///< Measured concentrate pump speed (mL/min). -static U16 togglePeriodCount[ NUM_OF_CONCENTRATE_PUMPS ]; ///< Converted pump speed (mL/min) to toggle period counts (0.5 uS increment counts per step). +static CONCENTRATE_PUMP_T concentratePumps[ NUM_OF_CONCENTRATE_PUMPS ]; ///< Array of concentrate pumps' data structure. // ********** private function prototypes ********** -static void stopConcentratePump( void ); -static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOffState( void ); +static void stopConcentratePump( CONCENTRATE_PUMPS_T pumpId ); +static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOffState( CONCENTRATE_PUMPS_T pumpId ); static void stepConcentratePumpToTargetSpeed( CONCENTRATE_PUMPS_T pumpId ); -static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOnState( void ); +static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOnState( CONCENTRATE_PUMPS_T pumpId ); static U32 getPublishConcentratePumpDataInterval( void ); static void calcMeasuredPumpsSpeed( CONCENTRATE_PUMPS_T pumpId, U16 pulseWidthCount ); @@ -97,13 +111,27 @@ *************************************************************************/ void initConcentratePump( void ) { - concentratePumpState = CONCENTRATE_PUMP_OFF_STATE; - hasTurnOnPumpsBeenRequested = FALSE; - concentratePumpControlTimerCounter = 0; + CONCENTRATE_PUMPS_T pumpId; + concentratePumpMonitorTimerCounter = 0; - stopConcentratePump(); + concentratePumps[ CONCENTRATEPUMPS_CP1 ].control = &setFPGACP1Control; + concentratePumps[ CONCENTRATEPUMPS_CP1 ].setStepSpeed = &setFPGACP1SetStepSpeed; + concentratePumps[ CONCENTRATEPUMPS_CP2 ].control = &setFPGACP2Control; + concentratePumps[ CONCENTRATEPUMPS_CP2 ].setStepSpeed = &setFPGACP2SetStepSpeed; + + for ( pumpId = CONCENTRATEPUMPS_CP1; pumpId < NUM_OF_CONCENTRATE_PUMPS; ++pumpId ) + { + concentratePumps[ pumpId ].controlTimerCounter = 0; + concentratePumps[ pumpId ].execState = CONCENTRATE_PUMP_OFF_STATE; + concentratePumps[ pumpId ].hasTurnOnPumpsBeenRequested = FALSE; + concentratePumps[ pumpId ].pumpTargetSpeed = 0.0; + concentratePumps[ pumpId ].direction = CONCENTRATE_PUMP_FORWARD_DIR; + + stopConcentratePump( pumpId ); + } + initPersistentAlarm( PERSISTENT_ALARM_CP1_SPEED_CONTROL_ERROR, ALARM_ID_CP1_SPEED_CONTROL_ERROR, TRUE, CONCENTRATE_PUMP_SPEED_CONTROL_PERSISTENCE_PERIOD, CONCENTRATE_PUMP_SPEED_CONTROL_PERSISTENCE_PERIOD ); initPersistentAlarm( PERSISTENT_ALARM_CP2_SPEED_CONTROL_ERROR, ALARM_ID_CP2_SPEED_CONTROL_ERROR, @@ -126,13 +154,13 @@ calcMeasuredPumpsSpeed( CONCENTRATEPUMPS_CP1, getFPGACP1HallSensePulseWidth() ); calcMeasuredPumpsSpeed( CONCENTRATEPUMPS_CP2, getFPGACP2HallSensePulseWidth() ); - data.cp1TargetSpeed = pumpTargetSpeed[ CONCENTRATEPUMPS_CP1 ]; + data.cp1TargetSpeed = concentratePumps[ CONCENTRATEPUMPS_CP1 ].pumpTargetSpeed; data.cp1MeasuredSpeed = getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP1 ); - data.cp2TargetSpeed = pumpTargetSpeed[ CONCENTRATEPUMPS_CP2 ]; + data.cp2TargetSpeed = concentratePumps[ CONCENTRATEPUMPS_CP2 ].pumpTargetSpeed; data.cp2MeasuredSpeed = getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP2 ); - F32 const cp1Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP1 ) - currentPumpSpeed[ CONCENTRATEPUMPS_CP1 ] ) / currentPumpSpeed[ CONCENTRATEPUMPS_CP1 ]; - F32 const cp2Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP2 ) - currentPumpSpeed[ CONCENTRATEPUMPS_CP2 ] ) / currentPumpSpeed[ CONCENTRATEPUMPS_CP2 ]; + F32 const cp1Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP1 ) - concentratePumps[ CONCENTRATEPUMPS_CP1 ].currentPumpSpeed ) / concentratePumps[ CONCENTRATEPUMPS_CP1 ].currentPumpSpeed; + F32 const cp2Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP2 ) - concentratePumps[ CONCENTRATEPUMPS_CP2 ].currentPumpSpeed ) / concentratePumps[ CONCENTRATEPUMPS_CP2 ].currentPumpSpeed; checkPersistentAlarm( PERSISTENT_ALARM_CP1_SPEED_CONTROL_ERROR, cp1Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp1Error ); checkPersistentAlarm( PERSISTENT_ALARM_CP2_SPEED_CONTROL_ERROR, cp2Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp2Error ); @@ -145,26 +173,31 @@ /*********************************************************************//** * @brief * The execConcentratePumpController function executes the concentrate pump controller. - * @details Inputs: concentratePumpState - * @details Outputs: concentratePumpState + * @details Inputs: execState + * @details Outputs: execState * @return none *************************************************************************/ void execConcentratePumpController( void ) { - switch ( concentratePumpState ) + CONCENTRATE_PUMPS_T pumpId; + + for ( pumpId = CONCENTRATEPUMPS_CP1; pumpId < NUM_OF_CONCENTRATE_PUMPS; ++pumpId ) { - case CONCENTRATE_PUMP_OFF_STATE: - concentratePumpState = handleConcentratePumpOffState(); - break; + switch ( concentratePumps[ pumpId ].execState ) + { + case CONCENTRATE_PUMP_OFF_STATE: + concentratePumps[ pumpId ].execState = handleConcentratePumpOffState( pumpId ); + break; - case CONCENTRATE_PUMP_ON_STATE: - concentratePumpState = handleConcentratePumpOnState(); - break; + case CONCENTRATE_PUMP_ON_STATE: + concentratePumps[ pumpId ].execState = handleConcentratePumpOnState( pumpId ); + break; - default: - SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_CONCENTRATE_PUMP_EXEC_INVALID_STATE, concentratePumpState ) - concentratePumpState = CONCENTRATE_PUMP_OFF_STATE; - break; + default: + SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_CONCENTRATE_PUMP_EXEC_INVALID_STATE, pumpId ) + concentratePumps[ pumpId ].execState = CONCENTRATE_PUMP_OFF_STATE; + break; + } } } @@ -174,11 +207,19 @@ * the concentrate pumps. * @details Inputs: none * @details Outputs: set flag isPumpOnRequested to TRUE + * @param pumpId concentrate pump id * @return none *************************************************************************/ -void requestConcentratePumpsOn( void ) +void requestConcentratePumpsOn( CONCENTRATE_PUMPS_T pumpId ) { - hasTurnOnPumpsBeenRequested = TRUE; + if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) + { + concentratePumps[ pumpId ].hasTurnOnPumpsBeenRequested = TRUE; + } + else + { + SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID, pumpId ); + } } /*********************************************************************//** @@ -187,13 +228,20 @@ * the concentrate pumps. * @details Inputs: none * @details Outputs: set flag isPumpOffRequested to TRUE + * @param pumpId concentrate pump id * @return none *************************************************************************/ -void requestConcentratePumpsOff( void ) +void requestConcentratePumpsOff( CONCENTRATE_PUMPS_T pumpId ) { - hasTurnOnPumpsBeenRequested = FALSE; - pumpTargetSpeed[ CONCENTRATEPUMPS_CP1 ] = 0.0; - pumpTargetSpeed[ CONCENTRATEPUMPS_CP2 ] = 0.0; + if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) + { + concentratePumps[ pumpId ].hasTurnOnPumpsBeenRequested = FALSE; + concentratePumps[ pumpId ].pumpTargetSpeed = 0.0; + } + else + { + SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID, pumpId ); + } } /*********************************************************************//** @@ -210,9 +258,19 @@ { if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) { + if ( targetSpeed_ml_min >= 0.0 ) + { + concentratePumps[ pumpId ].direction = CONCENTRATE_PUMP_FORWARD_DIR; + } + else + { + concentratePumps[ pumpId ].direction = CONCENTRATE_PUMP_REVERSE_DIR; + targetSpeed_ml_min *= -1.0; + } + if ( ( CONCENTRATE_PUMP_MIN_SPEED <= targetSpeed_ml_min ) && ( targetSpeed_ml_min <= CONCENTRATE_PUMP_MAX_SPEED ) ) { - pumpTargetSpeed[ pumpId ] = targetSpeed_ml_min; + concentratePumps[ pumpId ].pumpTargetSpeed = targetSpeed_ml_min; } else { @@ -231,23 +289,16 @@ * and turns off concentrate pumps. * @details Inputs: none * @details Outputs: targetPumpSpeed[], currentPumpSpeed[], turn concentrate pumps off + * @param pumpId concentrate pump id * @return none *************************************************************************/ -static void stopConcentratePump( void ) +static void stopConcentratePump( CONCENTRATE_PUMPS_T pumpId ) { - U32 ii; + concentratePumps[ pumpId ].currentPumpSpeed = 0.0; + concentratePumps[ pumpId ].measuredPumpSpeed.data = 0.0; - for ( ii = 0; ii < NUM_OF_CONCENTRATE_PUMPS; ii++ ) - { - pumpTargetSpeed[ ii ] = 0.0; - currentPumpSpeed[ ii ] = 0.0; - measuredPumpSpeed[ ii ].data = 0.0; - } - - setFPGACP1Control( CONCENTRATE_PUMP_OFF_CONTROL ); - setFPGACP2Control( CONCENTRATE_PUMP_OFF_CONTROL ); - setFPGACP1SetStepSpeed( currentPumpSpeed[ CONCENTRATEPUMPS_CP1 ] ); - setFPGACP2SetStepSpeed( currentPumpSpeed[ CONCENTRATEPUMPS_CP2 ] ); + concentratePumps[ pumpId ].control( CONCENTRATE_PUMP_OFF_CONTROL ); + concentratePumps[ pumpId ].setStepSpeed( CONCENTRATE_PUMP_ZERO_FLOW_RATE ); } /*********************************************************************//** @@ -256,17 +307,18 @@ * switch to on state upon request. * @details Inputs: none * @details Outputs: concentrate pumps turn on + * @param pumpId concentrate pump id * @return state *************************************************************************/ -static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOffState( void ) +static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOffState( CONCENTRATE_PUMPS_T pumpId ) { CONCENTRATE_PUMP_STATE_T state = CONCENTRATE_PUMP_OFF_STATE; - if ( TRUE == hasTurnOnPumpsBeenRequested ) + if ( TRUE == concentratePumps[ pumpId ].hasTurnOnPumpsBeenRequested ) { - setFPGACP1Control( CONCENTRATE_PUMP_ON_CONTROL ); - setFPGACP2Control( CONCENTRATE_PUMP_ON_CONTROL ); + U08 const controlValue = ( CONCENTRATE_PUMP_ON_CONTROL | concentratePumps[ pumpId ].direction ); + concentratePumps[ pumpId ].control( controlValue ); state = CONCENTRATE_PUMP_ON_STATE; } @@ -284,7 +336,7 @@ *************************************************************************/ static void stepConcentratePumpToTargetSpeed( CONCENTRATE_PUMPS_T pumpId ) { - F32 const currentToTargetDiff = fabs( pumpTargetSpeed[ pumpId ] - currentPumpSpeed[ pumpId ] ); + F32 const currentToTargetDiff = fabs( concentratePumps[ pumpId ].pumpTargetSpeed - concentratePumps[ pumpId ].currentPumpSpeed ); F32 speedIncrease; if ( currentToTargetDiff > NEARLY_ZERO ) @@ -299,23 +351,23 @@ } // Subtract current speed when target speed is smaller - if ( pumpTargetSpeed[ pumpId ] < currentPumpSpeed[ pumpId ] ) + if ( concentratePumps[ pumpId ].pumpTargetSpeed < concentratePumps[ pumpId ].currentPumpSpeed ) { speedIncrease *= -1.0; } - currentPumpSpeed[ pumpId ] += speedIncrease; + concentratePumps[ pumpId ].currentPumpSpeed += speedIncrease; } - if ( currentPumpSpeed[ pumpId ] > NEARLY_ZERO ) + if ( concentratePumps[ pumpId ].currentPumpSpeed > NEARLY_ZERO ) { - F32 const timePerStep = CONCENTRATE_PUMP_VOLUME_PER_REV / ( currentPumpSpeed[ pumpId ] * CONCENTRATE_PUMP_STEP_PER_REV ) ; + F32 const timePerStep = CONCENTRATE_PUMP_VOLUME_PER_REV / ( concentratePumps[ pumpId ].currentPumpSpeed * CONCENTRATE_PUMP_STEP_PER_REV ) ; F32 const stepPeriodCounts = timePerStep / ( CONCENTRATE_PUMP_STEP_PERIOD_RESOLUTION * CONCENTRATE_PUMP_MICRO_STEPS_PER_STEP ); - togglePeriodCount[ pumpId ] = (U16)( stepPeriodCounts + 0.5 ); + concentratePumps[ pumpId ].togglePeriodCount = (U16)( stepPeriodCounts + 0.5 ); } else { - togglePeriodCount[ pumpId ] = CONCENTRATE_PUMP_ZERO_FLOW_RATE; + concentratePumps[ pumpId ].togglePeriodCount = CONCENTRATE_PUMP_ZERO_FLOW_RATE; } } @@ -326,27 +378,25 @@ * pumps to a target step speed. * @details Inputs: currentPumpSpeed[] * @details Outputs: control concentrate pumps to target step speed + * @param pumpId concentrate pump id * @return state *************************************************************************/ -static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOnState( void ) +static CONCENTRATE_PUMP_STATE_T handleConcentratePumpOnState( CONCENTRATE_PUMPS_T pumpId ) { CONCENTRATE_PUMP_STATE_T state = CONCENTRATE_PUMP_ON_STATE; - if ( ++concentratePumpControlTimerCounter >= CONCENTRATE_PUMP_CONTROL_INTERVAL ) + if ( ++concentratePumps[ pumpId ].controlTimerCounter >= CONCENTRATE_PUMP_CONTROL_INTERVAL ) { - concentratePumpControlTimerCounter = 0; + concentratePumps[ pumpId ].controlTimerCounter = 0; - stepConcentratePumpToTargetSpeed( CONCENTRATEPUMPS_CP1 ); - stepConcentratePumpToTargetSpeed( CONCENTRATEPUMPS_CP2 ); - - setFPGACP1SetStepSpeed( togglePeriodCount[ CONCENTRATEPUMPS_CP1 ] ); - setFPGACP2SetStepSpeed( togglePeriodCount[ CONCENTRATEPUMPS_CP2 ] ); + stepConcentratePumpToTargetSpeed( pumpId ); + concentratePumps[ pumpId ].setStepSpeed( concentratePumps[ pumpId ].togglePeriodCount ); } - if ( FALSE == hasTurnOnPumpsBeenRequested ) + if ( FALSE == concentratePumps[ pumpId ].hasTurnOnPumpsBeenRequested ) { state = CONCENTRATE_PUMP_OFF_STATE; - stopConcentratePump(); + stopConcentratePump( pumpId ); } return state; @@ -385,11 +435,11 @@ static void calcMeasuredPumpsSpeed( CONCENTRATE_PUMPS_T pumpId, U16 pulseWidthCount ) { F32 const pulseWidthInSecond = (F32)( pulseWidthCount * CONCENTRATE_PUMP_HALL_SENSE_PERIOD_RESOLUTION ) / US_PER_SECOND; - measuredPumpSpeed[ pumpId ].data = ( 1 / pulseWidthInSecond ) * CONCENTRATE_PUMP_VOLUME_PER_PULSE * SEC_PER_MIN; + concentratePumps[ pumpId ].measuredPumpSpeed.data = ( 1 / pulseWidthInSecond ) * CONCENTRATE_PUMP_VOLUME_PER_PULSE * SEC_PER_MIN; if ( CONCENTRATE_PUMP_ZERO_FLOW_RATE == pulseWidthCount ) { - measuredPumpSpeed[ pumpId ].data = 0.0; + concentratePumps[ pumpId ].measuredPumpSpeed.data = 0.0; } } @@ -407,11 +457,11 @@ if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) { - result = measuredPumpSpeed[ pumpId ].data; + result = concentratePumps[ pumpId ].measuredPumpSpeed.data; - if ( OVERRIDE_KEY == measuredPumpSpeed[ pumpId ].override ) + if ( OVERRIDE_KEY == concentratePumps[ pumpId ].measuredPumpSpeed.override ) { - result = measuredPumpSpeed[ pumpId ].ovData; + result = concentratePumps[ pumpId ].measuredPumpSpeed.ovData; } } else @@ -491,7 +541,9 @@ if ( pumpId < NUM_OF_CONCENTRATE_PUMPS && isTestingActivated() ) { - if ( ( CONCENTRATE_PUMP_MIN_SPEED <= value ) && ( value <= CONCENTRATE_PUMP_MAX_SPEED ) ) + F32 const absSpeed = fabs( value ); + + if ( ( CONCENTRATE_PUMP_MIN_SPEED <= absSpeed ) && ( absSpeed <= CONCENTRATE_PUMP_MAX_SPEED ) ) { result = TRUE; setConcentratePumpTargetSpeed( (CONCENTRATE_PUMPS_T)pumpId, value ); @@ -518,8 +570,8 @@ if ( ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) && isTestingActivated() ) { result = TRUE; - measuredPumpSpeed[ pumpId ].ovData = value; - measuredPumpSpeed[ pumpId ].override = OVERRIDE_KEY; + concentratePumps[ pumpId ].measuredPumpSpeed.ovData = value; + concentratePumps[ pumpId ].measuredPumpSpeed.override = OVERRIDE_KEY; } return result; @@ -541,8 +593,8 @@ if ( ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) && isTestingActivated() ) { result = TRUE; - measuredPumpSpeed[ pumpId ].ovData = 0.0; - measuredPumpSpeed[ pumpId ].override = OVERRIDE_RESET; + concentratePumps[ pumpId ].measuredPumpSpeed.ovData = 0.0; + concentratePumps[ pumpId ].measuredPumpSpeed.override = OVERRIDE_RESET; } return result; Index: firmware/App/Controllers/ConcentratePumps.h =================================================================== diff -u -r80028d3b1eef322950c1a5b74c282df2ba989ff5 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Controllers/ConcentratePumps.h (.../ConcentratePumps.h) (revision 80028d3b1eef322950c1a5b74c282df2ba989ff5) +++ firmware/App/Controllers/ConcentratePumps.h (.../ConcentratePumps.h) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -53,8 +53,8 @@ void execConcentratePumpMonitor( void ); void execConcentratePumpController( void ); -void requestConcentratePumpsOn( void ); -void requestConcentratePumpsOff( void ); +void requestConcentratePumpsOn( CONCENTRATE_PUMPS_T pumpId ); +void requestConcentratePumpsOff( CONCENTRATE_PUMPS_T pumpId ); void setConcentratePumpTargetSpeed( CONCENTRATE_PUMPS_T pumpId, F32 targetSpeed_ml_min ); Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r3f22d883958a14b6193d6cd59c9acdbbd359b69e -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 3f22d883958a14b6193d6cd59c9acdbbd359b69e) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -166,7 +166,8 @@ if ( isInletWaterReady ) { // Concentrate pumps on request and set RO pump to flow rate 800 mL/min - requestConcentratePumpsOn(); + requestConcentratePumpsOn( CONCENTRATEPUMPS_CP1 ); + requestConcentratePumpsOn( CONCENTRATEPUMPS_CP2 ); // TODO: Change to set flow rate once RO pump driver is updated // setROPumpFlowRate( FILL_TARGET_RO_FLOW_RATE ); setROPumpTargetPressure( FILL_TARGET_RO_PRESSURE_PSI, PUMP_CONTROL_MODE_CLOSED_LOOP ); @@ -240,7 +241,8 @@ // if we've reached our target fill to volume (by weight), we're done filling - go back to re-circ mode if ( hasTargetFillVolumeBeenReached( inactiveReservoir ) ) { - requestConcentratePumpsOff(); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP1 ); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP2 ); requestNewOperationMode( DG_MODE_CIRC ); } Index: firmware/App/Modes/ModeRecirculate.c =================================================================== diff -u -rdd7fad816b77aee7febdc79785eb74102b844370 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision dd7fad816b77aee7febdc79785eb74102b844370) +++ firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -87,7 +87,8 @@ setROPumpTargetPressure( TARGET_RO_PRESSURE_PSI, PUMP_CONTROL_MODE_CLOSED_LOOP ); signalDrainPumpHardStop(); startPrimaryHeater(); - requestConcentratePumpsOff(); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP1 ); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP2 ); // UV on #ifndef _VECTORCAST_ Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -rdd7fad816b77aee7febdc79785eb74102b844370 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision dd7fad816b77aee7febdc79785eb74102b844370) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -85,7 +85,8 @@ signalDrainPumpHardStop(); stopPrimaryHeater(); stopTrimmerHeater(); - requestConcentratePumpsOff(); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP1 ); + requestConcentratePumpsOff( CONCENTRATEPUMPS_CP2 ); // UV off resetReservoirLoadCellsOffset( RESERVOIR_1 ); Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r80028d3b1eef322950c1a5b74c282df2ba989ff5 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 80028d3b1eef322950c1a5b74c282df2ba989ff5) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -1952,22 +1952,22 @@ *************************************************************************/ void handleConcentratePumpStateChangeRequest( MESSAGE_T *message ) { + TEST_OVERRIDE_ARRAY_PAYLOAD_T payload; BOOL result = FALSE; // verify payload length - if ( ( sizeof( BOOL ) == message->hdr.payloadLen ) && ( TRUE == isTestingActivated() ) ) + if ( ( sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) == message->hdr.payloadLen ) && ( TRUE == isTestingActivated() ) ) { result = TRUE; - BOOL payload; - memcpy( &payload, message->payload, sizeof( BOOL ) ); - if ( TRUE == payload ) + memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_ARRAY_PAYLOAD_T ) ); + if ( ( BOOL )payload.state.u32 ) { - requestConcentratePumpsOn(); + requestConcentratePumpsOn( ( CONCENTRATE_PUMPS_T )payload.index ); } else { - requestConcentratePumpsOff(); + requestConcentratePumpsOff( ( CONCENTRATE_PUMPS_T )payload.index ); } } Index: results/Build_Status_Report.csv =================================================================== diff -u -r7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -1,6 +1,6 @@ Running Project, dgfirmware -Date, Mon Nov 9 12:44:48 PST 2020 +Date, Tue Nov 17 10:18:10 PST 2020 VectorCAST Pass/Fail Status, Passed Index: results/VectorCAST.log =================================================================== diff -u -r7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- results/VectorCAST.log (.../VectorCAST.log) (revision 7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -1,6 +1,6 @@ COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:44:49 +TIME: 2020-11-17 10:18: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/1290043353/CCAST_.CFG @@ -35,7 +35,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:44:52 +TIME: 2020-11-17 10:18:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -325,7 +325,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:44:53 +TIME: 2020-11-17 10:18:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -340,7 +340,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:44:54 +TIME: 2020-11-17 10:18:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -799,7 +799,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:44:56 +TIME: 2020-11-17 10:18: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/951818791/CCAST_.CFG @@ -834,7 +834,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:44:58 +TIME: 2020-11-17 10:18:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -976,7 +976,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:45:00 +TIME: 2020-11-17 10:18:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -991,7 +991,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:45:00 +TIME: 2020-11-17 10:18:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1203,7 +1203,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:45:02 +TIME: 2020-11-17 10:18: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/2974704408/CCAST_.CFG @@ -1239,7 +1239,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:45:04 +TIME: 2020-11-17 10:18:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1324,7 +1324,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:45:06 +TIME: 2020-11-17 10:18:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1339,7 +1339,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:45:06 +TIME: 2020-11-17 10:18:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1458,7 +1458,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:45:07 +TIME: 2020-11-17 10:18:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG @@ -1493,7 +1493,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:45:10 +TIME: 2020-11-17 10:18:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1644,7 +1644,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:45:12 +TIME: 2020-11-17 10:18:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1659,7 +1659,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:45:13 +TIME: 2020-11-17 10:18:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1875,7 +1875,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-09 12:45:14 +TIME: 2020-11-17 10:18:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG @@ -1910,7 +1910,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-09 12:45:18 +TIME: 2020-11-17 10:18:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1930,200 +1930,243 @@ Translated 0 script lines Processing script line 50 Processing script line 100 - Processing script line 200 - Processing script line 250 - Processing script line 300 + Processing script line 150 Processing script line 350 Processing script line 400 Processing script line 450 + Processing script line 500 + Processing script line 550 + Processing script line 600 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: execConcentratePumpController_Fault -(I) @LINE: 28 - >>> 'NUM_OF_CONCENTRATE_PUMP_STATES' was specified as a macro, but it is in the symbol dictionary. + >>> Processing Test Case: calcMeasuredPumpsSpeed_NominalPath (S) @LINE: 29 - >>> Processed Test Case: execConcentratePumpController_Fault + >>> Processed Test Case: calcMeasuredPumpsSpeed_NominalPath (I) @LINE: 35 + >>> Processing Test Case: calcMeasuredPumpsSpeed_Zero_Flow_rate +(S) @LINE: 40 + >>> Processed Test Case: calcMeasuredPumpsSpeed_Zero_Flow_rate +(I) @LINE: 48 + >>> Processing Test Case: execConcentratePumpController_Fault +(S) @LINE: 55 + >>> Processed Test Case: execConcentratePumpController_Fault +(I) @LINE: 61 >>> Processing Test Case: execConcentratePumpController_OffState -(S) @LINE: 39 +(S) @LINE: 67 >>> Processed Test Case: execConcentratePumpController_OffState -(I) @LINE: 45 +(I) @LINE: 73 >>> Processing Test Case: execConcentratePumpController_OnState -(S) @LINE: 51 +(S) @LINE: 82 >>> Processed Test Case: execConcentratePumpController_OnState -(I) @LINE: 59 +(I) @LINE: 90 >>> Processing Test Case: execConcentratePumpMonitor_Broadcast -(E) @LINE: 66 TEST.EXPECTED:uut_prototype_stubs.broadcastConcentratePumpData.cp1TgtSpeed:25.0 - >>> Unknown parameter/object name cp1TgtSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 67 TEST.EXPECTED:uut_prototype_stubs.broadcastConcentratePumpData.cp1MeasuredSpeed:5.0 - >>> Unknown parameter/object name cp1MeasuredSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 68 TEST.EXPECTED:uut_prototype_stubs.broadcastConcentratePumpData.cp2TgtSpeed:15.0 - >>> Unknown parameter/object name cp2TgtSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 69 TEST.EXPECTED:uut_prototype_stubs.broadcastConcentratePumpData.cp2MeasuredSpeed:10.0 - >>> Unknown parameter/object name cp2MeasuredSpeed - >>> Value Line Error - Command Ignored -(S) @LINE: 70 +(S) @LINE: 104 >>> Processed Test Case: execConcentratePumpMonitor_Broadcast -(I) @LINE: 76 +(I) @LINE: 110 >>> Processing Test Case: execConcentratePumpMonitor_NominalPath -(S) @LINE: 79 +(S) @LINE: 113 >>> Processed Test Case: execConcentratePumpMonitor_NominalPath -(I) @LINE: 87 - >>> Processing Test Case: getConcentratePumpTargetSpeed_InvalidPump -(S) @LINE: 91 - >>> Processed Test Case: getConcentratePumpTargetSpeed_InvalidPump -(I) @LINE: 97 - >>> Processing Test Case: getConcentratePumpTargetSpeed_No_Override -(S) @LINE: 104 - >>> Processed Test Case: getConcentratePumpTargetSpeed_No_Override -(I) @LINE: 110 - >>> Processing Test Case: getConcentratePumpTargetSpeed_Override -(S) @LINE: 117 - >>> Processed Test Case: getConcentratePumpTargetSpeed_Override -(I) @LINE: 125 +(I) @LINE: 119 + >>> Processing Test Case: execConcentratePumpMonitor_Speed_Control_Error +(S) @LINE: 133 + >>> Processed Test Case: execConcentratePumpMonitor_Speed_Control_Error +(I) @LINE: 141 + >>> Processing Test Case: getMeasuredPumpSpeed_InvalidPumpId +(S) @LINE: 144 + >>> Processed Test Case: getMeasuredPumpSpeed_InvalidPumpId +(I) @LINE: 150 + >>> Processing Test Case: getMeasuredPumpSpeed_NominalPath +(S) @LINE: 156 + >>> Processed Test Case: getMeasuredPumpSpeed_NominalPath +(I) @LINE: 162 + >>> Processing Test Case: getMeasuredPumpSpeed_Override +(S) @LINE: 168 + >>> Processed Test Case: getMeasuredPumpSpeed_Override +(I) @LINE: 176 >>> Processing Test Case: getPublishConcentratePumpDataInterval_NoOverride -(S) @LINE: 131 +(S) @LINE: 182 >>> Processed Test Case: getPublishConcentratePumpDataInterval_NoOverride -(I) @LINE: 137 +(I) @LINE: 188 >>> Processing Test Case: getPublishConcentratePumpDataInterval_Override -(S) @LINE: 143 +(S) @LINE: 194 >>> Processed Test Case: getPublishConcentratePumpDataInterval_Override -(I) @LINE: 151 +(I) @LINE: 202 >>> Processing Test Case: handleConcentratePumpOffState_NominalPath -(S) @LINE: 156 +(S) @LINE: 208 >>> Processed Test Case: handleConcentratePumpOffState_NominalPath -(I) @LINE: 162 +(I) @LINE: 214 >>> Processing Test Case: handleConcentratePumpOffState_On_Request -(S) @LINE: 169 +(S) @LINE: 222 >>> Processed Test Case: handleConcentratePumpOffState_On_Request -(I) @LINE: 177 +(I) @LINE: 230 >>> Processing Test Case: handleConcentratePumpOnState_ControlPumps -(S) @LINE: 190 +(S) @LINE: 245 >>> Processed Test Case: handleConcentratePumpOnState_ControlPumps -(I) @LINE: 196 +(I) @LINE: 251 >>> Processing Test Case: handleConcentratePumpOnState_Off_Request -(S) @LINE: 202 +(S) @LINE: 259 >>> Processed Test Case: handleConcentratePumpOnState_Off_Request -(I) @LINE: 210 +(I) @LINE: 267 >>> Processing Test Case: initConcentratePump_NominalPath -(S) @LINE: 241 +(S) @LINE: 294 >>> Processed Test Case: initConcentratePump_NominalPath -(I) @LINE: 249 +(I) @LINE: 302 + >>> Processing Test Case: requestConcentratePumpOff_Invalid_PumpId +(I) @LINE: 306 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 307 + >>> Processed Test Case: requestConcentratePumpOff_Invalid_PumpId +(I) @LINE: 313 >>> Processing Test Case: requestConcentratePumpOff_NominalPath -(S) @LINE: 252 +(S) @LINE: 317 >>> Processed Test Case: requestConcentratePumpOff_NominalPath -(I) @LINE: 260 +(I) @LINE: 325 + >>> Processing Test Case: requestConcentratePumpOn_Invalid_PumpId +(I) @LINE: 331 + >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 332 + >>> Processed Test Case: requestConcentratePumpOn_Invalid_PumpId +(I) @LINE: 338 >>> Processing Test Case: requestConcentratePumpOn_NominalPath -(S) @LINE: 263 +(S) @LINE: 342 >>> Processed Test Case: requestConcentratePumpOn_NominalPath -(I) @LINE: 271 +(I) @LINE: 350 >>> Processing Test Case: setConcentratePumpSpeed_Greater_Than_Max -(I) @LINE: 275 +(I) @LINE: 354 >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_SPEED_OUT_OF_RANGE' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 277 +(S) @LINE: 356 >>> Processed Test Case: setConcentratePumpSpeed_Greater_Than_Max -(I) @LINE: 283 +(I) @LINE: 362 >>> Processing Test Case: setConcentratePumpSpeed_Invalid_Pump -(I) @LINE: 287 +(I) @LINE: 366 >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_INVALID_PUMP_ID' was specified as a macro, but it is in the symbol dictionary. -(I) @LINE: 288 +(I) @LINE: 367 >>> 'NUM_OF_CONCENTRATE_PUMPS' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 289 +(S) @LINE: 368 >>> Processed Test Case: setConcentratePumpSpeed_Invalid_Pump -(I) @LINE: 295 +(I) @LINE: 374 >>> Processing Test Case: setConcentratePumpSpeed_Less_Than_Min -(I) @LINE: 299 +(I) @LINE: 378 >>> 'SW_FAULT_ID_CONCENTRATE_PUMP_SPEED_OUT_OF_RANGE' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 301 +(S) @LINE: 380 >>> Processed Test Case: setConcentratePumpSpeed_Less_Than_Min -(I) @LINE: 307 +(I) @LINE: 386 + >>> Processing Test Case: setConcentratePumpSpeed_Reverse_Speed +(S) @LINE: 393 + >>> Processed Test Case: setConcentratePumpSpeed_Reverse_Speed +(I) @LINE: 399 >>> Processing Test Case: setConcentratePumpSpeed_Valid_Pump_And_Speed -(S) @LINE: 312 +(S) @LINE: 406 >>> Processed Test Case: setConcentratePumpSpeed_Valid_Pump_And_Speed -(I) @LINE: 320 +(I) @LINE: 414 >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Equal_Current -(S) @LINE: 324 +(S) @LINE: 419 >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Equal_Current -(I) @LINE: 330 +(I) @LINE: 425 >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Greater_Than_Current -(S) @LINE: 334 +(S) @LINE: 430 >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Greater_Than_Current -(I) @LINE: 340 +(I) @LINE: 436 >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Current -(S) @LINE: 344 +(S) @LINE: 441 >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Current -(I) @LINE: 350 +(I) @LINE: 447 >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Step_Increase -(S) @LINE: 354 +(S) @LINE: 452 >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Target_Less_Than_Step_Increase -(I) @LINE: 362 +(I) @LINE: 458 + >>> Processing Test Case: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate +(S) @LINE: 466 + >>> Processed Test Case: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate +(I) @LINE: 474 >>> Processing Test Case: stopConcentratePump_NominalPath -(S) @LINE: 365 +(S) @LINE: 482 >>> Processed Test Case: stopConcentratePump_NominalPath -(I) @LINE: 373 +(I) @LINE: 490 >>> Processing Test Case: testResetConcentratePumpDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 375 +(S) @LINE: 492 >>> Processed Test Case: testResetConcentratePumpDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 381 +(I) @LINE: 498 >>> Processing Test Case: testResetConcentratePumpDataPublishIntervalOverride_Reset -(S) @LINE: 390 +(S) @LINE: 507 >>> Processed Test Case: testResetConcentratePumpDataPublishIntervalOverride_Reset -(I) @LINE: 398 - >>> Processing Test Case: testResetConcentratePumpTargetSpeedOverride_Invalid_Pump -(S) @LINE: 402 - >>> Processed Test Case: testResetConcentratePumpTargetSpeedOverride_Invalid_Pump -(I) @LINE: 408 - >>> Processing Test Case: testResetConcentratePumpTargetSpeedOverride_Not_Logged_in -(S) @LINE: 412 - >>> Processed Test Case: testResetConcentratePumpTargetSpeedOverride_Not_Logged_in -(I) @LINE: 418 - >>> Processing Test Case: testResetConcentratePumpTargetSpeedOverride_Reset -(S) @LINE: 428 - >>> Processed Test Case: testResetConcentratePumpTargetSpeedOverride_Reset -(I) @LINE: 436 +(I) @LINE: 515 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(S) @LINE: 519 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(I) @LINE: 525 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(S) @LINE: 528 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(I) @LINE: 534 + >>> Processing Test Case: testResetConcentratePumpMeasuredSpeedOverride_Override +(S) @LINE: 542 + >>> Processed Test Case: testResetConcentratePumpMeasuredSpeedOverride_Override +(I) @LINE: 550 >>> Processing Test Case: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 439 +(S) @LINE: 553 >>> Processed Test Case: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 445 +(I) @LINE: 559 >>> Processing Test Case: testSetConcentratePumpDataPublishIntervalOverride_Override -(E) @LINE: 455 TEST.ATTRIBUTES:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2].override::EXPECTED_BASE=16 - >>> Expected a field name from the record type CCAST_9_13 - >>> Read: override::EXPECTED_BASE=16 -(S) @LINE: 456 +(S) @LINE: 569 >>> Processed Test Case: testSetConcentratePumpDataPublishIntervalOverride_Override -(I) @LINE: 464 +(I) @LINE: 577 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(S) @LINE: 582 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId +(I) @LINE: 588 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(S) @LINE: 592 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn +(I) @LINE: 598 + >>> Processing Test Case: testSetConcentratePumpMeasuredSpeedOverride_Override +(S) @LINE: 609 + >>> Processed Test Case: testSetConcentratePumpMeasuredSpeedOverride_Override +(I) @LINE: 617 >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Not_Logged_in -(S) @LINE: 469 +(S) @LINE: 622 >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Not_Logged_in -(I) @LINE: 475 +(I) @LINE: 628 >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Pump -(S) @LINE: 479 +(S) @LINE: 632 >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Invalid_Pump -(I) @LINE: 485 +(I) @LINE: 638 >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Max -(S) @LINE: 496 +(S) @LINE: 645 >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Max -(I) @LINE: 502 +(I) @LINE: 651 >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Min -(S) @LINE: 513 +(S) @LINE: 658 >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Out_Of_Range_Min -(I) @LINE: 519 +(I) @LINE: 664 >>> Processing Test Case: testSetConcentratePumpTargetSpeedOverride_Override -(S) @LINE: 530 +(S) @LINE: 671 >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Override -(S) @LINE: 530 +(S) @LINE: 671 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-11-17 10:18:39 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-09 12:45:20 +TIME: 2020-11-17 10:18:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2155,6 +2198,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execConcentratePumpMonitor_Speed_Control_Error + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ConcentratePumps.execConcentratePumpController test cases Running: execConcentratePumpController_Fault Preparing Test Data @@ -2177,15 +2227,29 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConcentratePumps.requestConcentratePumpOn test cases + Running all ConcentratePumps.requestConcentratePumpsOn test cases + Running: requestConcentratePumpOn_Invalid_PumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: requestConcentratePumpOn_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConcentratePumps.requestConcentratePumpOff test cases + Running all ConcentratePumps.requestConcentratePumpsOff test cases + Running: requestConcentratePumpOff_Invalid_PumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: requestConcentratePumpOff_NominalPath Preparing Test Data Running Test Case @@ -2215,6 +2279,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: setConcentratePumpSpeed_Reverse_Speed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: setConcentratePumpSpeed_Valid_Pump_And_Speed Preparing Test Data Running Test Case @@ -2274,6 +2345,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: stepConcentratePumpToTargetSpeed_Zero_Flow_Rate + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ConcentratePumps.handleConcentratePumpOnState test cases Running: handleConcentratePumpOnState_ControlPumps Preparing Test Data @@ -2289,43 +2367,58 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConcentratePumps.getConcentratePumpTargetSpeed test cases - Running: getConcentratePumpTargetSpeed_InvalidPump + Running all ConcentratePumps.getPublishConcentratePumpDataInterval test cases + Running: getPublishConcentratePumpDataInterval_NoOverride Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getConcentratePumpTargetSpeed_No_Override + Running: getPublishConcentratePumpDataInterval_Override Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getConcentratePumpTargetSpeed_Override + Running all ConcentratePumps.calcMeasuredPumpsSpeed test cases + Running: calcMeasuredPumpsSpeed_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConcentratePumps.getPublishConcentratePumpDataInterval test cases - Running: getPublishConcentratePumpDataInterval_NoOverride + Running: calcMeasuredPumpsSpeed_Zero_Flow_rate Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getPublishConcentratePumpDataInterval_Override + Running all ConcentratePumps.getMeasuredPumpSpeed test cases + Running: getMeasuredPumpSpeed_InvalidPumpId Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: getMeasuredPumpSpeed_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredPumpSpeed_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ConcentratePumps.testSetConcentratePumpDataPublishIntervalOverride test cases Running: testSetConcentratePumpDataPublishIntervalOverride_NotLoggedIn Preparing Test Data @@ -2392,32 +2485,54 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConcentratePumps.testResetConcentratePumpTargetSpeedOverride test cases - Running: testResetConcentratePumpTargetSpeedOverride_Invalid_Pump + Running all ConcentratePumps.testSetConcentratePumpMeasuredSpeedOverride test cases + Running: testSetConcentratePumpMeasuredSpeedOverride_InvalidPumpId Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: testResetConcentratePumpTargetSpeedOverride_Not_Logged_in + Running: testSetConcentratePumpMeasuredSpeedOverride_NotLoggedIn Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: testResetConcentratePumpTargetSpeedOverride_Reset + Running: testSetConcentratePumpMeasuredSpeedOverride_Override Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all ConcentratePumps.testResetConcentratePumpMeasuredSpeedOverride test cases + Running: testResetConcentratePumpMeasuredSpeedOverride_InvalidPumpId + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConcentratePumpMeasuredSpeedOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetConcentratePumpMeasuredSpeedOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:45:22 +TIME: 2020-11-17 10:18:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG @@ -2452,7 +2567,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:45:26 +TIME: 2020-11-17 10:18:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2475,11 +2590,10 @@ Processing script line 200 Processing script line 250 Processing script line 300 - Processing script line 400 + Processing script line 350 Processing script line 450 - Processing script line 500 - Processing script line 650 - Processing script line 750 + Processing script line 600 + Processing script line 700 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -2587,142 +2701,138 @@ (S) @LINE: 287 >>> Processed Test Case: getConductivityValue_Overide (I) @LINE: 295 - >>> Processing Test Case: hexStrToDec_NominalPath -(S) @LINE: 306 - >>> Processed Test Case: hexStrToDec_NominalPath -(I) @LINE: 314 >>> Processing Test Case: initConductivitySensors_nominalPath -(S) @LINE: 325 +(S) @LINE: 306 >>> Processed Test Case: initConductivitySensors_nominalPath -(I) @LINE: 333 +(I) @LINE: 314 >>> Processing Test Case: prefixStrToSIFactor_Default -(S) @LINE: 336 +(S) @LINE: 317 >>> Processed Test Case: prefixStrToSIFactor_Default -(I) @LINE: 342 +(I) @LINE: 323 >>> Processing Test Case: prefixStrToSIFactor_Micro -(S) @LINE: 345 +(S) @LINE: 326 >>> Processed Test Case: prefixStrToSIFactor_Micro -(I) @LINE: 351 +(I) @LINE: 332 >>> Processing Test Case: prefixStrToSIFactor_Milli -(S) @LINE: 354 +(S) @LINE: 335 >>> Processed Test Case: prefixStrToSIFactor_Milli -(I) @LINE: 362 +(I) @LINE: 343 >>> Processing Test Case: processCD1CD2SensorRead_Add_Data_To_Package -(S) @LINE: 370 +(S) @LINE: 351 >>> Processed Test Case: processCD1CD2SensorRead_Add_Data_To_Package -(I) @LINE: 376 +(I) @LINE: 357 >>> Processing Test Case: processCD1CD2SensorRead_Empty_Buffer -(S) @LINE: 381 +(S) @LINE: 362 >>> Processed Test Case: processCD1CD2SensorRead_Empty_Buffer -(I) @LINE: 387 +(I) @LINE: 368 >>> Processing Test Case: processCD1CD2SensorRead_Error -(S) @LINE: 392 +(S) @LINE: 373 >>> Processed Test Case: processCD1CD2SensorRead_Error -(I) @LINE: 398 +(I) @LINE: 379 >>> Processing Test Case: processCD1CD2SensorRead_Error_No_Alarm -(S) @LINE: 403 +(S) @LINE: 384 >>> Processed Test Case: processCD1CD2SensorRead_Error_No_Alarm -(I) @LINE: 409 +(I) @LINE: 390 >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started -(S) @LINE: 418 +(S) @LINE: 399 >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started -(I) @LINE: 424 +(I) @LINE: 405 >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started_Newline -(S) @LINE: 431 +(S) @LINE: 412 >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started_Newline -(I) @LINE: 437 +(I) @LINE: 418 >>> Processing Test Case: processCD1CD2SensorRead_Package_Not_Started_Semicolon -(S) @LINE: 444 +(S) @LINE: 425 >>> Processed Test Case: processCD1CD2SensorRead_Package_Not_Started_Semicolon -(I) @LINE: 450 +(I) @LINE: 431 >>> Processing Test Case: processCD1CD2SensorRead_Process_CD1_Measurement -(S) @LINE: 457 +(S) @LINE: 438 >>> Processed Test Case: processCD1CD2SensorRead_Process_CD1_Measurement -(I) @LINE: 463 +(I) @LINE: 444 >>> Processing Test Case: processCD1CD2SensorRead_Process_CD2_Measurement -(S) @LINE: 470 +(S) @LINE: 451 >>> Processed Test Case: processCD1CD2SensorRead_Process_CD2_Measurement -(I) @LINE: 476 +(I) @LINE: 457 >>> Processing Test Case: processCD1CD2SensorRead_Start_Package -(S) @LINE: 484 +(S) @LINE: 465 >>> Processed Test Case: processCD1CD2SensorRead_Start_Package -(I) @LINE: 492 +(I) @LINE: 473 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time -(S) @LINE: 502 +(S) @LINE: 483 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time -(I) @LINE: 508 +(I) @LINE: 489 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time -(S) @LINE: 516 +(S) @LINE: 497 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time -(I) @LINE: 522 +(I) @LINE: 503 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(S) @LINE: 531 +(S) @LINE: 512 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(I) @LINE: 537 +(I) @LINE: 518 >>> Processing Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(S) @LINE: 547 +(S) @LINE: 528 >>> Processed Test Case: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(I) @LINE: 553 +(I) @LINE: 534 >>> Processing Test Case: processCPiCPoSensorRead_Same_FPGA_Reading -(S) @LINE: 564 +(S) @LINE: 545 >>> Processed Test Case: processCPiCPoSensorRead_Same_FPGA_Reading -(I) @LINE: 572 +(I) @LINE: 553 >>> Processing Test Case: processMeasurementDataPackage_Bad_Status_Alarm -(S) @LINE: 597 +(S) @LINE: 578 >>> Processed Test Case: processMeasurementDataPackage_Bad_Status_Alarm -(I) @LINE: 603 +(I) @LINE: 584 >>> Processing Test Case: processMeasurementDataPackage_Good_Status -(S) @LINE: 628 +(S) @LINE: 611 >>> Processed Test Case: processMeasurementDataPackage_Good_Status -(I) @LINE: 636 +(I) @LINE: 619 >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 639 +(S) @LINE: 622 >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 645 +(I) @LINE: 628 >>> Processing Test Case: testResetConductivityDataPublishIntervalOverride_Override -(S) @LINE: 654 +(S) @LINE: 637 >>> Processed Test Case: testResetConductivityDataPublishIntervalOverride_Override -(I) @LINE: 662 +(I) @LINE: 645 >>> Processing Test Case: testResetConductivityOverride_Invalid_Sensor -(S) @LINE: 666 +(S) @LINE: 649 >>> Processed Test Case: testResetConductivityOverride_Invalid_Sensor -(I) @LINE: 672 +(I) @LINE: 655 >>> Processing Test Case: testResetConductivityOverride_NotLoggedIn -(S) @LINE: 676 +(S) @LINE: 659 >>> Processed Test Case: testResetConductivityOverride_NotLoggedIn -(I) @LINE: 682 +(I) @LINE: 665 >>> Processing Test Case: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor -(S) @LINE: 686 +(S) @LINE: 669 >>> Processed Test Case: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor -(I) @LINE: 692 +(I) @LINE: 675 >>> Processing Test Case: testResetConductivityOverride_Reset -(S) @LINE: 696 +(S) @LINE: 679 >>> Processed Test Case: testResetConductivityOverride_Reset -(I) @LINE: 704 +(I) @LINE: 687 >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 710 +(S) @LINE: 693 >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 716 +(I) @LINE: 699 >>> Processing Test Case: testSetConductivityDataPublishIntervalOverride_Override -(S) @LINE: 728 +(S) @LINE: 711 >>> Processed Test Case: testSetConductivityDataPublishIntervalOverride_Override -(I) @LINE: 736 +(I) @LINE: 719 >>> Processing Test Case: testSetConductivityOverride_Invalid_Sensor -(S) @LINE: 741 +(S) @LINE: 724 >>> Processed Test Case: testSetConductivityOverride_Invalid_Sensor -(I) @LINE: 747 +(I) @LINE: 730 >>> Processing Test Case: testSetConductivityOverride_NotLoggedIn -(S) @LINE: 752 +(S) @LINE: 735 >>> Processed Test Case: testSetConductivityOverride_NotLoggedIn -(I) @LINE: 758 +(I) @LINE: 741 >>> Processing Test Case: testSetConductivityOverride_Override -(S) @LINE: 763 +(S) @LINE: 746 >>> Processed Test Case: testSetConductivityOverride_Override -(S) @LINE: 763 +(S) @LINE: 746 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:45:27 +TIME: 2020-11-17 10:18:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2737,7 +2847,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:45:28 +TIME: 2020-11-17 10:18:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2951,14 +3061,6 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all ConductivitySensors.hexStrToDec test cases - Running: hexStrToDec_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running all ConductivitySensors.prefixStrToSIFactor test cases Running: prefixStrToSIFactor_Default Preparing Test Data @@ -3166,7 +3268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:45:30 +TIME: 2020-11-17 10:18:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG @@ -3202,7 +3304,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:45:32 +TIME: 2020-11-17 10:18:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3268,7 +3370,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:45:34 +TIME: 2020-11-17 10:18:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3283,7 +3385,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:45:34 +TIME: 2020-11-17 10:18:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3364,7 +3466,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-09 12:45:35 +TIME: 2020-11-17 10:18: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 @@ -3400,7 +3502,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-11-09 12:45:38 +TIME: 2020-11-17 10:18:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3561,7 +3663,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-11-09 12:45:40 +TIME: 2020-11-17 10:18:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3576,7 +3678,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-11-09 12:45:40 +TIME: 2020-11-17 10:19:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3598,7 +3700,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-11-09 12:45:41 +TIME: 2020-11-17 10:19:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3850,7 +3952,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:45:43 +TIME: 2020-11-17 10:19:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/CCAST_.CFG @@ -3885,7 +3987,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:45:45 +TIME: 2020-11-17 10:19:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4340,7 +4442,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:45:47 +TIME: 2020-11-17 10:19:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4355,7 +4457,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:45:48 +TIME: 2020-11-17 10:19:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5139,7 +5241,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-11-09 12:45:52 +TIME: 2020-11-17 10:19: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/1963167139/CCAST_.CFG @@ -5175,7 +5277,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-11-09 12:45:55 +TIME: 2020-11-17 10:19:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5425,7 +5527,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-09 12:45:57 +TIME: 2020-11-17 10:19:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5440,7 +5542,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-09 12:45:57 +TIME: 2020-11-17 10:19:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5856,7 +5958,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-11-09 12:45:59 +TIME: 2020-11-17 10:19: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/3825867763/CCAST_.CFG @@ -5891,7 +5993,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-11-09 12:46:02 +TIME: 2020-11-17 10:19:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5952,7 +6054,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-11-09 12:46:03 +TIME: 2020-11-17 10:19:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5967,7 +6069,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-11-09 12:46:04 +TIME: 2020-11-17 10:19:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6032,7 +6134,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-11-09 12:46:05 +TIME: 2020-11-17 10:19: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/3499035493/CCAST_.CFG @@ -6068,7 +6170,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-11-09 12:46:08 +TIME: 2020-11-17 10:19:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6209,7 +6311,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-11-09 12:46:10 +TIME: 2020-11-17 10:19:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6224,7 +6326,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-11-09 12:46:10 +TIME: 2020-11-17 10:19:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6432,7 +6534,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:46:12 +TIME: 2020-11-17 10:19:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG @@ -6514,7 +6616,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:46:21 +TIME: 2020-11-17 10:19:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6591,7 +6693,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:46:24 +TIME: 2020-11-17 10:19:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6606,7 +6708,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:46:25 +TIME: 2020-11-17 10:19:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6636,7 +6738,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:46:26 +TIME: 2020-11-17 10:19:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6732,7 +6834,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:46:27 +TIME: 2020-11-17 10:19: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/3157600406/CCAST_.CFG @@ -6808,7 +6910,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:46:35 +TIME: 2020-11-17 10:19:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6861,7 +6963,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:46:37 +TIME: 2020-11-17 10:19:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6876,7 +6978,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:46:38 +TIME: 2020-11-17 10:19:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6906,7 +7008,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:46:38 +TIME: 2020-11-17 10:19:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6965,7 +7067,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:46:40 +TIME: 2020-11-17 10:19: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/2591524098/CCAST_.CFG @@ -7033,7 +7135,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:46:47 +TIME: 2020-11-17 10:19:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7095,7 +7197,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:46:48 +TIME: 2020-11-17 10:20:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7110,7 +7212,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:46:49 +TIME: 2020-11-17 10:20:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7138,7 +7240,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:46:50 +TIME: 2020-11-17 10:20:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7217,7 +7319,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-11-09 12:46:51 +TIME: 2020-11-17 10:20:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG @@ -7293,7 +7395,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-11-09 12:46:59 +TIME: 2020-11-17 10:20:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7334,7 +7436,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-09 12:47:01 +TIME: 2020-11-17 10:20:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7349,7 +7451,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-11-09 12:47:02 +TIME: 2020-11-17 10:20:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7385,7 +7487,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-11-09 12:47:03 +TIME: 2020-11-17 10:20: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/3065853561/CCAST_.CFG @@ -7477,7 +7579,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-11-09 12:47:12 +TIME: 2020-11-17 10:20:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7535,17 +7637,17 @@ >>> Processed Test Case: OverrideTestSetConductivity (I) @LINE: 192 >>> Processing Test Case: taskPriority_execConductivitySensors -(S) @LINE: 235 +(S) @LINE: 237 >>> Processed Test Case: taskPriority_execConductivitySensors -(I) @LINE: 245 +(I) @LINE: 247 >>> Processing Test Case: initSoftware_initConductivitySensors -(S) @LINE: 252 +(S) @LINE: 254 >>> Processed Test Case: initSoftware_initConductivitySensors -(S) @LINE: 252 +(S) @LINE: 254 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-09 12:47:15 +TIME: 2020-11-17 10:20:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7560,7 +7662,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-09 12:47:15 +TIME: 2020-11-17 10:20:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7641,7 +7743,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:47:17 +TIME: 2020-11-17 10:20:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG @@ -7702,7 +7804,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:47:22 +TIME: 2020-11-17 10:20:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7743,7 +7845,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:47:24 +TIME: 2020-11-17 10:20:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7758,7 +7860,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:47:25 +TIME: 2020-11-17 10:20:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7784,7 +7886,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:47:25 +TIME: 2020-11-17 10:20:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7820,7 +7922,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-11-09 12:47:27 +TIME: 2020-11-17 10:20:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG @@ -7912,7 +8014,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-11-09 12:47:35 +TIME: 2020-11-17 10:20:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7978,7 +8080,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-11-09 12:47:37 +TIME: 2020-11-17 10:20:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7993,7 +8095,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-11-09 12:47:38 +TIME: 2020-11-17 10:20:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8025,7 +8127,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-11-09 12:47:38 +TIME: 2020-11-17 10:20:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8106,7 +8208,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:47:39 +TIME: 2020-11-17 10:20: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/1233794524/CCAST_.CFG @@ -8272,7 +8374,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:47:53 +TIME: 2020-11-17 10:20:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8367,7 +8469,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:47:55 +TIME: 2020-11-17 10:20:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8382,7 +8484,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:47:56 +TIME: 2020-11-17 10:20:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8511,7 +8613,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-11-09 12:47:57 +TIME: 2020-11-17 10:20: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/865302348/CCAST_.CFG @@ -8612,7 +8714,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-11-09 12:48:05 +TIME: 2020-11-17 10:21:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8710,7 +8812,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-09 12:48:07 +TIME: 2020-11-17 10:21:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8725,7 +8827,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-11-09 12:48:07 +TIME: 2020-11-17 10:21:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8857,7 +8959,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:48:09 +TIME: 2020-11-17 10:21: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/1018941988/CCAST_.CFG @@ -8938,7 +9040,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:48:15 +TIME: 2020-11-17 10:21:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8983,7 +9085,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:48:16 +TIME: 2020-11-17 10:21:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8998,7 +9100,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:48:17 +TIME: 2020-11-17 10:21:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9042,7 +9144,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:48:18 +TIME: 2020-11-17 10:21:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/CCAST_.CFG @@ -9170,7 +9272,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:48:27 +TIME: 2020-11-17 10:21:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9224,7 +9326,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:48:29 +TIME: 2020-11-17 10:21:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9239,7 +9341,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:48:30 +TIME: 2020-11-17 10:21:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9279,7 +9381,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:48:30 +TIME: 2020-11-17 10:21:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9339,7 +9441,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-11-09 12:48:31 +TIME: 2020-11-17 10:21:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG @@ -9430,7 +9532,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-11-09 12:48:39 +TIME: 2020-11-17 10:21:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9493,7 +9595,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-11-09 12:48:40 +TIME: 2020-11-17 10:21:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9508,7 +9610,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-11-09 12:48:41 +TIME: 2020-11-17 10:21:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9525,7 +9627,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Reservoirs.hasTargetDrainVolumeReached test cases + Running all Reservoirs.hasTargetDrainVolumeBeenReached test cases Running: tareLoadCell Preparing Test Data Running Test Case @@ -9582,7 +9684,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:48:42 +TIME: 2020-11-17 10:21:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/CCAST_.CFG @@ -9629,7 +9731,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:48:45 +TIME: 2020-11-17 10:21:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9665,7 +9767,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:48:46 +TIME: 2020-11-17 10:21:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9680,7 +9782,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:48:47 +TIME: 2020-11-17 10:21:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9704,7 +9806,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:48:47 +TIME: 2020-11-17 10:21:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9732,7 +9834,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-11-09 12:48:48 +TIME: 2020-11-17 10:21:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG @@ -9779,7 +9881,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-11-09 12:48:52 +TIME: 2020-11-17 10:21:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9824,7 +9926,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-11-09 12:48:53 +TIME: 2020-11-17 10:21:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9839,7 +9941,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-11-09 12:48:53 +TIME: 2020-11-17 10:21:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9863,7 +9965,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-11-09 12:48:54 +TIME: 2020-11-17 10:21:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9906,7 +10008,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:48:55 +TIME: 2020-11-17 10:21: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/2748975379/CCAST_.CFG @@ -9953,7 +10055,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:48:58 +TIME: 2020-11-17 10:22:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9989,7 +10091,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:48:59 +TIME: 2020-11-17 10:22:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10004,7 +10106,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:49:00 +TIME: 2020-11-17 10:22:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10028,7 +10130,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:49:00 +TIME: 2020-11-17 10:22:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10056,7 +10158,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-11-09 12:49:01 +TIME: 2020-11-17 10:22: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/4235259824/CCAST_.CFG @@ -10103,7 +10205,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-11-09 12:49:05 +TIME: 2020-11-17 10:22:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10122,6 +10224,7 @@ Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 + Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10144,34 +10247,21 @@ >>> Processing Test Case: execFillModeStart (S) @LINE: 64 >>> Processed Test Case: execFillModeStart -(I) @LINE: 72 +(E) @LINE: 70 TEST.SUBPROGRAM:exitCurrentOperationMode + >>> Unknown subprogram name exitCurrentOperationMode +(I) @LINE: 84 >>> Processing Test Case: initOperationModes.initFillMode -(S) @LINE: 75 +(S) @LINE: 87 >>> Processed Test Case: initOperationModes.initFillMode -(I) @LINE: 83 +(I) @LINE: 95 >>> Processing Test Case: transitionToNewOperationMode.transitionToFillMode -(S) @LINE: 90 +(S) @LINE: 102 >>> Processed Test Case: transitionToNewOperationMode.transitionToFillMode -(S) @LINE: 90 +(S) @LINE: 102 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-09 12:49:06 -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/4235259824/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 INT_MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-09 12:49:06 +TIME: 2020-11-17 10:22:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10228,7 +10318,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:49:07 +TIME: 2020-11-17 10:22: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/2297135903/CCAST_.CFG @@ -10275,7 +10365,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:49:11 +TIME: 2020-11-17 10:22:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10311,7 +10401,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:49:12 +TIME: 2020-11-17 10:22:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10326,7 +10416,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:49:12 +TIME: 2020-11-17 10:22:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10350,7 +10440,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:49:13 +TIME: 2020-11-17 10:22:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10378,7 +10468,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:49:14 +TIME: 2020-11-17 10:22: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/1843208983/CCAST_.CFG @@ -10425,7 +10515,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:49:17 +TIME: 2020-11-17 10:22:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10461,7 +10551,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:49:18 +TIME: 2020-11-17 10:22:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10476,7 +10566,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:49:19 +TIME: 2020-11-17 10:22:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10500,7 +10590,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:49:20 +TIME: 2020-11-17 10:22:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10528,7 +10618,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:49:21 +TIME: 2020-11-17 10:22: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/1413348909/CCAST_.CFG @@ -10575,7 +10665,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:49:24 +TIME: 2020-11-17 10:22:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10611,7 +10701,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:49:25 +TIME: 2020-11-17 10:22:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10626,7 +10716,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:49:26 +TIME: 2020-11-17 10:22:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10650,7 +10740,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:49:26 +TIME: 2020-11-17 10:22:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10678,7 +10768,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-11-09 12:49:27 +TIME: 2020-11-17 10:22:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG @@ -10745,7 +10835,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-11-09 12:49:32 +TIME: 2020-11-17 10:22:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10807,7 +10897,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-11-09 12:49:34 +TIME: 2020-11-17 10:22:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10822,7 +10912,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-11-09 12:49:34 +TIME: 2020-11-17 10:22:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10895,7 +10985,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:49:36 +TIME: 2020-11-17 10:22: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/3003468669/CCAST_.CFG @@ -10942,7 +11032,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:49:39 +TIME: 2020-11-17 10:22:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10978,7 +11068,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:49:40 +TIME: 2020-11-17 10:22:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10993,7 +11083,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:49:40 +TIME: 2020-11-17 10:22:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11017,7 +11107,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:49:41 +TIME: 2020-11-17 10:22:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11045,7 +11135,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:49:42 +TIME: 2020-11-17 10:22: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/104031509/CCAST_.CFG @@ -11092,7 +11182,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:49:45 +TIME: 2020-11-17 10:22:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11133,7 +11223,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:49:46 +TIME: 2020-11-17 10:22:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11148,7 +11238,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:49:47 +TIME: 2020-11-17 10:22:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11172,7 +11262,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:49:47 +TIME: 2020-11-17 10:22:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11207,7 +11297,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-11-09 12:49:48 +TIME: 2020-11-17 10:22:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG @@ -11265,7 +11355,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-11-09 12:49:53 +TIME: 2020-11-17 10:23:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11323,7 +11413,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-11-09 12:49:54 +TIME: 2020-11-17 10:23:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11338,7 +11428,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-11-09 12:49:55 +TIME: 2020-11-17 10:23:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11364,7 +11454,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-11-09 12:49:55 +TIME: 2020-11-17 10:23:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11430,7 +11520,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-11-09 12:49:56 +TIME: 2020-11-17 10:23:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG @@ -11506,7 +11596,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-11-09 12:50:02 +TIME: 2020-11-17 10:23:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11552,7 +11642,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-11-09 12:50:04 +TIME: 2020-11-17 10:23:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11567,7 +11657,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-11-09 12:50:05 +TIME: 2020-11-17 10:23:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11611,7 +11701,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-11-09 12:50:06 +TIME: 2020-11-17 10:23:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG @@ -11691,7 +11781,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-11-09 12:50:12 +TIME: 2020-11-17 10:23:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11736,7 +11826,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-09 12:50:13 +TIME: 2020-11-17 10:23:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11751,7 +11841,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-11-09 12:50:14 +TIME: 2020-11-17 10:23:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11795,7 +11885,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:50:15 +TIME: 2020-11-17 10:23:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/CCAST_.CFG @@ -11845,7 +11935,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:50:18 +TIME: 2020-11-17 10:23:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11885,7 +11975,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:50:20 +TIME: 2020-11-17 10:23:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11900,7 +11990,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:50:20 +TIME: 2020-11-17 10:23:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11935,7 +12025,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:50:21 +TIME: 2020-11-17 10:23: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/996327209/CCAST_.CFG @@ -11984,7 +12074,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:50:25 +TIME: 2020-11-17 10:23:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12035,7 +12125,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:50:26 +TIME: 2020-11-17 10:23:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12059,7 +12149,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:50:26 +TIME: 2020-11-17 10:23:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12095,7 +12185,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-11-09 12:50:27 +TIME: 2020-11-17 10:23:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG @@ -12204,7 +12294,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-11-09 12:50:36 +TIME: 2020-11-17 10:23:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12286,7 +12376,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-11-09 12:50:38 +TIME: 2020-11-17 10:23:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12301,7 +12391,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-09 12:50:38 +TIME: 2020-11-17 10:23:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12412,7 +12502,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-11-09 12:50:40 +TIME: 2020-11-17 10:23: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/3023750484/CCAST_.CFG @@ -12530,7 +12620,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-11-09 12:50:49 +TIME: 2020-11-17 10:23:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12600,7 +12690,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-11-09 12:50:50 +TIME: 2020-11-17 10:23:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12615,7 +12705,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-11-09 12:50:51 +TIME: 2020-11-17 10:23:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12653,7 +12743,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-11-09 12:50:52 +TIME: 2020-11-17 10:23:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12744,7 +12834,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-11-09 12:50:53 +TIME: 2020-11-17 10:24: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/3092074925/CCAST_.CFG @@ -12854,7 +12944,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-11-09 12:51:02 +TIME: 2020-11-17 10:24:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12942,7 +13032,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-11-09 12:51:04 +TIME: 2020-11-17 10:24:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12957,7 +13047,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-11-09 12:51:04 +TIME: 2020-11-17 10:24:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12993,7 +13083,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-11-09 12:51:05 +TIME: 2020-11-17 10:24:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13113,7 +13203,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:51:06 +TIME: 2020-11-17 10:24:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG @@ -13203,7 +13293,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:51:14 +TIME: 2020-11-17 10:24:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13273,7 +13363,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:51:16 +TIME: 2020-11-17 10:24:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13288,7 +13378,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:51:16 +TIME: 2020-11-17 10:24:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13320,7 +13410,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:51:17 +TIME: 2020-11-17 10:24:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13407,7 +13497,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:51:18 +TIME: 2020-11-17 10:24:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/CCAST_.CFG @@ -13468,7 +13558,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:51:23 +TIME: 2020-11-17 10:24:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13509,7 +13599,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:51:24 +TIME: 2020-11-17 10:24:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13524,7 +13614,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:51:25 +TIME: 2020-11-17 10:24:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13550,7 +13640,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:51:25 +TIME: 2020-11-17 10:24:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13585,7 +13675,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:51:26 +TIME: 2020-11-17 10:24:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/CCAST_.CFG @@ -13693,7 +13783,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:51:35 +TIME: 2020-11-17 10:24:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13760,7 +13850,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:51:37 +TIME: 2020-11-17 10:24:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13775,7 +13865,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:51:37 +TIME: 2020-11-17 10:24:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13855,7 +13945,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-11-09 12:51:38 +TIME: 2020-11-17 10:24:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG @@ -13932,7 +14022,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-11-09 12:51:46 +TIME: 2020-11-17 10:24:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13960,7 +14050,9 @@ Processing script line 450 Processing script line 650 Processing script line 700 + Processing script line 750 Processing script line 800 + Processing script line 850 Processing script line 900 Script Creation Completed -------------------------------------------------------------------------------- @@ -14081,81 +14173,94 @@ (S) @LINE: 633 >>> Processed Test Case: A022_handleDGSoftwareResetRequest (I) @LINE: 639 - >>> Processing Test Case: A024_handleSetConcentratePumpTargetSpeed + >>> Processing Test Case: A023_handleSetConcentratePumpMeasuredSpeed +(E) @LINE: 640 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:0.0 + >>> Unknown parameter/object name measuredPumpSpeed + >>> Value Line Error - Command Ignored +(E) @LINE: 641 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0 + >>> Unknown parameter/object name measuredPumpSpeed + >>> Value Line Error - Command Ignored +(E) @LINE: 658 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:5.0 + >>> Unknown parameter/object name measuredPumpSpeed + >>> Value Line Error - Command Ignored +(E) @LINE: 659 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0xCCC33C33 + >>> Unknown parameter/object name measuredPumpSpeed + >>> Value Line Error - Command Ignored (S) @LINE: 660 - >>> Processed Test Case: A024_handleSetConcentratePumpTargetSpeed + >>> Processed Test Case: A023_handleSetConcentratePumpMeasuredSpeed (I) @LINE: 666 + >>> Processing Test Case: A024_handleSetConcentratePumpTargetSpeed +(E) @LINE: 667 TEST.VALUE:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:0.0 + >>> Unknown parameter/object name pumpTargetSpeed + >>> Value Line Error - Command Ignored +(E) @LINE: 684 TEST.EXPECTED:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:5.0 + >>> Unknown parameter/object name pumpTargetSpeed + >>> Value Line Error - Command Ignored +(S) @LINE: 685 + >>> Processed Test Case: A024_handleSetConcentratePumpTargetSpeed +(I) @LINE: 691 >>> Processing Test Case: A026_handleConcentratePumpStateChangeRequest -(S) @LINE: 677 +(E) @LINE: 692 TEST.VALUE:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:0 + >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> Value Line Error - Command Ignored +(E) @LINE: 701 TEST.EXPECTED:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:1 + >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> Value Line Error - Command Ignored +(S) @LINE: 702 >>> Processed Test Case: A026_handleConcentratePumpStateChangeRequest -(I) @LINE: 683 +(I) @LINE: 708 >>> Processing Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(S) @LINE: 702 +(S) @LINE: 727 >>> Processed Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(I) @LINE: 708 +(I) @LINE: 733 >>> Processing Test Case: handleDrainCmd -(S) @LINE: 719 +(S) @LINE: 744 >>> Processed Test Case: handleDrainCmd -(I) @LINE: 725 +(I) @LINE: 750 >>> Processing Test Case: handleFWVersionCmd -(S) @LINE: 731 +(S) @LINE: 756 >>> Processed Test Case: handleFWVersionCmd -(I) @LINE: 737 +(I) @LINE: 762 >>> Processing Test Case: handleFillCmd -(S) @LINE: 747 +(S) @LINE: 772 >>> Processed Test Case: handleFillCmd -(I) @LINE: 753 +(I) @LINE: 778 >>> Processing Test Case: handlePowerOffWarning -(S) @LINE: 759 +(S) @LINE: 784 >>> Processed Test Case: handlePowerOffWarning -(I) @LINE: 765 +(I) @LINE: 790 >>> Processing Test Case: handleSampleWaterCmd -(S) @LINE: 777 +(S) @LINE: 802 >>> Processed Test Case: handleSampleWaterCmd -(I) @LINE: 783 +(I) @LINE: 808 >>> Processing Test Case: handleSetAccelCalibration -(S) @LINE: 807 +(S) @LINE: 832 >>> Processed Test Case: handleSetAccelCalibration -(I) @LINE: 813 +(I) @LINE: 838 >>> Processing Test Case: handleSetDialysateTemperatureCmd -(S) @LINE: 827 +(S) @LINE: 852 >>> Processed Test Case: handleSetDialysateTemperatureCmd -(I) @LINE: 833 +(I) @LINE: 858 >>> Processing Test Case: handleStartStopTreatmentCmd -(S) @LINE: 845 +(S) @LINE: 870 >>> Processed Test Case: handleStartStopTreatmentCmd -(I) @LINE: 851 +(I) @LINE: 876 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd -(S) @LINE: 862 +(S) @LINE: 887 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd -(I) @LINE: 868 +(I) @LINE: 893 >>> Processing Test Case: handleSwitchReservoirCmd -(S) @LINE: 878 +(S) @LINE: 903 >>> Processed Test Case: handleSwitchReservoirCmd -(I) @LINE: 886 +(I) @LINE: 911 >>> Processing Test Case: sendACKMsg -(S) @LINE: 905 +(S) @LINE: 930 >>> Processed Test Case: sendACKMsg -(S) @LINE: 905 +(S) @LINE: 930 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-09 12:51:49 -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/2381647150/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 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-11-09 12:51:50 +TIME: 2020-11-17 10:24:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14185,7 +14290,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-11-09 12:51:50 +TIME: 2020-11-17 10:24:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14401,6 +14506,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A023_handleSetConcentratePumpMeasuredSpeed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: A024_handleSetConcentratePumpTargetSpeed Preparing Test Data Running Test Case @@ -14495,7 +14607,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:51:53 +TIME: 2020-11-17 10:24: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/3512906829/CCAST_.CFG @@ -14555,7 +14667,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:51:59 +TIME: 2020-11-17 10:25:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14587,7 +14699,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:52:01 +TIME: 2020-11-17 10:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14602,7 +14714,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:52:02 +TIME: 2020-11-17 10:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14622,7 +14734,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:52:03 +TIME: 2020-11-17 10:25: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/2330464402/CCAST_.CFG @@ -14671,7 +14783,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:52:06 +TIME: 2020-11-17 10:25:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14703,7 +14815,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:52:08 +TIME: 2020-11-17 10:25:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14718,7 +14830,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:52:08 +TIME: 2020-11-17 10:25:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14738,7 +14850,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:52:09 +TIME: 2020-11-17 10:25:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/CCAST_.CFG @@ -14787,7 +14899,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:52:13 +TIME: 2020-11-17 10:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14819,7 +14931,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:52:14 +TIME: 2020-11-17 10:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14834,7 +14946,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:52:14 +TIME: 2020-11-17 10:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14854,7 +14966,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:52:15 +TIME: 2020-11-17 10:25:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/CCAST_.CFG @@ -14914,7 +15026,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:52:20 +TIME: 2020-11-17 10:25:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14946,7 +15058,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:52:21 +TIME: 2020-11-17 10:25:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14961,7 +15073,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:52:21 +TIME: 2020-11-17 10:25:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14981,7 +15093,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-11-09 12:52:22 +TIME: 2020-11-17 10:25:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG @@ -15082,7 +15194,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-11-09 12:52:30 +TIME: 2020-11-17 10:25:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15162,7 +15274,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-09 12:52:32 +TIME: 2020-11-17 10:25:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15177,7 +15289,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-11-09 12:52:33 +TIME: 2020-11-17 10:25:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15280,7 +15392,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:52:34 +TIME: 2020-11-17 10:25:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/CCAST_.CFG @@ -15360,7 +15472,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:52:40 +TIME: 2020-11-17 10:25:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15404,7 +15516,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:52:41 +TIME: 2020-11-17 10:25:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15419,7 +15531,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:52:42 +TIME: 2020-11-17 10:25:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15449,7 +15561,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:52:42 +TIME: 2020-11-17 10:25:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15493,14 +15605,17 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:52:43 +TIME: 2020-11-17 10:25: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/1824960653/CCAST_.CFG Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_UTILITIES" + Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + File: ConductivitySensors.c (using cached data) + QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: FPGA.c (using cached data) File: SystemComm.c (using cached data) @@ -15514,37 +15629,45 @@ Initializing parse data Generating harness code Saving unit data + Parsing ConductivitySensors Parsing FPGA Parsing SystemComm Parsing SystemCommMessages Parsing Utilities - Unit 9 (stub-by-function): FPGA + Unit 9 (stub-by-function): ConductivitySensors Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 11 (stub-by-function): SystemComm + Unit 11 (stub-by-function): FPGA Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 12 (stub-by-function): SystemCommMessages + Unit 12 (stub-by-function): SystemComm Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 13 (stub-by-function): Utilities + Unit 13 (stub-by-function): SystemCommMessages Loading stored IL Initializing parse data Generating harness code Saving unit data + Unit 14 (stub-by-function): Utilities + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data Compiling file VECTORCAST_IO Compiling file User Defined Globals Compiling file Data File Number 1 Compiling file Data File Number 2 Compiling file Driver Compiling file User Defined Package Setting Up Function Coverage + Instrumenting file ConductivitySensors + Compiling file ConductivitySensors Instrumenting file FPGA Compiling file FPGA Instrumenting file SystemComm @@ -15560,7 +15683,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:52:49 +TIME: 2020-11-17 10:25:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15578,7 +15701,6 @@ Test Script Maintenance Started Test Script Maintenance Complete (0) Translated 0 script lines - Processing script line 50 Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- @@ -15587,26 +15709,30 @@ (I) @LINE: 1 >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp (I) @LINE: 24 + >>> Processing Test Case: processMeasurementDataPackage_ConvertHexStr +(S) @LINE: 41 + >>> Processed Test Case: processMeasurementDataPackage_ConvertHexStr +(I) @LINE: 51 >>> Processing Test Case: crc16 -(S) @LINE: 38 +(S) @LINE: 65 >>> Processed Test Case: crc16 -(I) @LINE: 48 +(I) @LINE: 75 >>> Processing Test Case: incTimeWindowedCount -(S) @LINE: 61 +(S) @LINE: 88 >>> Processed Test Case: incTimeWindowedCount -(I) @LINE: 69 +(I) @LINE: 96 >>> Processing Test Case: initTimeWindowedCount -(S) @LINE: 90 +(S) @LINE: 117 >>> Processed Test Case: initTimeWindowedCount -(I) @LINE: 100 +(I) @LINE: 127 >>> Processing Test Case: crc8 -(S) @LINE: 118 +(S) @LINE: 145 >>> Processed Test Case: crc8 -(S) @LINE: 118 +(S) @LINE: 145 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:52:50 +TIME: 2020-11-17 10:25:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15621,7 +15747,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:52:51 +TIME: 2020-11-17 10:25:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15638,18 +15764,20 @@ (S) @LINE: 1 >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr (S) @LINE: 45 - >>> Source file matched FPGA.c + >>> Source file matched ConductivitySensors.c (S) @LINE: 67 - >>> Source file matched SystemComm.c + >>> Source file matched FPGA.c (S) @LINE: 89 - >>> Source file matched SystemCommMessages.c + >>> Source file matched SystemComm.c (S) @LINE: 111 + >>> Source file matched SystemCommMessages.c +(S) @LINE: 133 >>> Source file matched Utilities.c -(S) @LINE: 162 +(S) @LINE: 184 >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:52:52 +TIME: 2020-11-17 10:26:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15658,6 +15786,14 @@ Opening Parameter/Global File Opening Types File Environment is Open + Running all ConductivitySensors.processMeasurementDataPackage test cases + Running: processMeasurementDataPackage_ConvertHexStr + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all FPGA.handleFPGAReadHeaderState test cases Running: crc16 Preparing Test Data @@ -15693,7 +15829,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-11-09 12:52:53 +TIME: 2020-11-17 10:26: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/3585417238/CCAST_.CFG @@ -15775,7 +15911,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-11-09 12:52:59 +TIME: 2020-11-17 10:26:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15837,7 +15973,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-11-09 12:53:01 +TIME: 2020-11-17 10:26:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15852,7 +15988,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-11-09 12:53:02 +TIME: 2020-11-17 10:26:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15926,7 +16062,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:53:03 +TIME: 2020-11-17 10:26: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/1429379182/CCAST_.CFG @@ -16015,7 +16151,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:53:10 +TIME: 2020-11-17 10:26:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16069,7 +16205,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:53:11 +TIME: 2020-11-17 10:26:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16084,7 +16220,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:53:12 +TIME: 2020-11-17 10:26:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16143,7 +16279,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-11-09 12:53:13 +TIME: 2020-11-17 10:26: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/1396715880/CCAST_.CFG @@ -16178,7 +16314,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-11-09 12:53:15 +TIME: 2020-11-17 10:26:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16291,7 +16427,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-11-09 12:53:17 +TIME: 2020-11-17 10:26:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16306,7 +16442,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-11-09 12:53:17 +TIME: 2020-11-17 10:26:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16468,7 +16604,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:53:18 +TIME: 2020-11-17 10:26: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/92980787/CCAST_.CFG @@ -16503,7 +16639,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:53:21 +TIME: 2020-11-17 10:26:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16551,7 +16687,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:53:22 +TIME: 2020-11-17 10:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16566,7 +16702,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:53:22 +TIME: 2020-11-17 10:26:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16617,7 +16753,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-11-09 12:53:23 +TIME: 2020-11-17 10: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/2214729248/CCAST_.CFG @@ -16652,7 +16788,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-11-09 12:53:26 +TIME: 2020-11-17 10:26:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16700,25 +16836,36 @@ >>> Processed Test Case: handleDrainState_Res1_VolNotReached (I) @LINE: 82 >>> Processing Test Case: handleDrainState_Res2_VolReached -(E) @LINE: 85 TEST.VALUE:uut_prototype_stubs.getActiveReservoir.return:RESERVOIR_2 - >>> Could not find function getActiveReservoir - >>> in unit uut_prototype_stubs. - >>> Value Line Error - Command Ignored -(S) @LINE: 90 +(S) @LINE: 89 >>> Processed Test Case: handleDrainState_Res2_VolReached -(I) @LINE: 98 +(I) @LINE: 97 >>> Processing Test Case: initDrainMode_NominalPath -(S) @LINE: 101 +(S) @LINE: 100 >>> Processed Test Case: initDrainMode_NominalPath -(I) @LINE: 109 +(I) @LINE: 108 >>> Processing Test Case: transitionToDrainMode_NominalPath -(S) @LINE: 117 +(S) @LINE: 116 >>> Processed Test Case: transitionToDrainMode_NominalPath -(S) @LINE: 117 +(S) @LINE: 116 >>> 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-11-17 10:26:37 +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/2214729248/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 MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-09 12:53:27 +TIME: 2020-11-17 10:26:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16791,7 +16938,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:53:28 +TIME: 2020-11-17 10:26: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/659864482/CCAST_.CFG @@ -16826,7 +16973,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:53:30 +TIME: 2020-11-17 10:26:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16874,7 +17021,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:53:31 +TIME: 2020-11-17 10:26:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16889,7 +17036,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:53:32 +TIME: 2020-11-17 10:26:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16940,7 +17087,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-11-09 12:53:33 +TIME: 2020-11-17 10:26:43 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 @@ -16976,7 +17123,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-11-09 12:53:35 +TIME: 2020-11-17 10:26:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16995,8 +17142,7 @@ Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 - Processing script line 100 - Processing script line 200 + Processing script line 250 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -17012,105 +17158,96 @@ (S) @LINE: 38 >>> Processed Test Case: execFillMode_DeliverState (I) @LINE: 44 + >>> Processing Test Case: execFillMode_Fill_TimeOut +(S) @LINE: 53 + >>> Processed Test Case: execFillMode_Fill_TimeOut +(I) @LINE: 59 >>> Processing Test Case: execFillMode_InvalidState -(S) @LINE: 51 +(S) @LINE: 66 >>> Processed Test Case: execFillMode_InvalidState -(I) @LINE: 57 +(I) @LINE: 72 >>> Processing Test Case: execFillMode_ProduceState -(S) @LINE: 61 +(S) @LINE: 76 >>> Processed Test Case: execFillMode_ProduceState -(I) @LINE: 67 +(I) @LINE: 82 >>> Processing Test Case: execFillMode_StartState -(S) @LINE: 71 +(S) @LINE: 86 >>> Processed Test Case: execFillMode_StartState -(I) @LINE: 79 +(E) @LINE: 92 TEST.SUBPROGRAM:exitFillMode + >>> Unknown subprogram name exitFillMode +(I) @LINE: 105 >>> Processing Test Case: handleCheckInletWaterState_RO_Rejection_Ratio_OutOfRange -(S) @LINE: 83 +(S) @LINE: 109 >>> Processed Test Case: handleCheckInletWaterState_RO_Rejection_Ratio_OutOfRange -(I) @LINE: 89 +(I) @LINE: 115 >>> Processing Test Case: handleCheckInletWaterState_Too_High_Conductivity -(S) @LINE: 93 +(S) @LINE: 119 >>> Processed Test Case: handleCheckInletWaterState_Too_High_Conductivity -(I) @LINE: 99 +(I) @LINE: 125 >>> Processing Test Case: handleCheckInletWaterState_Too_High_Temperature -(S) @LINE: 103 +(S) @LINE: 129 >>> Processed Test Case: handleCheckInletWaterState_Too_High_Temperature -(I) @LINE: 109 +(I) @LINE: 135 >>> Processing Test Case: handleCheckInletWaterState_Too_Low_Conductivity -(S) @LINE: 113 +(S) @LINE: 139 >>> Processed Test Case: handleCheckInletWaterState_Too_Low_Conductivity -(I) @LINE: 119 +(I) @LINE: 145 >>> Processing Test Case: handleCheckInletWaterState_Too_low_Temperature -(S) @LINE: 123 +(S) @LINE: 149 >>> Processed Test Case: handleCheckInletWaterState_Too_low_Temperature -(I) @LINE: 131 +(I) @LINE: 157 >>> Processing Test Case: handleDeliverDialysateState_Bad_Acid_Concentrate -(S) @LINE: 135 +(S) @LINE: 161 >>> Processed Test Case: handleDeliverDialysateState_Bad_Acid_Concentrate -(I) @LINE: 141 +(I) @LINE: 167 >>> Processing Test Case: handleDeliverDialysateState_Bad_Bicarb_Concentrate -(S) @LINE: 145 +(S) @LINE: 171 >>> Processed Test Case: handleDeliverDialysateState_Bad_Bicarb_Concentrate -(I) @LINE: 151 +(I) @LINE: 177 >>> Processing Test Case: handleDeliverDialysateState_NominalPath -(S) @LINE: 157 +(S) @LINE: 183 >>> Processed Test Case: handleDeliverDialysateState_NominalPath -(I) @LINE: 163 +(I) @LINE: 189 >>> Processing Test Case: handleDeliverDialysateState_Res2 -(S) @LINE: 169 +(S) @LINE: 195 >>> Processed Test Case: handleDeliverDialysateState_Res2 -(I) @LINE: 177 +(I) @LINE: 203 >>> Processing Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_In_Range -(S) @LINE: 182 +(S) @LINE: 208 >>> Processed Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_In_Range -(I) @LINE: 188 +(I) @LINE: 214 >>> Processing Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_Too_High -(S) @LINE: 193 +(S) @LINE: 219 >>> Processed Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_Too_High -(I) @LINE: 199 +(I) @LINE: 225 >>> Processing Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_Too_Low -(S) @LINE: 204 +(S) @LINE: 230 >>> Processed Test Case: handleDialysateMixing_RO_Pump_Flow_Rate_Too_Low -(I) @LINE: 212 +(I) @LINE: 238 >>> Processing Test Case: handleDialysateProductionState_Bad_Acid_Concentrate -(S) @LINE: 216 +(S) @LINE: 242 >>> Processed Test Case: handleDialysateProductionState_Bad_Acid_Concentrate -(I) @LINE: 222 +(I) @LINE: 248 >>> Processing Test Case: handleDialysateProductionState_Bad_Bicarb_Concentrate -(S) @LINE: 226 +(S) @LINE: 252 >>> Processed Test Case: handleDialysateProductionState_Bad_Bicarb_Concentrate -(I) @LINE: 232 +(I) @LINE: 258 >>> Processing Test Case: handleDialysateProductionState_StartDeliver -(S) @LINE: 237 +(S) @LINE: 263 >>> Processed Test Case: handleDialysateProductionState_StartDeliver -(I) @LINE: 245 +(I) @LINE: 271 >>> Processing Test Case: initFillMode_NominalPath -(S) @LINE: 248 +(S) @LINE: 274 >>> Processed Test Case: initFillMode_NominalPath -(I) @LINE: 256 +(I) @LINE: 282 >>> Processing Test Case: transitionToFillMode_NominalPath -(S) @LINE: 261 +(S) @LINE: 287 >>> Processed Test Case: transitionToFillMode_NominalPath -(S) @LINE: 261 +(S) @LINE: 287 >>> 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-11-09 12:53:36 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/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 MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-09 12:53:37 +TIME: 2020-11-17 10:26:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17150,6 +17287,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execFillMode_Fill_TimeOut + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: execFillMode_InvalidState Preparing Test Data Running Test Case @@ -17283,7 +17427,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:53:38 +TIME: 2020-11-17 10:26: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/207958446/CCAST_.CFG @@ -17318,7 +17462,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:53:40 +TIME: 2020-11-17 10:26:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17366,7 +17510,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:53:42 +TIME: 2020-11-17 10:26:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17381,7 +17525,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:53:42 +TIME: 2020-11-17 10:26:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17432,7 +17576,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:53:43 +TIME: 2020-11-17 10:26: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/2696398941/CCAST_.CFG @@ -17467,7 +17611,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:53:45 +TIME: 2020-11-17 10:26:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17515,7 +17659,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:53:46 +TIME: 2020-11-17 10:26:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17530,7 +17674,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:53:47 +TIME: 2020-11-17 10:26:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17581,7 +17725,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:53:48 +TIME: 2020-11-17 10:26: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/1280444563/CCAST_.CFG @@ -17616,7 +17760,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:53:50 +TIME: 2020-11-17 10:27:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17724,7 +17868,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:53:52 +TIME: 2020-11-17 10:27:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17739,7 +17883,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:53:52 +TIME: 2020-11-17 10:27:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17891,7 +18035,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-11-09 12:53:53 +TIME: 2020-11-17 10:27: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/428270081/CCAST_.CFG @@ -17926,7 +18070,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-11-09 12:53:56 +TIME: 2020-11-17 10:27:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18008,7 +18152,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-11-09 12:53:57 +TIME: 2020-11-17 10:27:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18023,7 +18167,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-11-09 12:53:58 +TIME: 2020-11-17 10:27:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18045,7 +18189,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-11-09 12:53:59 +TIME: 2020-11-17 10:27:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18156,7 +18300,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:54:00 +TIME: 2020-11-17 10:27: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/1806992042/CCAST_.CFG @@ -18191,7 +18335,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:54:02 +TIME: 2020-11-17 10:27:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18239,7 +18383,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:54:03 +TIME: 2020-11-17 10:27:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18254,7 +18398,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:54:04 +TIME: 2020-11-17 10:27:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18305,7 +18449,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:54:05 +TIME: 2020-11-17 10:27:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/CCAST_.CFG @@ -18340,7 +18484,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:54:07 +TIME: 2020-11-17 10:27:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18396,7 +18540,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:54:08 +TIME: 2020-11-17 10:27:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18411,7 +18555,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:54:09 +TIME: 2020-11-17 10:27:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18477,7 +18621,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-11-09 12:54:10 +TIME: 2020-11-17 10:27: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/336674795/CCAST_.CFG @@ -18512,7 +18656,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-11-09 12:54:12 +TIME: 2020-11-17 10:27:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18611,7 +18755,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-11-09 12:54:13 +TIME: 2020-11-17 10:27:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18626,7 +18770,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-11-09 12:54:14 +TIME: 2020-11-17 10:27:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18648,7 +18792,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-11-09 12:54:14 +TIME: 2020-11-17 10:27:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18787,7 +18931,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-11-09 12:54:16 +TIME: 2020-11-17 10:27:29 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 @@ -18822,7 +18966,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-11-09 12:54:18 +TIME: 2020-11-17 10:27:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18923,7 +19067,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-11-09 12:54:19 +TIME: 2020-11-17 10:27:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18938,7 +19082,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-11-09 12:54:20 +TIME: 2020-11-17 10:27:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19076,7 +19220,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-09 12:54:21 +TIME: 2020-11-17 10: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/3573947708/CCAST_.CFG @@ -19112,7 +19256,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-09 12:54:24 +TIME: 2020-11-17 10:27:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19779,7 +19923,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-09 12:54:26 +TIME: 2020-11-17 10:27:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20862,7 +21006,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-11-09 12:54:29 +TIME: 2020-11-17 10: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/241608158/CCAST_.CFG @@ -20897,7 +21041,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-11-09 12:54:32 +TIME: 2020-11-17 10:27:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21056,7 +21200,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-11-09 12:54:33 +TIME: 2020-11-17 10:27:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21071,7 +21215,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-11-09 12:54:33 +TIME: 2020-11-17 10:27:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21314,7 +21458,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:54:35 +TIME: 2020-11-17 10:27: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/3477059194/CCAST_.CFG @@ -21349,7 +21493,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:54:37 +TIME: 2020-11-17 10:27:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21410,7 +21554,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:54:38 +TIME: 2020-11-17 10:27:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21425,7 +21569,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:54:39 +TIME: 2020-11-17 10:27:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21495,7 +21639,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:54:40 +TIME: 2020-11-17 10:27:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/CCAST_.CFG @@ -21530,7 +21674,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:54:42 +TIME: 2020-11-17 10:27:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21663,7 +21807,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:54:44 +TIME: 2020-11-17 10:28:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21678,7 +21822,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:54:44 +TIME: 2020-11-17 10:28:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21855,7 +21999,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-11-09 12:54:46 +TIME: 2020-11-17 10:28:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG @@ -21890,7 +22034,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-11-09 12:54:48 +TIME: 2020-11-17 10:28:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22074,7 +22218,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-11-09 12:54:49 +TIME: 2020-11-17 10:28:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22089,7 +22233,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-09 12:54:50 +TIME: 2020-11-17 10:28:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22368,7 +22512,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-11-09 12:54:51 +TIME: 2020-11-17 10:28: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/148424956/CCAST_.CFG @@ -22403,7 +22547,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-11-09 12:54:54 +TIME: 2020-11-17 10:28:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22424,7 +22568,7 @@ Processing script line 100 Processing script line 150 Processing script line 200 - Processing script line 300 + Processing script line 350 Processing script line 400 Processing script line 600 Processing script line 650 @@ -22480,178 +22624,166 @@ (S) @LINE: 141 >>> Processed Test Case: getReservoirFillVolumeTargetMl_Override (I) @LINE: 149 - >>> Processing Test Case: hasTargetDrainVolumeReached_RedundantWeightDrop -(S) @LINE: 158 - >>> Processed Test Case: hasTargetDrainVolumeReached_RedundantWeightDrop -(I) @LINE: 164 >>> Processing Test Case: hasTargetDrainVolumeReached_RequestTareLoadCells -(S) @LINE: 176 +(S) @LINE: 161 >>> Processed Test Case: hasTargetDrainVolumeReached_RequestTareLoadCells -(I) @LINE: 182 +(I) @LINE: 167 >>> Processing Test Case: hasTargetDrainVolumeReached_TargetReached -(S) @LINE: 189 +(S) @LINE: 174 >>> Processed Test Case: hasTargetDrainVolumeReached_TargetReached -(I) @LINE: 195 - >>> Processing Test Case: hasTargetDrainVolumeReached_TargetReachedRedundant -(S) @LINE: 202 - >>> Processed Test Case: hasTargetDrainVolumeReached_TargetReachedRedundant -(I) @LINE: 208 +(I) @LINE: 180 >>> Processing Test Case: hasTargetDrainVolumeReached_TimeOut -(S) @LINE: 219 +(S) @LINE: 191 >>> Processed Test Case: hasTargetDrainVolumeReached_TimeOut -(I) @LINE: 225 +(I) @LINE: 197 >>> Processing Test Case: hasTargetDrainVolumeReached_WeightDrop -(S) @LINE: 234 +(S) @LINE: 206 >>> Processed Test Case: hasTargetDrainVolumeReached_WeightDrop -(I) @LINE: 240 +(I) @LINE: 212 >>> Processing Test Case: hasTargetDrainVolumeReached_WeightNotDrop -(S) @LINE: 249 +(S) @LINE: 221 >>> Processed Test Case: hasTargetDrainVolumeReached_WeightNotDrop -(I) @LINE: 257 +(I) @LINE: 229 >>> Processing Test Case: hasTargetFillVolumeReached_False -(S) @LINE: 262 +(S) @LINE: 234 >>> Processed Test Case: hasTargetFillVolumeReached_False -(I) @LINE: 268 +(I) @LINE: 240 >>> Processing Test Case: hasTargetFillVolumeReached_Primary_Reached -(S) @LINE: 273 +(S) @LINE: 245 >>> Processed Test Case: hasTargetFillVolumeReached_Primary_Reached -(I) @LINE: 279 - >>> Processing Test Case: hasTargetFillVolumeReached_Redundant_Reached -(S) @LINE: 284 - >>> Processed Test Case: hasTargetFillVolumeReached_Redundant_Reached -(I) @LINE: 292 +(I) @LINE: 253 >>> Processing Test Case: initReservoirs_NominalPath -(S) @LINE: 302 +(S) @LINE: 263 >>> Processed Test Case: initReservoirs_NominalPath -(I) @LINE: 310 +(I) @LINE: 271 >>> Processing Test Case: resetReservoirLoadCellsOffset_NominalPath -(S) @LINE: 313 +(S) @LINE: 274 >>> Processed Test Case: resetReservoirLoadCellsOffset_NominalPath -(I) @LINE: 321 +(I) @LINE: 282 >>> Processing Test Case: setActiveReservoirCmd_InvalidMode -(S) @LINE: 325 +(S) @LINE: 286 >>> Processed Test Case: setActiveReservoirCmd_InvalidMode -(I) @LINE: 331 +(I) @LINE: 292 >>> Processing Test Case: setActiveReservoirCmd_InvalidReservoir -(S) @LINE: 335 +(S) @LINE: 296 >>> Processed Test Case: setActiveReservoirCmd_InvalidReservoir -(I) @LINE: 341 +(I) @LINE: 302 >>> Processing Test Case: setActiveReservoirCmd_Res1 -(S) @LINE: 349 +(S) @LINE: 310 >>> Processed Test Case: setActiveReservoirCmd_Res1 -(I) @LINE: 355 +(I) @LINE: 316 >>> Processing Test Case: setActiveReservoirCmd_Res2 -(S) @LINE: 364 +(S) @LINE: 325 >>> Processed Test Case: setActiveReservoirCmd_Res2 -(I) @LINE: 372 +(I) @LINE: 333 >>> Processing Test Case: startDrainCmd_InvalidMode -(S) @LINE: 378 +(S) @LINE: 339 >>> Processed Test Case: startDrainCmd_InvalidMode -(I) @LINE: 384 +(I) @LINE: 345 >>> Processing Test Case: startDrainCmd_NominalPath -(S) @LINE: 392 +(S) @LINE: 353 >>> Processed Test Case: startDrainCmd_NominalPath -(I) @LINE: 398 +(I) @LINE: 359 >>> Processing Test Case: startDrainCmd_VolumeTooHigh -(S) @LINE: 405 +(S) @LINE: 366 >>> Processed Test Case: startDrainCmd_VolumeTooHigh -(I) @LINE: 411 +(I) @LINE: 372 >>> Processing Test Case: startDrainCmd_VolumeTooLow -(S) @LINE: 418 +(S) @LINE: 379 >>> Processed Test Case: startDrainCmd_VolumeTooLow -(I) @LINE: 426 +(I) @LINE: 387 >>> Processing Test Case: startFillCmd_InvalidFillVolume -(S) @LINE: 433 +(S) @LINE: 394 >>> Processed Test Case: startFillCmd_InvalidFillVolume -(I) @LINE: 439 +(I) @LINE: 400 >>> Processing Test Case: startFillCmd_InvalidMode -(S) @LINE: 445 +(S) @LINE: 406 >>> Processed Test Case: startFillCmd_InvalidMode -(I) @LINE: 451 +(I) @LINE: 412 >>> Processing Test Case: startFillCmd_InvalidSubMode -(S) @LINE: 458 +(S) @LINE: 419 >>> Processed Test Case: startFillCmd_InvalidSubMode -(I) @LINE: 464 +(I) @LINE: 425 >>> Processing Test Case: startFillCmd_NominalPath -(S) @LINE: 472 +(S) @LINE: 433 >>> Processed Test Case: startFillCmd_NominalPath -(I) @LINE: 480 +(I) @LINE: 441 >>> Processing Test Case: startTrimmerHeaterCmd_NominalPath -(S) @LINE: 483 +(S) @LINE: 444 >>> Processed Test Case: startTrimmerHeaterCmd_NominalPath -(I) @LINE: 491 +(I) @LINE: 452 >>> Processing Test Case: stopDrainCmd_InvalidMode -(S) @LINE: 496 +(S) @LINE: 457 >>> Processed Test Case: stopDrainCmd_InvalidMode -(I) @LINE: 502 +(I) @LINE: 463 >>> Processing Test Case: stopDrainCmd_NominalPath -(S) @LINE: 508 +(S) @LINE: 469 >>> Processed Test Case: stopDrainCmd_NominalPath -(I) @LINE: 516 +(I) @LINE: 477 >>> Processing Test Case: stopFillCmd_InvalidMode -(S) @LINE: 521 +(S) @LINE: 482 >>> Processed Test Case: stopFillCmd_InvalidMode -(I) @LINE: 527 +(I) @LINE: 488 >>> Processing Test Case: stopFillCmd_NominalPath -(S) @LINE: 533 +(S) @LINE: 494 >>> Processed Test Case: stopFillCmd_NominalPath -(I) @LINE: 541 +(I) @LINE: 502 >>> Processing Test Case: stopTrimmerHeaterCmd_NominalPath -(S) @LINE: 548 +(S) @LINE: 509 >>> Processed Test Case: stopTrimmerHeaterCmd_NominalPath -(I) @LINE: 556 +(I) @LINE: 517 >>> Processing Test Case: testResetDGActiveReservoirOverride_NominalPath -(S) @LINE: 567 +(S) @LINE: 528 >>> Processed Test Case: testResetDGActiveReservoirOverride_NominalPath -(I) @LINE: 573 +(I) @LINE: 534 >>> Processing Test Case: testResetDGActiveReservoirOverride_NotLoggedIn -(S) @LINE: 584 +(S) @LINE: 545 >>> Processed Test Case: testResetDGActiveReservoirOverride_NotLoggedIn -(I) @LINE: 592 +(I) @LINE: 553 >>> Processing Test Case: testResetReservoirDrainVolumeMlOverride_NominalPath -(S) @LINE: 603 +(S) @LINE: 564 >>> Processed Test Case: testResetReservoirDrainVolumeMlOverride_NominalPath -(I) @LINE: 609 +(I) @LINE: 570 >>> Processing Test Case: testResetReservoirDrainVolumeMlOverride_NotLoggedIn -(S) @LINE: 620 +(S) @LINE: 581 >>> Processed Test Case: testResetReservoirDrainVolumeMlOverride_NotLoggedIn -(I) @LINE: 628 +(I) @LINE: 589 >>> Processing Test Case: testResetReservoirFillVolumeMlOverride_NominalPath -(S) @LINE: 639 +(S) @LINE: 600 >>> Processed Test Case: testResetReservoirFillVolumeMlOverride_NominalPath -(I) @LINE: 645 +(I) @LINE: 606 >>> Processing Test Case: testResetReservoirFillVolumeMlOverride_NotLoggedIn -(S) @LINE: 656 +(S) @LINE: 617 >>> Processed Test Case: testResetReservoirFillVolumeMlOverride_NotLoggedIn -(I) @LINE: 664 +(I) @LINE: 625 >>> Processing Test Case: testSetDGActiveReservoirOverride_NominalPath -(S) @LINE: 674 +(S) @LINE: 635 >>> Processed Test Case: testSetDGActiveReservoirOverride_NominalPath -(I) @LINE: 680 +(I) @LINE: 641 >>> Processing Test Case: testSetDGActiveReservoirOverride_NotLoggedIn -(S) @LINE: 690 +(S) @LINE: 651 >>> Processed Test Case: testSetDGActiveReservoirOverride_NotLoggedIn -(I) @LINE: 698 +(I) @LINE: 659 >>> Processing Test Case: testSetReservoirDrainVolumeMlOverride_NominalPath -(S) @LINE: 710 +(S) @LINE: 671 >>> Processed Test Case: testSetReservoirDrainVolumeMlOverride_NominalPath -(I) @LINE: 716 +(I) @LINE: 677 >>> Processing Test Case: testSetReservoirDrainVolumeMlOverride_NotLoggedIn -(S) @LINE: 728 +(S) @LINE: 689 >>> Processed Test Case: testSetReservoirDrainVolumeMlOverride_NotLoggedIn -(I) @LINE: 736 +(I) @LINE: 697 >>> Processing Test Case: testSetReservoirFillVolumeMlOverride_NominalPath -(S) @LINE: 748 +(S) @LINE: 709 >>> Processed Test Case: testSetReservoirFillVolumeMlOverride_NominalPath -(I) @LINE: 754 +(I) @LINE: 715 >>> Processing Test Case: testSetReservoirFillVolumeMlOverride_NotLoggedIn -(S) @LINE: 766 +(S) @LINE: 727 >>> Processed Test Case: testSetReservoirFillVolumeMlOverride_NotLoggedIn -(S) @LINE: 766 +(S) @LINE: 727 >>> 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-11-09 12:54:56 +TIME: 2020-11-17 10:28:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22666,7 +22798,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-11-09 12:54:56 +TIME: 2020-11-17 10:28:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22846,7 +22978,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Reservoirs.hasTargetFillVolumeReached test cases + Running all Reservoirs.hasTargetFillVolumeBeenReached test cases Running: hasTargetFillVolumeReached_False Preparing Test Data Running Test Case @@ -22861,21 +22993,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running: hasTargetFillVolumeReached_Redundant_Reached - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Reservoirs.hasTargetDrainVolumeReached test cases - Running: hasTargetDrainVolumeReached_RedundantWeightDrop - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete + Running all Reservoirs.hasTargetDrainVolumeBeenReached test cases Running: hasTargetDrainVolumeReached_RequestTareLoadCells Preparing Test Data Running Test Case @@ -22890,13 +23008,6 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running: hasTargetDrainVolumeReached_TargetReachedRedundant - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: hasTargetDrainVolumeReached_TimeOut Preparing Test Data Running Test Case @@ -23064,7 +23175,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-11-09 12:54:58 +TIME: 2020-11-17 10:28:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG @@ -23100,7 +23211,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-11-09 12:55:01 +TIME: 2020-11-17 10:28:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23301,7 +23412,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-11-09 12:55:02 +TIME: 2020-11-17 10:28:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23316,7 +23427,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-11-09 12:55:03 +TIME: 2020-11-17 10:28:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23338,7 +23449,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-11-09 12:55:04 +TIME: 2020-11-17 10:28:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23658,7 +23769,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:55:05 +TIME: 2020-11-17 10:28:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/CCAST_.CFG @@ -23694,7 +23805,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:55:08 +TIME: 2020-11-17 10:28:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24174,7 +24285,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:55:10 +TIME: 2020-11-17 10:28:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24189,7 +24300,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:55:11 +TIME: 2020-11-17 10:28:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24994,7 +25105,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:55:14 +TIME: 2020-11-17 10: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/129022383/CCAST_.CFG @@ -25030,7 +25141,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:55:16 +TIME: 2020-11-17 10:28:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25095,7 +25206,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:55:17 +TIME: 2020-11-17 10:28:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25110,7 +25221,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:55:18 +TIME: 2020-11-17 10:28:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25190,7 +25301,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-11-09 12:55:19 +TIME: 2020-11-17 10: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/480960922/CCAST_.CFG @@ -25225,7 +25336,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-11-09 12:55:22 +TIME: 2020-11-17 10:28:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25593,17 +25704,9 @@ (S) @LINE: 1399 >>> Processed Test Case: A022_SoftwareResetRequest (I) @LINE: 1405 - >>> Processing Test Case: A023_OperationModeRequest -(E) @LINE: 1410 TEST.EXPECTED:uut_prototype_stubs.handleDGOperationModeRequest.message[0].hdr.msgID:0xA023 - >>> Could not find function handleDGOperationModeRequest - >>> in unit uut_prototype_stubs. - >>> Value Line Error - Command Ignored -(E) @LINE: 1411 TEST.EXPECTED:uut_prototype_stubs.handleDGOperationModeRequest.message[0].hdr.payloadLen:4 - >>> Could not find function handleDGOperationModeRequest - >>> in unit uut_prototype_stubs. - >>> Value Line Error - Command Ignored + >>> Processing Test Case: A023_ConcentratePumpMeasuredSpeedOverride (S) @LINE: 1412 - >>> Processed Test Case: A023_OperationModeRequest + >>> Processed Test Case: A023_ConcentratePumpMeasuredSpeedOverride (I) @LINE: 1418 >>> Processing Test Case: A024_ConcentratePumpTargetSpeedOverride (S) @LINE: 1425 @@ -25666,9 +25769,24 @@ >>> Processed Test Case: PendingCANPacketIsPartial (S) @LINE: 1619 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-11-17 10:28:45 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/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 SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-09 12:55:24 +TIME: 2020-11-17 10:28:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26321,7 +26439,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running: A023_OperationModeRequest + Running: A023_ConcentratePumpMeasuredSpeedOverride Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST @@ -26380,7 +26498,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-11-09 12:55:26 +TIME: 2020-11-17 10:28: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/456249163/CCAST_.CFG @@ -26416,7 +26534,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-11-09 12:55:29 +TIME: 2020-11-17 10:28:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26446,32 +26564,32 @@ Processing script line 550 Processing script line 600 Processing script line 650 + Processing script line 700 Processing script line 750 Processing script line 800 - Processing script line 850 + Processing script line 900 + Processing script line 950 Processing script line 1000 Processing script line 1050 - Processing script line 1100 + Processing script line 1150 + Processing script line 1200 Processing script line 1250 Processing script line 1300 Processing script line 1350 Processing script line 1400 + Processing script line 1450 Processing script line 1500 - Processing script line 1550 + Processing script line 1600 Processing script line 1650 Processing script line 1700 - Processing script line 1750 - Processing script line 1800 Processing script line 1850 Processing script line 1900 Processing script line 1950 - Processing script line 2000 Processing script line 2050 Processing script line 2100 Processing script line 2200 Processing script line 2250 - Processing script line 2300 - Processing script line 2350 + Processing script line 2400 Processing script line 2450 Processing script line 2500 Processing script line 2550 @@ -26480,19 +26598,18 @@ Processing script line 2700 Processing script line 2750 Processing script line 2800 + Processing script line 2850 + Processing script line 2900 Processing script line 2950 - Processing script line 3000 - Processing script line 3050 Processing script line 3100 Processing script line 3150 Processing script line 3200 - Processing script line 3250 Processing script line 3300 - Processing script line 3350 Processing script line 3400 Processing script line 3450 Processing script line 3500 Processing script line 3550 + Processing script line 3650 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -26562,494 +26679,502 @@ (S) @LINE: 583 >>> Processed Test Case: broadcastValvesStates_NominalPath (I) @LINE: 591 - >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen + >>> Processing Test Case: handleConcentratePumpMeasuredSpeedlOverride_InvalidPayloadLen (S) @LINE: 602 - >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen + >>> Processed Test Case: handleConcentratePumpMeasuredSpeedlOverride_InvalidPayloadLen (I) @LINE: 608 + >>> Processing Test Case: handleConcentratePumpMeasuredSpeedlOverride_Override +(S) @LINE: 634 + >>> Processed Test Case: handleConcentratePumpMeasuredSpeedlOverride_Override +(I) @LINE: 640 + >>> Processing Test Case: handleConcentratePumpMeasuredSpeedlOverride_Reset +(S) @LINE: 665 + >>> Processed Test Case: handleConcentratePumpMeasuredSpeedlOverride_Reset +(I) @LINE: 673 + >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen +(S) @LINE: 684 + >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen +(I) @LINE: 690 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Override -(S) @LINE: 629 +(S) @LINE: 711 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Override -(I) @LINE: 635 +(I) @LINE: 717 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(S) @LINE: 655 +(S) @LINE: 737 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(I) @LINE: 663 +(I) @LINE: 745 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(S) @LINE: 676 +(S) @LINE: 758 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(I) @LINE: 682 +(I) @LINE: 764 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(S) @LINE: 695 +(S) @LINE: 785 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(I) @LINE: 701 +(I) @LINE: 791 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(S) @LINE: 718 +(S) @LINE: 817 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(I) @LINE: 724 +(I) @LINE: 823 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(S) @LINE: 741 +(S) @LINE: 849 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(I) @LINE: 749 +(I) @LINE: 857 >>> Processing Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(S) @LINE: 762 +(S) @LINE: 870 >>> Processed Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(I) @LINE: 768 +(I) @LINE: 876 >>> Processing Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(S) @LINE: 781 +(S) @LINE: 889 >>> Processed Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(I) @LINE: 787 +(I) @LINE: 895 >>> Processing Test Case: handleDGSoftwareResetRequest_Reset -(S) @LINE: 803 +(S) @LINE: 911 >>> Processed Test Case: handleDGSoftwareResetRequest_Reset -(I) @LINE: 811 +(I) @LINE: 919 >>> Processing Test Case: handleDrainCmd_InvalidPayloadLength -(S) @LINE: 823 +(S) @LINE: 931 >>> Processed Test Case: handleDrainCmd_InvalidPayloadLength -(I) @LINE: 829 +(I) @LINE: 937 >>> Processing Test Case: handleDrainCmd_NominalPath -(S) @LINE: 850 +(S) @LINE: 958 >>> Processed Test Case: handleDrainCmd_NominalPath -(I) @LINE: 858 +(I) @LINE: 966 >>> Processing Test Case: handleFWVersionCmd_NominalPath -(S) @LINE: 875 +(S) @LINE: 983 >>> Processed Test Case: handleFWVersionCmd_NominalPath -(I) @LINE: 883 +(I) @LINE: 991 >>> Processing Test Case: handleFillCmd_InvalidPayloadLength -(S) @LINE: 895 +(S) @LINE: 1003 >>> Processed Test Case: handleFillCmd_InvalidPayloadLength -(I) @LINE: 901 +(I) @LINE: 1009 >>> Processing Test Case: handleFillCmd_NominalPath -(S) @LINE: 919 +(S) @LINE: 1027 >>> Processed Test Case: handleFillCmd_NominalPath -(I) @LINE: 927 +(I) @LINE: 1035 >>> Processing Test Case: handlePowerOffWarning_InvalidPayloadLen -(S) @LINE: 934 +(S) @LINE: 1042 >>> Processed Test Case: handlePowerOffWarning_InvalidPayloadLen -(I) @LINE: 940 +(I) @LINE: 1048 >>> Processing Test Case: handlePowerOffWarning_NominalPath -(S) @LINE: 948 +(S) @LINE: 1056 >>> Processed Test Case: handlePowerOffWarning_NominalPath -(I) @LINE: 956 +(I) @LINE: 1064 >>> Processing Test Case: handleSampleWaterCmd_InvalidPayloadLength -(S) @LINE: 968 +(S) @LINE: 1076 >>> Processed Test Case: handleSampleWaterCmd_InvalidPayloadLength -(I) @LINE: 974 +(I) @LINE: 1082 >>> Processing Test Case: handleSampleWaterCmd_NominalPath -(S) @LINE: 988 +(S) @LINE: 1096 >>> Processed Test Case: handleSampleWaterCmd_NominalPath -(I) @LINE: 994 +(I) @LINE: 1102 >>> Processing Test Case: handleSampleWaterCmd_NotStandbyMode -(S) @LINE: 1007 +(S) @LINE: 1115 >>> Processed Test Case: handleSampleWaterCmd_NotStandbyMode -(I) @LINE: 1015 +(I) @LINE: 1123 >>> Processing Test Case: handleSetAccelCalibration_InvalidPayloadLen -(S) @LINE: 1027 +(S) @LINE: 1135 >>> Processed Test Case: handleSetAccelCalibration_InvalidPayloadLen -(I) @LINE: 1033 +(I) @LINE: 1141 >>> Processing Test Case: handleSetAccelCalibration_NominalPath -(S) @LINE: 1061 +(S) @LINE: 1169 >>> Processed Test Case: handleSetAccelCalibration_NominalPath -(I) @LINE: 1069 +(I) @LINE: 1177 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(S) @LINE: 1081 +(S) @LINE: 1189 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(I) @LINE: 1087 +(I) @LINE: 1195 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_Override -(S) @LINE: 1114 +(S) @LINE: 1222 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_Override -(I) @LINE: 1120 - >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_Reset -(S) @LINE: 1146 - >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_Reset -(I) @LINE: 1154 +(I) @LINE: 1230 >>> Processing Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(S) @LINE: 1166 +(S) @LINE: 1242 >>> Processed Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(I) @LINE: 1172 +(I) @LINE: 1248 >>> Processing Test Case: handleSetDialysateTemperatureCmd_NominalPath -(S) @LINE: 1194 +(S) @LINE: 1270 >>> Processed Test Case: handleSetDialysateTemperatureCmd_NominalPath -(I) @LINE: 1202 +(I) @LINE: 1278 >>> Processing Test Case: handleSetRTCTimestamp -(S) @LINE: 1237 +(S) @LINE: 1313 >>> Processed Test Case: handleSetRTCTimestamp -(I) @LINE: 1245 +(I) @LINE: 1321 >>> Processing Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(S) @LINE: 1260 +(S) @LINE: 1336 >>> Processed Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(I) @LINE: 1266 +(I) @LINE: 1342 >>> Processing Test Case: handleStartStopPrimaryHeater_Start -(S) @LINE: 1276 +(S) @LINE: 1352 >>> Processed Test Case: handleStartStopPrimaryHeater_Start -(I) @LINE: 1282 +(I) @LINE: 1358 >>> Processing Test Case: handleStartStopPrimaryHeater_Stop -(S) @LINE: 1291 +(S) @LINE: 1367 >>> Processed Test Case: handleStartStopPrimaryHeater_Stop -(I) @LINE: 1299 +(I) @LINE: 1375 >>> Processing Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(S) @LINE: 1311 +(S) @LINE: 1387 >>> Processed Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(I) @LINE: 1317 +(I) @LINE: 1393 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(S) @LINE: 1334 +(S) @LINE: 1410 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(I) @LINE: 1340 +(I) @LINE: 1416 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(S) @LINE: 1358 +(S) @LINE: 1434 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(I) @LINE: 1364 +(I) @LINE: 1440 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(S) @LINE: 1381 +(S) @LINE: 1457 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(I) @LINE: 1387 +(I) @LINE: 1463 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(S) @LINE: 1405 +(S) @LINE: 1481 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(I) @LINE: 1413 +(I) @LINE: 1489 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(S) @LINE: 1425 +(S) @LINE: 1501 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(I) @LINE: 1431 +(I) @LINE: 1507 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Start -(S) @LINE: 1448 +(S) @LINE: 1524 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Start -(I) @LINE: 1454 +(I) @LINE: 1530 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Stop -(S) @LINE: 1471 +(S) @LINE: 1547 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Stop -(I) @LINE: 1479 +(I) @LINE: 1555 >>> Processing Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(S) @LINE: 1491 +(S) @LINE: 1567 >>> Processed Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(I) @LINE: 1497 +(I) @LINE: 1573 >>> Processing Test Case: handleSwitchReservoirCmd_NominalPath -(S) @LINE: 1515 +(S) @LINE: 1591 >>> Processed Test Case: handleSwitchReservoirCmd_NominalPath -(I) @LINE: 1523 +(I) @LINE: 1599 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 1533 +(S) @LINE: 1609 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 1539 +(I) @LINE: 1615 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 1564 +(S) @LINE: 1640 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 1570 +(I) @LINE: 1646 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 1594 +(S) @LINE: 1670 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 1602 +(I) @LINE: 1678 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 1614 +(S) @LINE: 1690 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 1620 +(I) @LINE: 1696 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1642 +(S) @LINE: 1718 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1648 +(I) @LINE: 1724 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1669 +(S) @LINE: 1745 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1677 +(I) @LINE: 1753 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(S) @LINE: 1689 +(S) @LINE: 1765 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(I) @LINE: 1695 +(I) @LINE: 1771 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Override -(S) @LINE: 1722 +(S) @LINE: 1798 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Override -(I) @LINE: 1728 +(I) @LINE: 1804 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(S) @LINE: 1754 +(S) @LINE: 1830 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(I) @LINE: 1762 +(I) @LINE: 1838 >>> Processing Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(S) @LINE: 1774 +(S) @LINE: 1850 >>> Processed Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(I) @LINE: 1780 +(I) @LINE: 1856 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Override -(S) @LINE: 1807 +(S) @LINE: 1883 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Override -(I) @LINE: 1813 +(I) @LINE: 1889 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Reset -(S) @LINE: 1839 +(S) @LINE: 1915 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Reset -(I) @LINE: 1847 +(I) @LINE: 1923 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(S) @LINE: 1860 +(S) @LINE: 1936 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(I) @LINE: 1866 +(I) @LINE: 1942 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(S) @LINE: 1889 +(S) @LINE: 1965 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(I) @LINE: 1895 +(I) @LINE: 1971 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(S) @LINE: 1917 +(S) @LINE: 1993 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(I) @LINE: 1925 +(I) @LINE: 2001 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1937 +(S) @LINE: 2013 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1943 +(I) @LINE: 2019 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1965 +(S) @LINE: 2041 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1971 +(I) @LINE: 2047 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1992 +(S) @LINE: 2068 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2000 +(I) @LINE: 2076 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2012 +(S) @LINE: 2088 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2018 +(I) @LINE: 2094 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(S) @LINE: 2040 +(S) @LINE: 2116 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(I) @LINE: 2046 +(I) @LINE: 2122 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(S) @LINE: 2067 +(S) @LINE: 2143 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(I) @LINE: 2075 +(I) @LINE: 2151 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2087 +(S) @LINE: 2163 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2093 +(I) @LINE: 2169 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(S) @LINE: 2116 +(S) @LINE: 2192 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(I) @LINE: 2122 +(I) @LINE: 2198 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(S) @LINE: 2144 +(S) @LINE: 2220 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(I) @LINE: 2152 +(I) @LINE: 2228 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2164 +(S) @LINE: 2240 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2170 +(I) @LINE: 2246 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2192 +(S) @LINE: 2268 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2198 +(I) @LINE: 2274 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2219 +(S) @LINE: 2295 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2227 +(I) @LINE: 2303 >>> Processing Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(S) @LINE: 2239 +(S) @LINE: 2315 >>> Processed Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(I) @LINE: 2245 +(I) @LINE: 2321 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Override -(S) @LINE: 2272 +(S) @LINE: 2348 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Override -(I) @LINE: 2278 +(I) @LINE: 2354 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Reset -(S) @LINE: 2304 +(S) @LINE: 2380 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Reset -(I) @LINE: 2312 +(I) @LINE: 2388 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2324 +(S) @LINE: 2400 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2330 +(I) @LINE: 2406 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2352 +(S) @LINE: 2428 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2358 +(I) @LINE: 2434 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2379 +(S) @LINE: 2455 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2387 +(I) @LINE: 2463 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(S) @LINE: 2399 +(S) @LINE: 2475 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(I) @LINE: 2405 +(I) @LINE: 2481 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Override -(S) @LINE: 2432 +(S) @LINE: 2508 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Override -(I) @LINE: 2438 +(I) @LINE: 2514 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Reset -(S) @LINE: 2464 +(S) @LINE: 2540 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Reset -(I) @LINE: 2472 +(I) @LINE: 2548 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(S) @LINE: 2484 +(S) @LINE: 2560 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(I) @LINE: 2490 +(I) @LINE: 2566 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(S) @LINE: 2512 +(S) @LINE: 2588 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(I) @LINE: 2518 +(I) @LINE: 2594 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(S) @LINE: 2539 +(S) @LINE: 2615 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(I) @LINE: 2547 +(I) @LINE: 2623 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2559 +(S) @LINE: 2635 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2565 +(I) @LINE: 2641 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2587 +(S) @LINE: 2663 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2593 +(I) @LINE: 2669 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2614 +(S) @LINE: 2690 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2622 +(I) @LINE: 2698 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2634 +(S) @LINE: 2710 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2640 +(I) @LINE: 2716 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Override -(S) @LINE: 2662 +(S) @LINE: 2738 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Override -(I) @LINE: 2668 +(I) @LINE: 2744 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(S) @LINE: 2689 +(S) @LINE: 2765 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(I) @LINE: 2697 +(I) @LINE: 2773 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2709 +(S) @LINE: 2785 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2715 +(I) @LINE: 2791 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(S) @LINE: 2737 +(S) @LINE: 2813 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(I) @LINE: 2743 +(I) @LINE: 2819 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(S) @LINE: 2763 +(S) @LINE: 2839 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(I) @LINE: 2771 +(I) @LINE: 2847 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(S) @LINE: 2783 +(S) @LINE: 2859 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(I) @LINE: 2789 +(I) @LINE: 2865 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Override -(S) @LINE: 2816 +(S) @LINE: 2892 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Override -(I) @LINE: 2822 +(I) @LINE: 2898 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Reset -(S) @LINE: 2848 +(S) @LINE: 2924 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Reset -(I) @LINE: 2856 +(I) @LINE: 2932 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2868 +(S) @LINE: 2944 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2874 +(I) @LINE: 2950 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(S) @LINE: 2895 +(S) @LINE: 2971 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(I) @LINE: 2901 +(I) @LINE: 2977 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(S) @LINE: 2921 +(S) @LINE: 2997 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(I) @LINE: 2929 +(I) @LINE: 3005 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2941 +(S) @LINE: 3017 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2947 +(I) @LINE: 3023 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(S) @LINE: 2973 +(S) @LINE: 3049 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(I) @LINE: 2979 +(I) @LINE: 3055 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(S) @LINE: 3004 +(S) @LINE: 3080 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(I) @LINE: 3012 +(I) @LINE: 3088 >>> Processing Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 3025 +(S) @LINE: 3101 >>> Processed Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 3031 +(I) @LINE: 3107 >>> Processing Test Case: handleTestValveStateOverrideRequest_Override -(S) @LINE: 3059 +(S) @LINE: 3135 >>> Processed Test Case: handleTestValveStateOverrideRequest_Override -(I) @LINE: 3065 +(I) @LINE: 3141 >>> Processing Test Case: handleTestValveStateOverrideRequest_Reset -(S) @LINE: 3092 +(S) @LINE: 3168 >>> Processed Test Case: handleTestValveStateOverrideRequest_Reset -(I) @LINE: 3100 +(I) @LINE: 3176 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 3113 +(S) @LINE: 3189 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 3119 +(I) @LINE: 3195 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(S) @LINE: 3142 +(S) @LINE: 3218 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(I) @LINE: 3148 +(I) @LINE: 3224 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(S) @LINE: 3170 +(S) @LINE: 3246 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(I) @LINE: 3178 +(I) @LINE: 3254 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 3189 +(S) @LINE: 3265 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 3195 +(I) @LINE: 3271 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 3214 +(S) @LINE: 3290 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 3220 +(I) @LINE: 3296 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 3238 +(S) @LINE: 3314 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 3246 +(I) @LINE: 3322 >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 3255 +(S) @LINE: 3331 >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 3261 +(I) @LINE: 3337 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 3270 +(S) @LINE: 3346 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 3276 +(I) @LINE: 3352 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 3285 +(S) @LINE: 3361 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 3291 +(I) @LINE: 3367 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 3300 +(S) @LINE: 3376 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 3306 +(I) @LINE: 3382 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 3316 +(S) @LINE: 3392 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 3324 +(I) @LINE: 3400 >>> Processing Test Case: NominalPath -(S) @LINE: 3327 +(S) @LINE: 3403 >>> Processed Test Case: NominalPath -(I) @LINE: 3335 +(I) @LINE: 3411 >>> Processing Test Case: sendACKMsg_NominalPath -(S) @LINE: 3353 +(S) @LINE: 3429 >>> Processed Test Case: sendACKMsg_NominalPath -(I) @LINE: 3361 +(I) @LINE: 3437 >>> Processing Test Case: sendAckResponseMsg_NominalPath -(S) @LINE: 3381 +(S) @LINE: 3457 >>> Processed Test Case: sendAckResponseMsg_NominalPath -(I) @LINE: 3389 +(I) @LINE: 3465 >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 3407 +(S) @LINE: 3483 >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 3415 +(I) @LINE: 3491 >>> Processing Test Case: serializeMessage_ACK -(S) @LINE: 3453 +(S) @LINE: 3529 >>> Processed Test Case: serializeMessage_ACK -(I) @LINE: 3459 +(I) @LINE: 3535 >>> Processing Test Case: serializeMessage_ACKListFull -(S) @LINE: 3475 +(S) @LINE: 3551 >>> Processed Test Case: serializeMessage_ACKListFull -(I) @LINE: 3481 +(I) @LINE: 3557 >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 3522 +(S) @LINE: 3598 >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 3528 +(I) @LINE: 3604 >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 3558 +(S) @LINE: 3634 >>> Processed Test Case: serializeMessage_NominalPath -(I) @LINE: 3564 +(I) @LINE: 3640 >>> Processing Test Case: serializeMessage_SeqWrap -(S) @LINE: 3594 +(S) @LINE: 3670 >>> Processed Test Case: serializeMessage_SeqWrap -(S) @LINE: 3594 +(S) @LINE: 3670 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-09 12:55:32 +TIME: 2020-11-17 10:28:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27064,7 +27189,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-11-09 12:55:33 +TIME: 2020-11-17 10:28:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27086,7 +27211,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-11-09 12:55:34 +TIME: 2020-11-17 10:28:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28033,28 +28158,43 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all SystemCommMessages.handleSetConcentratePumpTargetSpeed test cases - Running: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength + Running all SystemCommMessages.handleConcentratePumpMeasuredSpeedlOverride test cases + Running: handleConcentratePumpMeasuredSpeedlOverride_InvalidPayloadLen Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSetConcentratePumpTargetSpeed_Override + Running: handleConcentratePumpMeasuredSpeedlOverride_Override Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSetConcentratePumpTargetSpeed_Reset + Running: handleConcentratePumpMeasuredSpeedlOverride_Reset Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleSetConcentratePumpTargetSpeed test cases + Running: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSetConcentratePumpTargetSpeed_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleConcentratePumpStateChangeRequest test cases Running: handleConcentratePumpStateChangeRequest_InvalidPayloadLen Preparing Test Data @@ -28109,7 +28249,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:55:37 +TIME: 2020-11-17 10:29:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/CCAST_.CFG @@ -28144,7 +28284,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:55:40 +TIME: 2020-11-17 10:29:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28176,7 +28316,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:55:41 +TIME: 2020-11-17 10:29:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28191,7 +28331,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:55:41 +TIME: 2020-11-17 10:29:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28211,7 +28351,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:55:42 +TIME: 2020-11-17 10: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/1381620037/CCAST_.CFG @@ -28246,7 +28386,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:55:45 +TIME: 2020-11-17 10:29:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28278,7 +28418,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:55:46 +TIME: 2020-11-17 10:29:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28293,7 +28433,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:55:46 +TIME: 2020-11-17 10:29:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28313,7 +28453,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:55:47 +TIME: 2020-11-17 10:29:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/CCAST_.CFG @@ -28348,7 +28488,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:55:50 +TIME: 2020-11-17 10:29:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28380,7 +28520,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:55:51 +TIME: 2020-11-17 10:29:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28395,7 +28535,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:55:52 +TIME: 2020-11-17 10:29:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28415,7 +28555,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:55:53 +TIME: 2020-11-17 10:29:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG @@ -28450,7 +28590,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:55:55 +TIME: 2020-11-17 10:29:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28482,7 +28622,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:55:56 +TIME: 2020-11-17 10:29:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28497,7 +28637,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:55:57 +TIME: 2020-11-17 10:29:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28517,7 +28657,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-11-09 12:55:57 +TIME: 2020-11-17 10:29: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/3934269912/CCAST_.CFG @@ -28552,7 +28692,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-11-09 12:56:00 +TIME: 2020-11-17 10:29:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28815,7 +28955,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-09 12:56:02 +TIME: 2020-11-17 10:29:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28830,7 +28970,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-09 12:56:02 +TIME: 2020-11-17 10:29:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29256,7 +29396,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:56:04 +TIME: 2020-11-17 10:29: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/4061569705/CCAST_.CFG @@ -29291,7 +29431,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:56:06 +TIME: 2020-11-17 10:29:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29364,7 +29504,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:56:07 +TIME: 2020-11-17 10:29:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29379,7 +29519,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:56:08 +TIME: 2020-11-17 10:29:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29474,7 +29614,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:56:09 +TIME: 2020-11-17 10:29: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/3897033276/CCAST_.CFG @@ -29509,7 +29649,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:56:11 +TIME: 2020-11-17 10:29:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29532,9 +29672,8 @@ Processing script line 150 Processing script line 200 Processing script line 250 - Processing script line 300 Processing script line 350 - Processing script line 400 + Processing script line 450 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -29578,98 +29717,102 @@ (S) @LINE: 171 >>> Processed Test Case: getCriticalData_OutOfRange_Low (I) @LINE: 179 + >>> Processing Test Case: hexStrToDec_NominalPath +(S) @LINE: 190 + >>> Processed Test Case: hexStrToDec_NominalPath +(I) @LINE: 198 >>> Processing Test Case: incTimeWindowedCount_InvalidCount -(S) @LINE: 187 +(S) @LINE: 206 >>> Processed Test Case: incTimeWindowedCount_InvalidCount -(I) @LINE: 193 +(I) @LINE: 212 >>> Processing Test Case: incTimeWindowedCount_NotInitialized -(S) @LINE: 202 +(S) @LINE: 221 >>> Processed Test Case: incTimeWindowedCount_NotInitialized -(I) @LINE: 208 +(I) @LINE: 227 >>> Processing Test Case: incTimeWindowedCount_NotTooManyInstances -(S) @LINE: 225 +(S) @LINE: 244 >>> Processed Test Case: incTimeWindowedCount_NotTooManyInstances -(I) @LINE: 231 +(I) @LINE: 250 >>> Processing Test Case: incTimeWindowedCount_NotTooManyInstances2 -(S) @LINE: 250 +(S) @LINE: 269 >>> Processed Test Case: incTimeWindowedCount_NotTooManyInstances2 -(I) @LINE: 256 +(I) @LINE: 275 >>> Processing Test Case: incTimeWindowedCount_TooManyInstances -(S) @LINE: 275 +(S) @LINE: 294 >>> Processed Test Case: incTimeWindowedCount_TooManyInstances -(I) @LINE: 283 +(I) @LINE: 302 >>> Processing Test Case: initTimeWindowedCount_InvalidCount -(S) @LINE: 292 +(S) @LINE: 311 >>> Processed Test Case: initTimeWindowedCount_InvalidCount -(I) @LINE: 298 +(I) @LINE: 317 >>> Processing Test Case: initTimeWindowedCount_InvalidMaxCount -(S) @LINE: 309 +(S) @LINE: 328 >>> Processed Test Case: initTimeWindowedCount_InvalidMaxCount -(I) @LINE: 315 +(I) @LINE: 334 >>> Processing Test Case: initTimeWindowedCount_NominalPath -(S) @LINE: 339 +(S) @LINE: 358 >>> Processed Test Case: initTimeWindowedCount_NominalPath -(I) @LINE: 347 +(I) @LINE: 366 >>> Processing Test Case: isCriticalDataInRange_F32_InRange -(S) @LINE: 354 +(S) @LINE: 373 >>> Processed Test Case: isCriticalDataInRange_F32_InRange -(I) @LINE: 360 +(I) @LINE: 379 >>> Processing Test Case: isCriticalDataInRange_F32_OutOfRange_High -(S) @LINE: 367 +(S) @LINE: 386 >>> Processed Test Case: isCriticalDataInRange_F32_OutOfRange_High -(I) @LINE: 373 +(I) @LINE: 392 >>> Processing Test Case: isCriticalDataInRange_F32_OutOfRange_Low -(S) @LINE: 380 +(S) @LINE: 399 >>> Processed Test Case: isCriticalDataInRange_F32_OutOfRange_Low -(I) @LINE: 386 +(I) @LINE: 405 >>> Processing Test Case: isCriticalDataInRange_S32_InRange -(S) @LINE: 393 +(S) @LINE: 412 >>> Processed Test Case: isCriticalDataInRange_S32_InRange -(I) @LINE: 399 +(I) @LINE: 418 >>> Processing Test Case: isCriticalDataInRange_S32_OutOfRange_High -(S) @LINE: 406 +(S) @LINE: 425 >>> Processed Test Case: isCriticalDataInRange_S32_OutOfRange_High -(I) @LINE: 412 +(I) @LINE: 431 >>> Processing Test Case: isCriticalDataInRange_S32_OutOfRange_Low -(S) @LINE: 419 +(S) @LINE: 438 >>> Processed Test Case: isCriticalDataInRange_S32_OutOfRange_Low -(I) @LINE: 425 +(I) @LINE: 444 >>> Processing Test Case: isCriticalDataInRange_U32_InRange -(S) @LINE: 432 +(S) @LINE: 451 >>> Processed Test Case: isCriticalDataInRange_U32_InRange -(I) @LINE: 438 +(I) @LINE: 457 >>> Processing Test Case: isCriticalDataInRange_U32_OutOfRange_High -(S) @LINE: 445 +(S) @LINE: 464 >>> Processed Test Case: isCriticalDataInRange_U32_OutOfRange_High -(I) @LINE: 451 +(I) @LINE: 470 >>> Processing Test Case: isCriticalDataInRange_U32_OutOfRange_Low -(S) @LINE: 458 +(S) @LINE: 477 >>> Processed Test Case: isCriticalDataInRange_U32_OutOfRange_Low -(I) @LINE: 466 +(I) @LINE: 485 >>> Processing Test Case: resetCriticalData_NominalPath -(S) @LINE: 476 +(S) @LINE: 495 >>> Processed Test Case: resetCriticalData_NominalPath -(I) @LINE: 484 +(I) @LINE: 503 >>> Processing Test Case: setCriticalData_InvalidDataType -(S) @LINE: 495 +(S) @LINE: 514 >>> Processed Test Case: setCriticalData_InvalidDataType -(I) @LINE: 501 +(I) @LINE: 520 >>> Processing Test Case: setCriticalData_NominalPath -(S) @LINE: 513 +(S) @LINE: 532 >>> Processed Test Case: setCriticalData_NominalPath -(I) @LINE: 519 +(I) @LINE: 538 >>> Processing Test Case: setCriticalData_OutOfRange_High -(S) @LINE: 528 +(S) @LINE: 547 >>> Processed Test Case: setCriticalData_OutOfRange_High -(I) @LINE: 534 +(I) @LINE: 553 >>> Processing Test Case: setCriticalData_OutOfRange_Low -(S) @LINE: 543 +(S) @LINE: 562 >>> Processed Test Case: setCriticalData_OutOfRange_Low -(S) @LINE: 543 +(S) @LINE: 562 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:56:13 +TIME: 2020-11-17 10:29:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29684,7 +29827,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:56:13 +TIME: 2020-11-17 10:29:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29918,10 +30061,18 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Utilities.hexStrToDec test cases + Running: hexStrToDec_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-09 12:56:15 +TIME: 2020-11-17 10:29: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/754038457/CCAST_.CFG @@ -29956,7 +30107,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-11-09 12:56:17 +TIME: 2020-11-17 10:29:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30401,7 +30552,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-11-09 12:56:19 +TIME: 2020-11-17 10:29:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30416,7 +30567,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-11-09 12:56:20 +TIME: 2020-11-17 10:29:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31134,7 +31285,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-11-09 12:56:22 +TIME: 2020-11-17 10:29:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG @@ -31169,7 +31320,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-11-09 12:56:24 +TIME: 2020-11-17 10:29:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31312,7 +31463,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-11-09 12:56:26 +TIME: 2020-11-17 10:30:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31327,7 +31478,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-11-09 12:56:26 +TIME: 2020-11-17 10:30:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31557,7 +31708,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:56:31 +TIME: 2020-11-17 10:30:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31569,7 +31720,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:56:32 +TIME: 2020-11-17 10:30:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31581,7 +31732,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:56:32 +TIME: 2020-11-17 10:30:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31593,7 +31744,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:56:33 +TIME: 2020-11-17 10:30:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31605,7 +31756,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-09 12:56:34 +TIME: 2020-11-17 10:30:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31617,7 +31768,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:56:35 +TIME: 2020-11-17 10:30:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31629,7 +31780,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:56:36 +TIME: 2020-11-17 10:30:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31641,7 +31792,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-09 12:56:37 +TIME: 2020-11-17 10:30:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31653,7 +31804,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 FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:56:37 +TIME: 2020-11-17 10:30:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31665,7 +31816,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-09 12:56:38 +TIME: 2020-11-17 10:30:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31677,7 +31828,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-11-09 12:56:39 +TIME: 2020-11-17 10:30:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31689,7 +31840,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-11-09 12:56:40 +TIME: 2020-11-17 10:30:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31701,7 +31852,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:56:41 +TIME: 2020-11-17 10:30:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31713,7 +31864,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:56:42 +TIME: 2020-11-17 10:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31725,7 +31876,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:56:43 +TIME: 2020-11-17 10:30:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31737,7 +31888,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-09 12:56:43 +TIME: 2020-11-17 10:30:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31749,7 +31900,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-11-09 12:56:44 +TIME: 2020-11-17 10:30:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31761,7 +31912,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:56:45 +TIME: 2020-11-17 10:30:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31773,7 +31924,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-09 12:56:46 +TIME: 2020-11-17 10:30:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31785,7 +31936,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_FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:56:47 +TIME: 2020-11-17 10:30:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31797,7 +31948,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-09 12:56:48 +TIME: 2020-11-17 10:30:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31809,7 +31960,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:56:49 +TIME: 2020-11-17 10:30:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31821,7 +31972,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:56:50 +TIME: 2020-11-17 10:30:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31833,7 +31984,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-09 12:56:50 +TIME: 2020-11-17 10:30:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31845,7 +31996,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:56:51 +TIME: 2020-11-17 10:30:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31857,7 +32008,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-09 12:56:52 +TIME: 2020-11-17 10:30:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31869,7 +32020,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:56:53 +TIME: 2020-11-17 10:30:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31881,7 +32032,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-09 12:56:54 +TIME: 2020-11-17 10:30:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31893,7 +32044,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:56:55 +TIME: 2020-11-17 10:30:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31905,7 +32056,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:56:55 +TIME: 2020-11-17 10:30:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31917,7 +32068,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:56:56 +TIME: 2020-11-17 10:30:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31929,7 +32080,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-09 12:56:57 +TIME: 2020-11-17 10:30:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31941,7 +32092,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:56:58 +TIME: 2020-11-17 10:30:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31953,7 +32104,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:56:59 +TIME: 2020-11-17 10:30:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31965,7 +32116,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-09 12:56:59 +TIME: 2020-11-17 10:30:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31977,7 +32128,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-11-09 12:57:00 +TIME: 2020-11-17 10:30:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31989,7 +32140,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-11-09 12:57:01 +TIME: 2020-11-17 10:30:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32001,7 +32152,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:57:02 +TIME: 2020-11-17 10:30:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32013,7 +32164,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:57:03 +TIME: 2020-11-17 10:30:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32025,7 +32176,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-09 12:57:04 +TIME: 2020-11-17 10:30:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32037,7 +32188,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-11-09 12:57:04 +TIME: 2020-11-17 10:30:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32049,7 +32200,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-11-09 12:57:05 +TIME: 2020-11-17 10:30:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32061,7 +32212,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:57:06 +TIME: 2020-11-17 10:30:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32073,7 +32224,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:57:07 +TIME: 2020-11-17 10:30:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32085,7 +32236,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:57:08 +TIME: 2020-11-17 10:30:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32097,7 +32248,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-09 12:57:09 +TIME: 2020-11-17 10:30:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32109,7 +32260,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:57:10 +TIME: 2020-11-17 10:30:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32121,7 +32272,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:57:11 +TIME: 2020-11-17 10:30:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32133,7 +32284,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:57:11 +TIME: 2020-11-17 10:30:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32145,7 +32296,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:57:12 +TIME: 2020-11-17 10:30:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32157,7 +32308,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-09 12:57:13 +TIME: 2020-11-17 10:30:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32169,7 +32320,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_TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:57:14 +TIME: 2020-11-17 10:30:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32181,7 +32332,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:57:15 +TIME: 2020-11-17 10:31:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32193,7 +32344,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-09 12:57:15 +TIME: 2020-11-17 10:31:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32205,7 +32356,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:57:16 +TIME: 2020-11-17 10:31:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32217,7 +32368,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-09 12:57:17 +TIME: 2020-11-17 10:31:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32229,7 +32380,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:57:18 +TIME: 2020-11-17 10:31:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32241,7 +32392,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-09 12:57:19 +TIME: 2020-11-17 10:31:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32253,7 +32404,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:57:20 +TIME: 2020-11-17 10:31:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32265,7 +32416,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-09 12:57:20 +TIME: 2020-11-17 10:31:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32277,7 +32428,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:57:21 +TIME: 2020-11-17 10:31:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32289,7 +32440,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:57:22 +TIME: 2020-11-17 10:31:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32301,7 +32452,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:57:23 +TIME: 2020-11-17 10:31:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32313,7 +32464,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-09 12:57:24 +TIME: 2020-11-17 10:31:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32325,7 +32476,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:57:24 +TIME: 2020-11-17 10:31:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32337,7 +32488,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:57:25 +TIME: 2020-11-17 10:31:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32349,7 +32500,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-09 12:57:26 +TIME: 2020-11-17 10:31:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32361,7 +32512,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-11-09 12:57:27 +TIME: 2020-11-17 10:31:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32373,7 +32524,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-09 12:57:28 +TIME: 2020-11-17 10:31:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32385,7 +32536,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-09 12:57:29 +TIME: 2020-11-17 10:31:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32397,7 +32548,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:57:29 +TIME: 2020-11-17 10:31:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32409,7 +32560,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:57:30 +TIME: 2020-11-17 10:31:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32421,7 +32572,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-09 12:57:31 +TIME: 2020-11-17 10:31:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32433,7 +32584,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-11-09 12:57:32 +TIME: 2020-11-17 10:31:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32445,7 +32596,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-11-09 12:57:33 +TIME: 2020-11-17 10:31:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32457,7 +32608,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:57:34 +TIME: 2020-11-17 10:31:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32469,7 +32620,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:57:34 +TIME: 2020-11-17 10:31:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32481,7 +32632,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-09 12:57:35 +TIME: 2020-11-17 10:31:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32493,7 +32644,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-11-09 12:57:36 +TIME: 2020-11-17 10:31:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32505,7 +32656,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:57:37 +TIME: 2020-11-17 10:31:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32517,7 +32668,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:57:38 +TIME: 2020-11-17 10:31:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32529,7 +32680,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:57:39 +TIME: 2020-11-17 10:31:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32541,7 +32692,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:57:40 +TIME: 2020-11-17 10:31:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32553,7 +32704,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-09 12:57:40 +TIME: 2020-11-17 10:31:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32565,7 +32716,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 TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:57:41 +TIME: 2020-11-17 10:31:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32577,7 +32728,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:57:42 +TIME: 2020-11-17 10:31:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32589,7 +32740,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-09 12:57:43 +TIME: 2020-11-17 10:31:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32601,7 +32752,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-11-09 12:57:44 +TIME: 2020-11-17 10:31:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32620,7 +32771,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-09 12:57:45 +TIME: 2020-11-17 10:31:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32632,7 +32783,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-09 12:57:46 +TIME: 2020-11-17 10:31:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32644,7 +32795,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-09 12:57:47 +TIME: 2020-11-17 10:31:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32656,7 +32807,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-09 12:57:48 +TIME: 2020-11-17 10:31:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32668,7 +32819,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-09 12:57:49 +TIME: 2020-11-17 10:31:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32680,7 +32831,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-09 12:57:50 +TIME: 2020-11-17 10:31:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32692,7 +32843,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-09 12:57:51 +TIME: 2020-11-17 10:31:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32704,7 +32855,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-09 12:57:51 +TIME: 2020-11-17 10:31:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32716,7 +32867,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 FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-09 12:57:52 +TIME: 2020-11-17 10:31:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32728,7 +32879,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-09 12:57:53 +TIME: 2020-11-17 10:31:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32740,7 +32891,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-11-09 12:57:54 +TIME: 2020-11-17 10:31:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32752,7 +32903,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-11-09 12:57:55 +TIME: 2020-11-17 10:31:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32764,7 +32915,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-09 12:57:56 +TIME: 2020-11-17 10:31:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32776,7 +32927,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-09 12:57:57 +TIME: 2020-11-17 10:31:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32788,7 +32939,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-09 12:57:58 +TIME: 2020-11-17 10:31:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32800,7 +32951,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-09 12:57:59 +TIME: 2020-11-17 10:31:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32812,7 +32963,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-11-09 12:58:00 +TIME: 2020-11-17 10:31:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32824,7 +32975,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-09 12:58:01 +TIME: 2020-11-17 10:31:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32836,7 +32987,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-09 12:58:01 +TIME: 2020-11-17 10:31:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32848,7 +32999,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_FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-09 12:58:02 +TIME: 2020-11-17 10:31:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32860,7 +33011,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-09 12:58:03 +TIME: 2020-11-17 10:32:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32872,7 +33023,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-09 12:58:04 +TIME: 2020-11-17 10:32:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32884,7 +33035,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-09 12:58:05 +TIME: 2020-11-17 10:32:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32896,7 +33047,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-09 12:58:06 +TIME: 2020-11-17 10:32:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32908,7 +33059,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-09 12:58:07 +TIME: 2020-11-17 10:32:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32920,7 +33071,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-09 12:58:07 +TIME: 2020-11-17 10:32:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32932,7 +33083,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-09 12:58:08 +TIME: 2020-11-17 10:32:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32944,7 +33095,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-09 12:58:09 +TIME: 2020-11-17 10:32:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32956,7 +33107,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-09 12:58:10 +TIME: 2020-11-17 10:32:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32968,7 +33119,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-09 12:58:11 +TIME: 2020-11-17 10:32:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32980,7 +33131,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-09 12:58:11 +TIME: 2020-11-17 10:32:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32992,7 +33143,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-09 12:58:12 +TIME: 2020-11-17 10:32:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33004,7 +33155,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-09 12:58:13 +TIME: 2020-11-17 10:32:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33016,7 +33167,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-09 12:58:14 +TIME: 2020-11-17 10:32:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33028,7 +33179,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-09 12:58:15 +TIME: 2020-11-17 10:32:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33040,7 +33191,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-11-09 12:58:15 +TIME: 2020-11-17 10:32:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33052,7 +33203,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-11-09 12:58:16 +TIME: 2020-11-17 10:32:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33064,7 +33215,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-09 12:58:17 +TIME: 2020-11-17 10:32:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33076,7 +33227,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-09 12:58:18 +TIME: 2020-11-17 10:32:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33088,7 +33239,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-09 12:58:19 +TIME: 2020-11-17 10:32:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33100,7 +33251,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-11-09 12:58:20 +TIME: 2020-11-17 10:32:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33112,7 +33263,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-11-09 12:58:21 +TIME: 2020-11-17 10:32:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33124,7 +33275,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-09 12:58:22 +TIME: 2020-11-17 10:32:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33136,7 +33287,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-09 12:58:22 +TIME: 2020-11-17 10:32:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33148,7 +33299,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-09 12:58:23 +TIME: 2020-11-17 10:32:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33160,7 +33311,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-09 12:58:24 +TIME: 2020-11-17 10:32:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33172,7 +33323,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-09 12:58:25 +TIME: 2020-11-17 10:32:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33184,7 +33335,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-09 12:58:26 +TIME: 2020-11-17 10:32:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33196,7 +33347,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-09 12:58:27 +TIME: 2020-11-17 10:32:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33208,7 +33359,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-09 12:58:28 +TIME: 2020-11-17 10:32:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33220,7 +33371,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-09 12:58:28 +TIME: 2020-11-17 10:32:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33232,7 +33383,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_TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-09 12:58:29 +TIME: 2020-11-17 10:32:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33244,7 +33395,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-09 12:58:30 +TIME: 2020-11-17 10:32:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33256,7 +33407,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-09 12:58:31 +TIME: 2020-11-17 10:32:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33268,7 +33419,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-09 12:58:32 +TIME: 2020-11-17 10:32:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33280,7 +33431,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-09 12:58:33 +TIME: 2020-11-17 10:32:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33292,7 +33443,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-09 12:58:34 +TIME: 2020-11-17 10:32:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33304,7 +33455,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-09 12:58:34 +TIME: 2020-11-17 10:32:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33316,7 +33467,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-09 12:58:35 +TIME: 2020-11-17 10:32:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33328,7 +33479,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-09 12:58:36 +TIME: 2020-11-17 10:32:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33340,7 +33491,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-09 12:58:37 +TIME: 2020-11-17 10:32:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33352,7 +33503,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-09 12:58:38 +TIME: 2020-11-17 10:32:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33364,7 +33515,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-09 12:58:38 +TIME: 2020-11-17 10:32:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33376,7 +33527,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-09 12:58:39 +TIME: 2020-11-17 10:32:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33388,7 +33539,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-09 12:58:40 +TIME: 2020-11-17 10:32:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33400,7 +33551,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-09 12:58:41 +TIME: 2020-11-17 10:32:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33412,7 +33563,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-09 12:58:42 +TIME: 2020-11-17 10:32:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33424,7 +33575,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-11-09 12:58:42 +TIME: 2020-11-17 10:32:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33436,7 +33587,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-09 12:58:43 +TIME: 2020-11-17 10:32:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33448,7 +33599,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-09 12:58:45 +TIME: 2020-11-17 10:32:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33460,7 +33611,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-09 12:58:45 +TIME: 2020-11-17 10:32:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33472,7 +33623,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-09 12:58:46 +TIME: 2020-11-17 10:32:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33484,7 +33635,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-09 12:58:47 +TIME: 2020-11-17 10:32:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33496,7 +33647,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-11-09 12:58:48 +TIME: 2020-11-17 10:32:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33508,7 +33659,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-11-09 12:58:49 +TIME: 2020-11-17 10:32:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33520,7 +33671,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-09 12:58:50 +TIME: 2020-11-17 10:32:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33532,7 +33683,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-09 12:58:51 +TIME: 2020-11-17 10:33:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33544,7 +33695,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-09 12:58:52 +TIME: 2020-11-17 10:33:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33556,7 +33707,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-11-09 12:58:53 +TIME: 2020-11-17 10:33:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33568,7 +33719,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-09 12:58:55 +TIME: 2020-11-17 10:33:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33580,7 +33731,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-09 12:58:56 +TIME: 2020-11-17 10:33:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33592,7 +33743,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-09 12:58:56 +TIME: 2020-11-17 10:33:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33604,7 +33755,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-09 12:58:57 +TIME: 2020-11-17 10:33:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33616,7 +33767,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-09 12:58:58 +TIME: 2020-11-17 10:33:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33628,7 +33779,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 TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-09 12:58:59 +TIME: 2020-11-17 10:33:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33640,7 +33791,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-09 12:59:00 +TIME: 2020-11-17 10:33:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33652,7 +33803,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-09 12:59:01 +TIME: 2020-11-17 10:33:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33664,7 +33815,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-11-09 12:59:02 +TIME: 2020-11-17 10:33:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) Index: results/cppcheckError.csv =================================================================== diff -u -r7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29 -r3461c140ba07e74863dee1d4c51d0119076fecf8 --- results/cppcheckError.csv (.../cppcheckError.csv) (revision 7e2931d9a468ca3b6e1f2bb88ef0910960dfdb29) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) @@ -5,12 +5,12 @@ dgfirmware/firmware/App/Controllers/ROPump.c,340,style,unusedVariable,Unused variable: newPWM dgfirmware/firmware/App/Controllers/TemperatureSensors.c,528,style,knownConditionTrueFalse,Condition 'fpgaError==0' is always true dgfirmware/firmware/App/Controllers/TemperatureSensors.c,525,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. -dgfirmware/firmware/App/Modes/ModeFill.c,153,style,redundantAssignment,Variable 'isInletWaterReady' is reassigned a value before the old one has been used. -dgfirmware/firmware/App/Modes/ModeFill.c,188,style,redundantAssignment,Variable 'isDialysateProductionGood' is reassigned a value before the old one has been used. -dgfirmware/firmware/App/Modes/ModeFill.c,220,style,redundantAssignment,Variable 'isDialysateConductivityBad' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Modes/ModeFill.c,163,style,redundantAssignment,Variable 'isInletWaterReady' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Modes/ModeFill.c,199,style,redundantAssignment,Variable 'isDialysateProductionGood' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Modes/ModeFill.c,231,style,redundantAssignment,Variable 'isDialysateConductivityBad' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Services/Interrupts.c,172,style,variableScope,The scope of the variable 'debugStr' can be reduced. dgfirmware/firmware/App/Services/PIControllers.c,76,style,variableScope,The scope of the variable 'controller' can be reduced. -dgfirmware/firmware/App/Services/Reservoirs.c,267,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Services/Reservoirs.c,269,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c,0,information,toomanyconfigs,Too many #ifdef configurations - cppcheck only checks 12 of 21 configurations. Use --force to check all configurations. dgfirmware/firmware/FWCommon/NVDataMgmt.c,1526,style,variableScope,The scope of the variable 'quotient' can be reduced. dgfirmware/firmware/FWCommon/NVDataMgmt.c,1527,style,variableScope,The scope of the variable 'modulus' can be reduced. @@ -19,7 +19,7 @@ dgfirmware/firmware/FWCommon/RTC.c,782,style,variableScope,The scope of the variable 'decimalHigh' can be reduced. dgfirmware/firmware/FWCommon/RTC.c,783,style,variableScope,The scope of the variable 'decimalLow' can be reduced. dgfirmware/firmware/FWCommon/RTC.c,706,style,unreadVariable,Variable 'controlReg2' is assigned a value that is never used. -dgfirmware/firmware/FWCommon/Utilities.c,212,style,variableScope,The scope of the variable 'timeInMS' can be reduced. +dgfirmware/firmware/FWCommon/Utilities.c,216,style,variableScope,The scope of the variable 'timeInMS' can be reduced. dgfirmware/firmware/FWCommon/irqDispatch_c.c,76,style,unusedFunction,The function 'C_irqDispatch' is never used. dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c,68,style,unusedFunction,The function 'Fapi_serviceWatchdogTimer' is never used. dgfirmware/firmware/App/Drivers/InternalADC.c,112,style,unusedFunction,The function 'adcNotification' is never used. @@ -35,7 +35,7 @@ dgfirmware/firmware/FWCommon/RTC.c,364,style,unusedFunction,The function 'execRTC' is never used. dgfirmware/firmware/FWCommon/Accel.c,665,style,unusedFunction,The function 'getAccelCalibration' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,724,style,unusedFunction,The function 'getBootloaderFlag' is never used. -dgfirmware/firmware/FWCommon/Utilities.c,251,style,unusedFunction,The function 'getCriticalData' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,255,style,unusedFunction,The function 'getCriticalData' is never used. dgfirmware/firmware/App/Modes/ModeChemicalDisinfect.c,94,style,unusedFunction,The function 'getCurrentChemicalDisinfectState' is never used. dgfirmware/firmware/App/Modes/ModeDrain.c,139,style,unusedFunction,The function 'getCurrentDrainState' is never used. dgfirmware/firmware/App/Modes/ModeFault.c,88,style,unusedFunction,The function 'getCurrentFaultState' is never used. @@ -44,7 +44,7 @@ dgfirmware/firmware/App/Modes/ModeInitPOST.c,225,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. dgfirmware/firmware/App/Modes/ModeService.c,88,style,unusedFunction,The function 'getCurrentServiceState' is never used. dgfirmware/firmware/App/Modes/ModeSolo.c,118,style,unusedFunction,The function 'getCurrentSoloState' is never used. -dgfirmware/firmware/App/Modes/ModeStandby.c,232,style,unusedFunction,The function 'getCurrentStandbyState' is never used. +dgfirmware/firmware/App/Modes/ModeStandby.c,234,style,unusedFunction,The function 'getCurrentStandbyState' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,595,style,unusedFunction,The function 'getDisinfectionDate' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,332,style,unusedFunction,The function 'getMfgData' is never used. dgfirmware/firmware/App/Services/PIControllers.c,188,style,unusedFunction,The function 'getPIControllerSignals' is never used. @@ -59,21 +59,21 @@ dgfirmware/firmware/App/Drivers/SafetyShutdown.c,71,style,unusedFunction,The function 'isSafetyShutdownActivated' is never used. dgfirmware/firmware/App/Services/Interrupts.c,91,style,unusedFunction,The function 'phantomInterrupt' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,471,style,unusedFunction,The function 'readLogData' is never used. -dgfirmware/firmware/FWCommon/Utilities.c,366,style,unusedFunction,The function 'resetCriticalData' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,370,style,unusedFunction,The function 'resetCriticalData' is never used. dgfirmware/firmware/App/Services/Interrupts.c,113,style,unusedFunction,The function 'rtiNotification' is never used. dgfirmware/firmware/App/Services/Interrupts.c,242,style,unusedFunction,The function 'sciNotification' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,703,style,unusedFunction,The function 'setBootloaderFlag' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,122,style,unusedFunction,The function 'setCPLDLampBlue' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,102,style,unusedFunction,The function 'setCPLDLampGreen' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,142,style,unusedFunction,The function 'setCPLDLampRed' is never used. -dgfirmware/firmware/FWCommon/Utilities.c,326,style,unusedFunction,The function 'setCriticalData' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,330,style,unusedFunction,The function 'setCriticalData' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,570,style,unusedFunction,The function 'setDisinfectionDate' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,315,style,unusedFunction,The function 'setMfgData' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,400,style,unusedFunction,The function 'setServiceDate' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,494,style,unusedFunction,The function 'setTreatmentTime' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,532,style,unusedFunction,The function 'setWaterConsumption' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,240,style,unusedFunction,The function 'stopDrainCmd' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,190,style,unusedFunction,The function 'stopFillCmd' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,242,style,unusedFunction,The function 'stopDrainCmd' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,192,style,unusedFunction,The function 'stopFillCmd' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,476,style,unusedFunction,The function 'testResetDGActiveReservoirOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,566,style,unusedFunction,The function 'testResetReservoirDrainVolumeMlOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,521,style,unusedFunction,The function 'testResetReservoirFillVolumeMlOverride' is never used.