Index: firmware/App/Controllers/DrainPump.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -15,9 +15,7 @@ * ***************************************************************************/ -#ifndef _VECTORCAST_ - #include -#endif +#include #include "etpwm.h" #include "mibspi.h" @@ -32,6 +30,9 @@ #include "Timers.h" #include "Valves.h" #include "DrainPump.h" +#ifdef EMC_TEST_BUILD +#include "Heaters.h" +#endif /** * @addtogroup DrainPump @@ -120,7 +121,7 @@ * @details * Inputs : none * Outputs : targetDrainPumpPressure - * @param rpm : new target drain pump speed (in RPM). + * @param rpm new target drain pump speed (in RPM) * @return TRUE if new target speed is set, FALSE if not *************************************************************************/ BOOL setDrainPumpTargetSpeed( U32 rpm ) @@ -130,7 +131,11 @@ if ( ( 0 == rpm ) || ( ( rpm >= MIN_DRAIN_PUMP_RPM_TARGET ) && ( rpm <= MAX_DRAIN_PUMP_RPM_TARGET ) ) ) { - drainPumpDAC = (U32)((F32)rpm * DRP_SPEED_RPM_TO_ADC_FACTOR + FLOAT_TO_INT_ROUNDUP_OFFSET); +#ifdef EMC_TEST_BUILD + drainPumpDAC = (U32)((F32)2500 * DRP_SPEED_RPM_TO_ADC_FACTOR + FLOAT_TO_INT_ROUNDUP_OFFSET); +#else + drainPumpDAC = (U32)((F32)rpm * DRP_SPEED_RPM_TO_ADC_FACTOR + FLOAT_TO_INT_ROUNDUP_OFFSET); +#endif targetDrainPumpSpeed.data = rpm; drainPumpControlMode = PUMP_CONTROL_MODE_OPEN_LOOP; result = TRUE; @@ -224,6 +229,10 @@ setValveState( VRC, VALVE_STATE_DRAIN_C_TO_NO ); setValveState( VPO, VALVE_STATE_NOFILL_C_TO_NO ); setDrainPumpTargetSpeed( 1000 ); +#ifdef EMC_TEST_BUILD + setTrimmerHeaterTargetTemperature( 50.0 ); + startTrimmerHeater(); +#endif } #endif #endif @@ -264,7 +273,9 @@ { if ( drainPumpControlModeSet == PUMP_CONTROL_MODE_CLOSED_LOOP ) { +#ifndef EMC_TEST_BUILD // TODO - will drain pump have a closed loop? +#endif } drainControlTimerCounter = 0; } @@ -284,6 +295,9 @@ setValveState( VPI, VALVE_STATE_OPEN ); setValveState( VRC, VALVE_STATE_DRAIN_C_TO_NO ); setValveState( VPO, VALVE_STATE_FILL_C_TO_NC ); +#ifdef EMC_TEST_BUILD + stopTrimmerHeater(); +#endif result = DRAIN_PUMP_OFF_STATE; } #endif @@ -390,9 +404,7 @@ return result; } -/**@}*/ - /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ @@ -405,7 +417,7 @@ * @details * Inputs : none * Outputs : drainPumpDataPublishInterval - * @param value : override RO pump data publish interval with (in ms) + * @param value override RO pump data publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetDrainPumpDataPublishIntervalOverride( U32 value ) @@ -454,7 +466,7 @@ * @details * Inputs : none * Outputs : targetDrainPumpSpeed - * @param value : override target drain pump speed (in RPM) + * @param value override target drain pump speed (in RPM) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetTargetDrainPumpSpeedOverride( U32 value ) @@ -496,3 +508,5 @@ return result; } + +/**@}*/ Index: firmware/App/Controllers/Heaters.c =================================================================== diff -u -r8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision 8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be) +++ firmware/App/Controllers/Heaters.c (.../Heaters.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -15,6 +15,8 @@ * ***************************************************************************/ +#include + #include "etpwm.h" #include "AlarmMgmt.h" @@ -191,7 +193,7 @@ * @details * Inputs : none * Outputs : primaryHeaterTargetTemperature - * @param targetTemp + * @param targetTemp target temperature for the primary heater * @return none *************************************************************************/ void setPrimaryHeaterTargetTemperature ( F32 targetTemp ) @@ -206,7 +208,7 @@ * @details * Inputs : trimmerHeaterTargetTemperature * Outputs : none - * @param targetTemp : targetTemp + * @param targetTemp target temperature for the trimmer heater * @return none *************************************************************************/ void setTrimmerHeaterTargetTemperature ( F32 targetTemp ) @@ -222,7 +224,6 @@ * Inputs : mainPrimaryHeaterDutyCycle, primaryHeaterTargetTemperature, * hasStartPrimaryHeaterRequested * Outputs : hasStartPrimaryHeaterRequested - * @param none * @return status *************************************************************************/ BOOL startPrimaryHeater ( void ) @@ -249,7 +250,6 @@ * Inputs : trimmerHeaterDutyCycle, trimmerHeaterTargetTemperature, * trimmerHeaterTargetTemperature * Outputs : trimmerHeaterTargetTemperature - * @param none * @return status *************************************************************************/ BOOL startTrimmerHeater ( void ) @@ -274,7 +274,6 @@ * @details * Inputs : isPrimaryHeaterOn * Outputs : isPrimaryHeaterOn - * @param none * @return none *************************************************************************/ void stopPrimaryHeater ( void ) @@ -292,7 +291,6 @@ * @details * Inputs : isTrimmerHeaterOn * Outputs : isTrimmerHeaterOn - * @param none * @return none *************************************************************************/ void stopTrimmerHeater ( void ) @@ -330,7 +328,6 @@ * @details * Inputs : heatersSelfTestState * Outputs : none - * @param none * @return heatersSelfTestState *************************************************************************/ SELF_TEST_STATUS_T execHeatersSelfTest ( void ) @@ -369,7 +366,6 @@ * @details * Inputs : primaryHeatersExecState * Outputs : primaryHeatersExecState - * @param none * @return none *************************************************************************/ void execPrimaryHeaters ( void ) @@ -398,7 +394,6 @@ * @details * Inputs : trimmerHeaterExecState * Outputs : trimmerHeaterExecState - * @param none * @return none *************************************************************************/ void execTrimmerHeater ( void ) @@ -430,7 +425,6 @@ * @details * Inputs : heatersSelfTestResult, selfTestElapsedTime * Outputs : heatersSelfTestResult, selfTestElapsedTime - * @param none * @return state (HEATERS_SELF_TEST_STATES_T) *************************************************************************/ static HEATERS_SELF_TEST_STATES_T handleHeatersSelfTestStart ( void ) @@ -461,7 +455,6 @@ * @details * Inputs : heatersSelfTestResult, selfTestElapsedTime * Outputs : heatersSelfTestResult, selfTestElapsedTime - * @param none * @return state (HEATERS_SELF_TEST_STATES_T) *************************************************************************/ static HEATERS_SELF_TEST_STATES_T handleHeatersSelfTestSmallPrimaryAndTrimmerHeaters ( void ) @@ -502,7 +495,6 @@ * @details * Inputs : heatersSelfTestResult * Outputs : heatersSelfTestResult - * @param none * @return state (HEATERS_SELF_TEST_STATES_T) *************************************************************************/ static HEATERS_SELF_TEST_STATES_T handleHeatersSelfTestMainPrimaryHeater ( void ) @@ -539,7 +531,6 @@ * @details * Inputs : hasStartPrimaryHeaterRequested, isPrimaryHeaterOn * Outputs : state (PRIMARY_HEATERS_EXEC_STATES_T), isPrimaryHeaterOn - * @param none * @return state (PRIMARY_HEATERS_EXEC_STATES_T) *************************************************************************/ static PRIMARY_HEATERS_EXEC_STATES_T handlePrimaryHeaterStateOff ( void ) @@ -589,7 +580,6 @@ * smallPrimaryHeaterDutyCycle, isPrimaryHeaterOn * Outputs : primaryHeaterTimerCounter, mainPrimaryHeaterDutyCycle, * smallPrimaryHeaterDutyCycle - * @param none * @return state (PRIMARY_HEATERS_EXEC_STATES_T) *************************************************************************/ static PRIMARY_HEATERS_EXEC_STATES_T handlePrimaryHeaterStateControlToTarget ( void ) @@ -656,7 +646,6 @@ * @details * Inputs : hasStartTrimmerHeaterRequested, isTrimmerHeaterOn * Outputs : state (TRIMMER_HEATER_EXEC_STATES_T), isTrimmerHeaterOn - * @param none * @return state (TRIMMER_HEATER_EXEC_STATES_T) *************************************************************************/ static TRIMMER_HEATER_EXEC_STATES_T handleTrimmerHeaterStateOff ( void ) @@ -708,7 +697,6 @@ * Inputs : trimmerHeaterTimerCounter, trimmerHeaterDutyCycle * Outputs : trimmerHeaterTimerCounter, trimmerHeaterDutyCycle, * isTrimmerHeaterOn - * @param none * @return state (TRIMMER_HEATER_EXEC_STATES_T) *************************************************************************/ static TRIMMER_HEATER_EXEC_STATES_T handleTrimmerHeaterControlToTarget ( void ) @@ -763,7 +751,7 @@ * @details * Inputs : none * Outputs : none - * @param : pwm : To set the PWM + * @param : pwm PWM duty cycle to set for 1st primary heater element * @return none *************************************************************************/ static void setMainPrimaryHeaterPWM ( F32 pwm ) @@ -778,7 +766,7 @@ * @details * Inputs : none * Outputs : none - * @param: pwm : To set the PWM + * @param: pwm : PWM duty cycle to set for 2nd primary heater element * @return none *************************************************************************/ static void setSmallPrimaryHeaterPWM ( F32 pwm ) @@ -792,7 +780,7 @@ * @details * Inputs : none * Outputs : none - * @param : pwm : To set the PWM + * @param : pwm : PWM duty cycle to set for trimmer heater * @return none *************************************************************************/ static void setTrimmerHeaterPWM ( F32 pwm ) @@ -807,7 +795,7 @@ * @details * Inputs : mainPrimaryHeaterDutyCycle, trimmerHeaterDutyCycle * Outputs : mainPrimaryHeaterDutyCycle, trimmerHeaterDutyCycle - * @param : heater (NAME_OF_HEATER) : Name of the heater to reset + * @param : heater : Enumeration of the heater for which the PI controller will be reset * @return none *************************************************************************/ static void resetHeaterState ( NAME_OF_HEATER_T heater ) @@ -831,7 +819,6 @@ * @details * Inputs : heatersDataPublishInterval * Outputs : none - * @param : none * @return result *************************************************************************/ U32 getPublishHeatersDataInterval ( void ) @@ -853,7 +840,6 @@ * @details * Inputs : dataPublicationTimerCounter * Outputs : dataPublicationTimerCounter - * @param none * @return none *************************************************************************/ static void publishHeatersData ( void ) @@ -897,7 +883,6 @@ * @details * Inputs : heatersDataPublishInterval * Outputs : heatersDataPublishInterval - * @param value * @return result *************************************************************************/ BOOL testSetHeatersPublishIntervalOverride ( U32 value ) @@ -923,7 +908,6 @@ * @details * Inputs : heatersDataPublishInterval * Outputs : heatersDataPublishInterval - * @param none * @return result *************************************************************************/ BOOL testResetHeatersPublishIntervalOverride ( void ) Index: firmware/App/Controllers/LoadCell.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -31,7 +31,7 @@ #define LOAD_CELL_SAMPLES_TO_AVERAGE LOAD_CELL_REPORT_PERIOD ///< Averaging load cell data over the reporting interval. #define LOAD_CELL_AVERAGE_MULTIPLIER (1.0 / (F32)LOAD_CELL_SAMPLES_TO_AVERAGE) ///< Optimization - multiplying is faster than dividing. // TODO - gain and offset for load cells should be read from NV Data calibration record. -#define ADC2GRAM (0.0894 * 1.1338) ///< Conversion factor from ADC counts to grams. Division for averaging is folded into this value. +#define ADC2GRAM (0.0894 * 1.1338) ///< Conversion factor from ADC counts to grams. #define LOAD_CELL_ZERO_OFFSET -1215.0 ///< Zero offset (in grams). TODO - right now, this is empty reservoir weight. // ********** private data ********** @@ -132,7 +132,7 @@ * @details * Inputs : filteredLoadCellWeights[] * Outputs : none - * @param loadCellID : ID of load cell to get filtered weight for. + * @param loadCellID ID of load cell to get filtered weight for * @return the filtered load cell weight for the given load cell ID. *************************************************************************/ F32 getLoadCellFilteredWeight( LOAD_CELL_ID_T loadCellID ) @@ -192,8 +192,8 @@ * @details * Inputs : none * Outputs : filteredLoadCellWeights[] - * @param loadCellID : ID of the load cell to override. - * @param value : override filtered load cell weight + * @param loadCellID ID of the load cell to override + * @param value override filtered load cell weight * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetLoadCellOverride( U32 loadCellID, F32 value ) @@ -220,7 +220,7 @@ * @details * Inputs : none * Outputs : filteredLoadCellWeights[] - * @param loadCellID : ID of the load cell to override. + * @param loadCellID ID of the load cell to override * @return TRUE if reset successful, FALSE if not *************************************************************************/ BOOL testResetLoadCellOverride( U32 loadCellID ) @@ -247,7 +247,7 @@ * @details * Inputs : none * Outputs : loadCellDataPublishInterval - * @param value : override load cell data publish interval with (in ms) + * @param value override load cell data publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetLoadCellDataPublishIntervalOverride( U32 value ) Index: firmware/App/Controllers/Pressures.c =================================================================== diff -u -r43ec4d03e577681a98ea4ed58082ffd6ab012fd3 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 43ec4d03e577681a98ea4ed58082ffd6ab012fd3) +++ firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -402,11 +402,11 @@ return result; } -/**@}*/ /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ + /*********************************************************************//** * @brief @@ -415,7 +415,7 @@ * @details * Inputs : none * Outputs : pressuresDataPublishInterval - * @param value : override pressure and occlusion data publish interval with (in ms) + * @param value override pressure and occlusion data publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetPressuresDataPublishIntervalOverride( U32 value ) @@ -463,8 +463,8 @@ * specified pressure sensor with a given value. * Inputs : none * Outputs : pressures[] - * @param sensor : ID of pressure sensor to override for - * @param value : override value for the given pressure sensor ID + * @param sensor ID of pressure sensor to override for + * @param value override value for the given pressure sensor ID * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetDGPressureSensorOverride( U32 sensor, F32 value ) @@ -491,7 +491,7 @@ * @details * Inputs : none * Outputs : pressures[] - * @param value : ID of sensor to reset override pressure for + * @param value ID of sensor to reset override pressure for * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testResetDGPressureSensorOverride( U32 sensor ) Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -15,9 +15,7 @@ * ***************************************************************************/ -#ifndef _VECTORCAST_ - #include -#endif +#include #include "etpwm.h" #include "mibspi.h" @@ -144,8 +142,8 @@ * @details * Inputs : none * Outputs : targetROPumpPressure, roPumpPWMDutyCyclePct - * @param roPressure : new target RO pressure - * @param mode : new control mode + * @param roPressure new target RO pressure + * @param mode new control mode * @return TRUE if new target pressure is set, FALSE if not *************************************************************************/ BOOL setROPumpTargetPressure( U32 roPressure, PUMP_CONTROL_MODE_T mode ) @@ -267,7 +265,6 @@ * @details * Inputs : none * Outputs : none - * @param none * @return isROPumpOn *************************************************************************/ BOOL isReverseOsmosisPumpOn( void ) @@ -386,7 +383,7 @@ * @details * Inputs : none * Outputs : PWM duty cycle zeroed - * @param newPWM : new duty cycle % to apply to PWM + * @param newPWM new duty cycle % to apply to PWM * @return none *************************************************************************/ static void setROPumpControlSignalPWM( F32 newPWM ) @@ -511,9 +508,7 @@ return result; } -/**@}*/ - /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ @@ -526,7 +521,7 @@ * @details * Inputs : none * Outputs : roPumpDataPublishInterval - * @param value : override RO pump data publish interval with (in ms) + * @param value override RO pump data publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetROPumpDataPublishIntervalOverride( U32 value ) @@ -575,7 +570,7 @@ * @details * Inputs : none * Outputs : targetROPumpPressure - * @param value : override target RO pressure (in PSI) + * @param value override target RO pressure (in PSI) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetTargetROPumpPressureOverride( U32 value ) @@ -600,7 +595,6 @@ * @details * Inputs : none * Outputs : targetROPumpPressure - * @param none * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetTargetROPumpPressureOverride( void ) @@ -626,7 +620,7 @@ * @details * Inputs : none * Outputs : measuredROFlowRateLPM - * @param value : override measured RO pump motor speed (in LPM) + * @param value override measured RO pump motor speed (in LPM) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetMeasuredROFlowRateOverride( F32 value ) @@ -650,7 +644,6 @@ * @details * Inputs : none * Outputs : measuredROFlowRateLPM - * @param none * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testResetMeasuredROFlowRateOverride( void ) @@ -666,3 +659,5 @@ return result; } + +/**@}*/ Index: firmware/App/Controllers/TemperatureSensors.c =================================================================== diff -u -r8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision 8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be) +++ firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -14,8 +14,11 @@ * @date (original) 08-Apr-2020 * ***************************************************************************/ -#include // For temperature calculation +#ifndef _VECTORCAST_ + #include // For temperature calculation +#endif + #include "TemperatureSensors.h" #include "FPGA.h" #include "SystemCommMessages.h" @@ -306,9 +309,7 @@ break; default: - SET_ALARM_WITH_2_U32_DATA ( ALARM_ID_DG_SOFTWARE_FAULT, - SW_FAULT_ID_TEMPERATURE_SENSORS_EXEC_INVALID_STATE, - tempSensorsExecState ); + SET_ALARM_WITH_2_U32_DATA ( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_TEMPERATURE_SENSORS_EXEC_INVALID_STATE, tempSensorsExecState ); tempSensorsExecState = TEMPSENSORS_EXEC_STATE_GET_ADC_VALUES; break; } @@ -365,21 +366,24 @@ * @details * Inputs : none * Outputs : none - * @param sensor : Temperature sensor index + * @param sensor ID of sensor to get temperature for * @return temperature *************************************************************************/ F32 getTemperatureValue ( U32 sensorIndex ) { - F32 temperature; + F32 temperature = 0.0; - if ( tempSensors[ sensorIndex ].temperatureValues.override == OVERRIDE_KEY ) + if ( sensorIndex < NUM_OF_TEMPERATURE_SENSORS ) { - temperature = tempSensors[ sensorIndex ].temperatureValues.ovData; + if ( tempSensors[ sensorIndex ].temperatureValues.override == OVERRIDE_KEY ) + { + temperature = tempSensors[ sensorIndex ].temperatureValues.ovData; + } + else + { + temperature = tempSensors[ sensorIndex ].temperatureValues.data; + } } - else - { - temperature = tempSensors[ sensorIndex ].temperatureValues.data; - } return temperature; } @@ -392,23 +396,22 @@ * ADC read from FPGA * @details * Inputs : none - * Outputs : none - * @param avgADC : Running average ADC - * @param gain : ADC gain - * @param refResistance : ADC reference resistance - * @param zeroDegResistance : ADC zero degree resistance - * @param adcConversionCoeff : ADC conversion coefficient - * @return temperature + * Outputs : temperatureValues + * @param avgADC average ADC value for given temperature sensor to convert + * @param gain gain value to apply + * @param refResistance resistance value to apply + * @param zeroDegResistance resistance value at zero degrees + * @return temperature (in degrees C) *************************************************************************/ static F32 getADC2TempConversion ( F32 avgADC, U32 gain, U32 refResistance, U32 zeroDegResistance, F32 adcConversionCoeff ) { F32 temperature; - if ( adcConversionCoeff == 0.0 ) + if ( fabs( adcConversionCoeff ) < NEARLY_ZERO ) { - //R(RTD) = R(ref) * (adc – 2^N-1) / (G *2^N-1); + // R(RTD) = R(ref) * (adc – 2^N-1) / (G *2^N-1); F32 resistance = (refResistance * (avgADC - pow(2,(TEMP_SENSORS_ADC_BITS - 1)))) / (gain * pow(2,(TEMP_SENSORS_ADC_BITS - 1))); - //T=(-A+√(A^2-4B(1-R_T/R_0 )))/2B + // T=(-A+√(A^2-4B(1-R_T/R_0 )))/2B F32 secondSqrtPart = 4 * TEMP_EQUATION_COEFF_B * (1 - (resistance / zeroDegResistance)); temperature = (-TEMP_EQUATION_COEFF_A + sqrt(pow(TEMP_EQUATION_COEFF_A, 2) - secondSqrtPart)) / (2 * TEMP_EQUATION_COEFF_B); } @@ -427,8 +430,8 @@ * @details * Inputs : temperatureValues * Outputs : temperatureValues - * @param TCIndex : Heater thermo couple index - * @param CJIndex : Heater cold junction index + * @param TCIndex thermocouple index + * @param CJIndex cold junction index * @return none *************************************************************************/ static void getHeaterInternalTemp ( U32 TCIndex, U32 CJIndex ) @@ -462,7 +465,7 @@ } else { - //TODO Alarm + // TODO Alarm temperature = -1.0; } @@ -485,10 +488,10 @@ * @details * Inputs : none * Outputs : none - * @param sensorIndex : Temperature sensor index - * @param adc : ADC reading from FPGA - * @param fpgaError : FPGA error count - * @param fpgaCount : FPGA read count + * @param sensorIndex ID of temperature sensor to process + * @param adc ADC value for the temperature sensor + * @param fpgaError reported FPGA error status + * @param fpgaCount reported FPGA read count * @return none *************************************************************************/ static void processTempSnsrsADCRead ( U32 sensorIndex, U32 adc, U32 fpgaError, U32 fpgaCount ) @@ -511,10 +514,10 @@ * @details * Inputs : none * Outputs : none - * @param sensorIndex : Temperature sensor index - * @param adc : ADC reading from FPGA - * @param fpgaError : FPGA error count - * @param fpgaCount : FPGA read count + * @param sensorIndex ID of temperature sensor to process + * @param adc reported ADC value for temperature sensor + * @param fpgaError reported error status by FPGA + * @param fpgaCount reported read count by FPGA * @return none *************************************************************************/ static void processHtrsTempSnsrsADCRead ( U32 sensorIndex, U32 adc, U32 fpgaError, U32 fpgaCount ) @@ -554,11 +557,11 @@ * and the ADC value is not the same as the previous ADC read, it returns a * TRUE, signaling that the ADC is valid to be processed. * @details - * Inputs : readCount - * Outputs : readCount, internalErrorCount - * @param sensorIndex : Temperature sensor index - * @param fpgaError : FPGA error count - * @param fpgaCount : FPGA read count + * Inputs : readAndErrorCounts + * Outputs : readAndErrorCounts + * @param sensorIndex ID of temperature sensor to check + * @param fpgaError reported error status by FPGA + * @param fpgaCount reported read count by FPGA * @return isADCValid (BOOL) *************************************************************************/ static BOOL isADCReadValid ( U32 sensorIndex, U32 fpgaError, U32 fpgaCount ) @@ -601,10 +604,10 @@ * index and calculates the running sum and the moving average of the ADCs * The temperatureSensorsADCRead and tempSensorsAvgADCValues are updated * @details - * Inputs : adcNextIndex, rawADCReads, adcRunningSum - * Outputs : adcNextIndex, rawADCReads, adcRunningSum, temperatureValues - * @param sensorIndex : Temperature sensor index - * @param adc : adc reading from fpga + * Inputs : runningSumAndIndex, rawADCReads, sampleCount, temperatureValues + * Outputs : runningSumAndIndex, rawADCReads, sampleCount, temperatureValues + * @param sensorIndex ID of temperature sensor to process + * @param adc reported ADC value for temperature sensor * @return none *************************************************************************/ static void processADCRead ( U32 sensorIndex, S32 adc ) @@ -635,7 +638,6 @@ * @details * Inputs : none * Outputs : none - * @param none * @return state (TEMPSENSORS_SELF_TEST_STATES_T) *************************************************************************/ static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestStart ( void ) @@ -652,7 +654,6 @@ * @details * Inputs : none * Outputs : none - * @param none * @return TEMPSENSORS_SELF_TEST_CONSISTENCY_CHECK (TEMPSENSORS_SELF_TEST_STATES_T) *************************************************************************/ static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestADCCheck ( void ) @@ -717,7 +718,6 @@ * @details * Inputs : none * Outputs : elapsedTime - * @param none * @return state (TEMPSENSORS_EXEC_STATES_T) *************************************************************************/ static TEMPSENSORS_EXEC_STATES_T handleExecStart ( void ) @@ -745,7 +745,6 @@ * @details * Inputs : none * Outputs : internalHeatersConversionTimer, elapsedTime, temperatureValues - * @param none * @return state (TEMPSENSORS_EXEC_STATES_T) *************************************************************************/ static TEMPSENSORS_EXEC_STATES_T handleExecGetADCValues ( void ) @@ -791,7 +790,6 @@ * @details * Inputs : tempSensorsPublishInterval * Outputs : none - * @param none * @return result *************************************************************************/ U32 getPublishTemperatureSensorsDataInterval ( void ) @@ -813,7 +811,6 @@ * @details * Inputs : dataPublicationTimerCounter, tempValuesForPublication * Outputs : dataPublicationTimerCounter, tempValuesForPublication - * @param none * @return none *************************************************************************/ static void publishTemperatureSensorsData ( void ) @@ -843,8 +840,8 @@ * @details * Inputs : temperatureValues * Outputs : temperatureValues - * @param sensorIndex : Temperature sensor index - * @param temperature : Temperature value to override if testing activated + * @param sensor ID of temperature sensor to override + * @param temperature override temperature value (in degrees C) * @return result *************************************************************************/ BOOL testSetMeasuredTemperatureOverride ( U32 sensorIndex, F32 temperature ) @@ -871,7 +868,7 @@ * @details * Inputs : temperatureValues * Outputs : temperatureValues - * @param sensorIndex : Temperature index + * @param sensor ID of temperature sensor to reset override * @return result *************************************************************************/ BOOL testResetMeasuredTemperatureOverride ( U32 sensorIndex ) @@ -898,7 +895,7 @@ * @details * Inputs : tempSensorsPublishInterval * Outputs : tempSensorsPublishInterval - * @param value : Publish interval in ms to override if testing activated + * @param value temperature sensor data broadcast interval (in ms) to override to * @return result *************************************************************************/ BOOL testSetTemperatureSensorsPublishIntervalOverride ( U32 value ) Index: firmware/App/Controllers/Valves.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Controllers/Valves.c (.../Valves.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Controllers/Valves.c (.../Valves.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -49,7 +49,7 @@ static BOOL checkValveStateName( VALVES_T valve, VALVE_STATE_NAMES_T valveStateName ); ///< check validity of requested valve state name for given valve static U32 convertValveStateNameToValveState(VALVE_STATE_NAMES_T valveStateName); ///< Convert valve state name to de-/energized valve state -static U16 fromU32ArrayToU16( OVERRIDE_U32_T array[ NUM_OF_VALVES ] ); ///< convert array of U32 to U16 for statesValves preparation +static U16 fromU32ArrayToU16( void ); ///< convert array of U32 to U16 for statesValves preparation static void publishValvesStates( void ); static DATA_GET_PROTOTYPE( U32, getPublishValvesStatesInterval ); @@ -73,7 +73,7 @@ valveStates[ i ].ovData = DEENERGIZED; valveStates[ i ].override = OVERRIDE_RESET; } - commandedValvesStates = fromU32ArrayToU16( valveStates ); + commandedValvesStates = fromU32ArrayToU16(); setFPGAValveStates( commandedValvesStates ); // initially set all valves to de-energized state via FPGA valvesStatesPublicationTimerCounter = 0; // reset valves states publication timer @@ -106,7 +106,7 @@ } // set valves states (via FPGA) to currently commanded states - commandedValvesStates = fromU32ArrayToU16( valveStates ); + commandedValvesStates = fromU32ArrayToU16(); setFPGAValveStates( commandedValvesStates ); // publish valve states on interval @@ -120,8 +120,8 @@ * @details * Inputs : none * Outputs : none - * @param valveID : ID of valve to check a valve state name for. - * @param valveStateName : valve state name to check for given valve ID. + * @param valveID ID of valve to check a valve state name for + * @param valveStateName valve state name to check for given valve ID * @return TRUE if given valveStateName is appropriate for given valve ID, FALSE if not. *************************************************************************/ static BOOL checkValveStateName( VALVES_T valveID, VALVE_STATE_NAMES_T valveStateName ) @@ -252,7 +252,7 @@ * Outputs : none * @return converted U16 bit field for currently commanded valve states *************************************************************************/ -U16 fromU32ArrayToU16( OVERRIDE_U32_T array[ NUM_OF_VALVES ] ) +U16 fromU32ArrayToU16( void ) { U16 result = ALL_VALVES_DEENERGIZED; // start result flag as all valves de-energized U32 i; @@ -273,7 +273,7 @@ * @details * Inputs : none * Outputs : none - * @param valveStateName : valve state name enumeration to convert to energized/de-energized. + * @param valveStateName valve state name enumeration to convert to energized/de-energized * @return converted valve state for given valve state name *************************************************************************/ U32 convertValveStateNameToValveState( VALVE_STATE_NAMES_T valveStateName ) @@ -344,18 +344,25 @@ * @details * Inputs : none * Outputs : none - * @param valveID : ID of valve to set state for. - * @param valveStateName : Name of valve state to set given valve to. + * @param valveID ID of valve to set state for + * @param valveStateName Name of valve state to set given valve to * @return TRUE if new valve state is set for given valve ID, FALSE if not. *************************************************************************/ BOOL setValveState( VALVES_T valveID, VALVE_STATE_NAMES_T valveStateName ) { BOOL result = FALSE; // initialize result flag to FALSE - - if ( checkValveStateName ( valveID, valveStateName ) ) - { - valveStates[ valveID ].data = convertValveStateNameToValveState( valveStateName ); - result = TRUE; + + if ( valveID < NUM_OF_VALVES ) + { + if ( checkValveStateName ( valveID, valveStateName ) ) + { + valveStates[ valveID ].data = convertValveStateNameToValveState( valveStateName ); + result = TRUE; + } + } + else + { + // TODO - s/w fault } return result; @@ -367,7 +374,7 @@ * @details * Inputs : valveStates[] * Outputs : none - * @param valveID : ID of valve to get state for. + * @param valveID ID of valve to get state for * @return the current valve state for given valve *************************************************************************/ U32 getValveState( U32 valveID ) @@ -424,7 +431,7 @@ * @details * Inputs : none * Outputs : valvesStatesPublishInterval - * @param value : override valves states publish interval with (in ms) + * @param value override valves states publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetValvesStatesPublishIntervalOverride( U32 value ) @@ -472,8 +479,8 @@ * specified valve with a given value. * Inputs : none * Outputs : valves[] - * @param valveID : ID of valve to override for - * @param value : override value for the given valve ID + * @param valveID ID of valve to override for + * @param value override value for the given valve ID * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetValveStateOverride( U32 valveID, U32 value ) @@ -500,7 +507,7 @@ * @details * Inputs : none * Outputs : valves[] - * @param valveID : ID of valve to reset override state for + * @param valveID ID of valve to reset override state for * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testResetValveStateOverride( U32 valveID ) Index: firmware/App/Drivers/InternalADC.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Drivers/InternalADC.c (.../InternalADC.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Drivers/InternalADC.c (.../InternalADC.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -79,7 +79,6 @@ * @details * Inputs : none * Outputs : InternalADC module is initialized. - * @param none * @return none *************************************************************************/ void initInternalADC( void ) @@ -112,8 +111,8 @@ * @details * Inputs : ADC FIFO * Outputs : adcRawReadingsCount, adcRawReadings[] - * @param adc : pointer to the ADC1 controller - * @param group : ADC channel group ID + * @param adc pointer to the ADC1 controller + * @param group ADC channel group ID * @return none *************************************************************************/ void adcNotification( adcBASE_t *adc, uint32 group ) @@ -131,8 +130,8 @@ * @details * Inputs : adcRawReadingsCount, adcRawReadings[] * Outputs : adcReadings[][], adcReadingsIdx[], adcReadingsTotals[], adcReadingsAvgs[] - * @param adc : pointer to the ADC1 controller - * @param group : ADC channel group ID + * @param adc pointer to the ADC1 controller + * @param group ADC channel group ID * @return none *************************************************************************/ void execInternalADC( void ) @@ -144,7 +143,7 @@ // process readings from last conversion for ( i = 0; i < adcRawReadingsCount; i++ ) { - U32 ch = adcChannelNum2ChannelId[ adcRawReadings[ i ].id ]; + U32 ch = adcChannelNum2ChannelId[ adcRawReadings[ i ].id ]; // TODO - need to range check .id? adcReadingsTotals[ ch ] -= adcReadings[ ch ][ adcReadingsIdx[ ch ] ]; adcReadings[ ch ][ adcReadingsIdx[ ch ] ] = adcRawReadings[i].value; @@ -169,7 +168,7 @@ * @details * Inputs : adcReadingsAvgs[] * Outputs : none - * @param channel : adc channel to retrieve a reading for + * @param channel adc channel to retrieve a reading for * @return average reading for the given channel *************************************************************************/ U16 getIntADCReading( INT_ADC_CHANNEL_T channel ) Index: firmware/App/Modes/ModeDrain.c =================================================================== diff -u -r74a9c045d2d045721baac1d15b618db450e7f775 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/ModeDrain.c (.../ModeDrain.c) (revision 74a9c045d2d045721baac1d15b618db450e7f775) +++ firmware/App/Modes/ModeDrain.c (.../ModeDrain.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -7,20 +7,23 @@ * * @file ModeDrain.c * -* @author (last) Sean Nash -* @date (last) 02-Jul-2020 +* @author (last) Quang Nguyen +* @date (last) 13-Aug-2020 * * @author (original) Leonardo Baloa * @date (original) 20-Dec-2019 * ***************************************************************************/ +#include "ConductivitySensors.h" #include "DrainPump.h" #include "LoadCell.h" #include "ModeDrain.h" #include "OperationModes.h" +#include "Pressures.h" #include "Reservoirs.h" #include "Valves.h" +#include "TemperatureSensors.h" /** * @addtogroup DGDrainMode @@ -81,6 +84,11 @@ *************************************************************************/ U32 execDrainMode( void ) { + // check inlet water conductivity, temperature, and pressure + checkInletWaterConductivity( drainState ); + checkInletWaterTemperature(); + checkInletPressure(); + // execute current drain state switch ( drainState ) { Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r43ec4d03e577681a98ea4ed58082ffd6ab012fd3 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 43ec4d03e577681a98ea4ed58082ffd6ab012fd3) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -109,7 +109,7 @@ break; default: - SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, 0, fillState ) // TODO - add s/w fault enum to 1st data param + SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, 0, fillState ) // TODO - add s/w fault enum to 1st data param fillState = DG_FILL_MODE_STATE_START; break; } @@ -124,7 +124,6 @@ * @details * Inputs : none * Outputs : - * @param none * @return the next state *************************************************************************/ static DG_FILL_MODE_STATE_T handleDialysateProductionState( void ) @@ -148,7 +147,6 @@ * @details * Inputs : none * Outputs : - * @param none * @return the next state *************************************************************************/ static DG_FILL_MODE_STATE_T handleDeliverDialysateState( void ) @@ -164,11 +162,7 @@ } // determine which load cell to use for fill volume - we want weight of inactive reservoir -#ifndef BETA_V1_BUILD if ( RESERVOIR_1 == getActiveReservoir() ) -#else - if ( RESERVOIR_2 == getActiveReservoir() ) -#endif { fillWeightLoadCell = LOAD_CELL_B1; } Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r43ec4d03e577681a98ea4ed58082ffd6ab012fd3 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 43ec4d03e577681a98ea4ed58082ffd6ab012fd3) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -15,6 +15,7 @@ * ***************************************************************************/ +#include "Accel.h" #include "CPLD.h" #include "FPGA.h" #include "OperationModes.h" @@ -87,8 +88,9 @@ { case DG_POST_STATE_START: postState = DG_POST_STATE_FPGA; - // FOR TESTING REMOVE - //postState = POST_STATE_TEMPERATURE_SENSORS; +#ifdef SKIP_POST + postState = DG_POST_STATE_COMPLETED; +#endif break; case DG_POST_STATE_FPGA: @@ -106,6 +108,13 @@ postState = handlePOSTStatus( testStatus ); break; + case DG_POST_STATE_ACCELEROMETER: +#ifndef DISABLE_ACCELS + testStatus = execAccelTest(); +#else + testStatus = SELF_TEST_STATUS_PASSED; +#endif + case DG_POST_STATE_PRESSURES: testStatus = execPressureSelfTest(); postState = handlePOSTStatus( testStatus ); @@ -185,7 +194,7 @@ * @details * Inputs : postPassed * Outputs : none - * @param testStatus + * @param testStatus status reported by last test * @return recommended next POST state *************************************************************************/ static DG_POST_STATE_T handlePOSTStatus( SELF_TEST_STATUS_T testStatus ) Index: firmware/App/Modes/ModeRecirculate.c =================================================================== diff -u -r8f5feed92f41a476d5656038bcdfe884e17bd593 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision 8f5feed92f41a476d5656038bcdfe884e17bd593) +++ firmware/App/Modes/ModeRecirculate.c (.../ModeRecirculate.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -1,3 +1,4 @@ + /************************************************************************** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. @@ -7,8 +8,8 @@ * * @file ModeRecirculate.c * -* @author (last) Sean Nash -* @date (last) 06-Jul-2020 +* @author (last) Quang Nguyen +* @date (last) 13-Aug-2020 * * @author (original) Sean * @date (original) 04-Apr-2020 @@ -17,15 +18,18 @@ #include "etpwm.h" +#include "ConductivitySensors.h" #include "DrainPump.h" #include "FPGA.h" #include "Heaters.h" +#include "ModeRecirculate.h" #include "OperationModes.h" +#include "Pressures.h" #include "ROPump.h" #include "TaskGeneral.h" #include "Timers.h" #include "Valves.h" -#include "ModeRecirculate.h" +#include "TemperatureSensors.h" /** * @addtogroup DGRecirculateMode @@ -39,8 +43,8 @@ // ********** private data ********** -static DG_RECIRCULATE_MODE_STATE_T recircState; ///< Currently active re-circulation state. -static F32 flushLinesVolumeL = 0.0; ///< Volume of water pumped by RO pump during flush lines state. +static DG_RECIRCULATE_MODE_STATE_T recircState; ///< Currently active re-circulation state. +static F32 flushLinesVolumeL = 0.0; ///< Volume of water pumped by RO pump during flush lines state. // ********** private function prototypes ********** @@ -106,6 +110,11 @@ *************************************************************************/ U32 execRecirculateMode( void ) { + // check inlet water conductivity, temperature, and pressure + checkInletWaterConductivity( recircState ); + checkInletWaterTemperature(); + checkInletPressure(); + // execute current re-circulate state switch ( recircState ) { Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -r8f5feed92f41a476d5656038bcdfe884e17bd593 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 8f5feed92f41a476d5656038bcdfe884e17bd593) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -7,8 +7,8 @@ * * @file ModeStandby.c * -* @author (last) Sean Nash -* @date (last) 12-Jun-2020 +* @author (last) Quang Nguyen +* @date (last) 21-Jul-2020 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 Index: firmware/App/Modes/OperationModes.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -55,7 +55,7 @@ /* FAUL */{ DG_MODE_FAUL, DG_MODE_SERV, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG }, /* SERV */{ DG_MODE_FAUL, DG_MODE_SERV, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG }, /* INIT */{ DG_MODE_FAUL, DG_MODE_NLEG, DG_MODE_INIT, DG_MODE_STAN, DG_MODE_SOLO, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG }, - /* STAN */{ DG_MODE_FAUL, DG_MODE_SERV, DG_MODE_NLEG, DG_MODE_STAN, DG_MODE_SOLO, DG_MODE_CIRC, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_FLUS, DG_MODE_NLEG, DG_MODE_CHEM }, + /* STAN */{ DG_MODE_FAUL, DG_MODE_SERV, DG_MODE_NLEG, DG_MODE_STAN, DG_MODE_SOLO, DG_MODE_CIRC, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_FLUS, DG_MODE_HEAT, DG_MODE_CHEM }, /* SOLO */{ DG_MODE_FAUL, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_STAN, DG_MODE_SOLO, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_FLUS, DG_MODE_HEAT, DG_MODE_NLEG }, /* CIRC */{ DG_MODE_FAUL, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_STAN, DG_MODE_NLEG, DG_MODE_CIRC, DG_MODE_FILL, DG_MODE_DRAI, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG }, /* FILL */{ DG_MODE_FAUL, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_STAN, DG_MODE_NLEG, DG_MODE_CIRC, DG_MODE_FILL, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG, DG_MODE_NLEG }, @@ -92,11 +92,7 @@ } // start in init mode -#ifndef CAN_TEST currentMode = DG_MODE_INIT; -#else - currentMode = DG_MODE_FAUL; -#endif currentSubMode = 0; transitionToNewOperationMode( DG_MODE_INIT ); @@ -202,10 +198,8 @@ break; } // end switch -#ifndef CAN_TEST // publish op mode on interval broadcastOperationMode(); -#endif } /*********************************************************************//** @@ -214,7 +208,7 @@ * @details * Inputs : none * Outputs : makes the requested mode "pending". - * @param newMode : requested mode + * @param newMode requested mode * @return none *************************************************************************/ void requestNewOperationMode( DG_OP_MODE_T newMode ) @@ -288,7 +282,7 @@ * @details * Inputs : none * Outputs : Initializes the Operation Modes module. - * @param newMode : new op mode to transition to + * @param newMode new op mode to transition to * @return none *************************************************************************/ static void transitionToNewOperationMode( DG_OP_MODE_T newMode ) Index: firmware/App/Services/AlarmMgmt.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -47,7 +47,6 @@ * @details * Inputs : none * Outputs : AlarmMgmt module initialized. - * @param none * @return none *************************************************************************/ void initAlarmMgmt( void ) @@ -71,7 +70,6 @@ * @details * Inputs : * Outputs : - * @param none * @return none *************************************************************************/ void execAlarmMgmt( void ) @@ -85,7 +83,7 @@ * @details * Inputs : none * Outputs : alarmIsActive[] - * @param alarm : ID of alarm to activate + * @param alarm ID of alarm to activate * @return none *************************************************************************/ static void activateAlarm( ALARM_ID_T alarm ) @@ -114,8 +112,8 @@ * @details * Inputs : none * Outputs : alarm triggered message sent, alarm activated - * @param alarm : ID of alarm to activate - * @param alarmData : supporting data to include in alarm msg + * @param alarm ID of alarm to activate + * @param alarmData supporting data to include in alarm msg * @return none *************************************************************************/ void activateAlarmNoData( ALARM_ID_T alarm ) @@ -124,18 +122,20 @@ if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( (U16)alarm, blankAlarmData, blankAlarmData ); - } +#ifdef DEBUG_ENABLED +#ifdef ALARMS_DEBUG + { + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; + sprintf( debugStr, "ALARM trig:%5d \n", alarm ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); + } +#endif +#endif + } + activateAlarm( alarm ); -#ifdef DEBUG_ENABLED -#ifdef ALARMS_DEBUG - { - // TODO - temporary debug code - remove later - char debugStr[ 256 ]; - sprintf( debugStr, "ALARM triggered:%5d \n", alarm ); - sendDebugData( (U08*)debugStr, strlen(debugStr) ); - } -#endif -#endif } /************************************************************************* @@ -146,8 +146,8 @@ * @details * Inputs : none * Outputs : alarm triggered message sent, alarm activated - * @param alarm : ID of alarm to activate - * @param alarmData : supporting data to include in alarm msg + * @param alarm ID of alarm to activate + * @param alarmData supporting data to include in alarm msg * @return none *************************************************************************/ void activateAlarm1Data( ALARM_ID_T alarm, ALARM_DATA_T alarmData ) @@ -156,18 +156,20 @@ if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( (U16)alarm, alarmData, blankAlarmData ); - } +#ifdef DEBUG_ENABLED +#ifdef ALARMS_DEBUG + { + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; + sprintf( debugStr, "ALARM trig:%5d %8X \n", alarm, alarmData.data.uInt.data ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); + } +#endif +#endif + } + activateAlarm( alarm ); -#ifdef DEBUG_ENABLED -#ifdef ALARMS_DEBUG - { - // TODO - temporary debug code - remove later - char debugStr[ 256 ]; - sprintf( debugStr, "ALARM triggered:%5d %8X \n", alarm, alarmData.data.uInt.data ); - sendDebugData( (U08*)debugStr, strlen(debugStr) ); - } -#endif -#endif } /************************************************************************* @@ -178,9 +180,9 @@ * @details * Inputs : none * Outputs : alarm triggered message sent, alarm activated - * @param alarm : ID of alarm to activate - * @param alarmData1 : supporting data to include in alarm msg - * @param alarmData2 : supporting data to include in alarm msg + * @param alarm ID of alarm to activate + * @param alarmData1 supporting data to include in alarm msg + * @param alarmData2 supporting data to include in alarm msg * @return none *************************************************************************/ void activateAlarm2Data( ALARM_ID_T alarm, ALARM_DATA_T alarmData1, ALARM_DATA_T alarmData2 ) @@ -189,18 +191,20 @@ if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( (U16)alarm, alarmData1, alarmData2 ); - } +#ifdef DEBUG_ENABLED +#ifdef ALARMS_DEBUG + { + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; + sprintf( debugStr, "ALARM trig:%5d %8X %8X \n", alarm, alarmData1.data.uInt.data, alarmData2.data.uInt.data ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); + } +#endif +#endif + } + activateAlarm( alarm ); -#ifdef DEBUG_ENABLED -#ifdef ALARMS_DEBUG - { - // TODO - temporary debug code - remove later - char debugStr[ 256 ]; - sprintf( debugStr, "ALARM triggered:%5d %8X %8X \n", alarm, alarmData1.data.uInt.data, alarmData2.data.uInt.data ); - sendDebugData( (U08*)debugStr, strlen(debugStr) ); - } -#endif -#endif } /************************************************************************* @@ -210,7 +214,7 @@ * @details * Inputs : none * Outputs : AlarmStatusTable[] - * @param alarm : ID of alarm to clear + * @param alarm ID of alarm to clear * @return none *************************************************************************/ void clearAlarm( ALARM_ID_T alarm ) @@ -230,6 +234,7 @@ char debugStr[ 256 ]; sprintf( debugStr, "ALARM cleared:%5d \n", alarm ); sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); } #endif #endif @@ -248,7 +253,7 @@ * @details * Inputs : alarmIsActive[] * Outputs : none - * @param alarmID : ID of alarm to check + * @param alarmID ID of alarm to check * @return TRUE if given alarm is active, FALSE if not *************************************************************************/ BOOL isAlarmActive( ALARM_ID_T alarm ) @@ -264,14 +269,12 @@ * @details * Inputs : alarmIsActive[] * Outputs : none - * @param alarmID : ID of alarm to check + * @param alarmID ID of alarm to check * @return TRUE if given alarm is active, FALSE if not *************************************************************************/ static DATA_ARRAY_GET( BOOL, getAlarmActive, alarmID, NUM_OF_ALARM_IDS-1, alarmIsActive, TRUE ) -/**@}*/ - /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ @@ -285,8 +288,8 @@ * @details * Inputs : none * Outputs : alarm activated or cleared - * @param alarmID : ID of alarm to activate or clear - * @param value : override state for the given alarm ID (1=activate, 0=clear) + * @param alarmID ID of alarm to activate or clear + * @param value override state for the given alarm ID (1=activate, 0=clear) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetAlarmStateOverride( U32 alarmID, U32 state ) @@ -319,7 +322,7 @@ * @details * Inputs : none * Outputs : alarm cleared - * @param alarmID : ID of alarm to clear + * @param alarmID ID of alarm to clear * @return TRUE if alarm clear successful, FALSE if not *************************************************************************/ BOOL testResetAlarmStateOverride( U32 alarmID ) @@ -337,3 +340,5 @@ return result; } + +/**@}*/ Index: firmware/App/Services/AlarmMgmt.h =================================================================== diff -u -r075a45f01b77c0cdb3eea1b9cf666d973364a605 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/AlarmMgmt.h (.../AlarmMgmt.h) (revision 075a45f01b77c0cdb3eea1b9cf666d973364a605) +++ firmware/App/Services/AlarmMgmt.h (.../AlarmMgmt.h) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -7,8 +7,8 @@ * * @file AlarmMgmt.h * -* @author (last) Sean -* @date (last) 06-May-2020 +* @author (last) Quang Nguyen +* @date (last) 13-Aug-2020 * * @author (original) Sean * @date (original) 04-Feb-2020 @@ -160,6 +160,8 @@ BOOL testSetAlarmStateOverride( U32 alarmID, BOOL value ); BOOL testResetAlarmStateOverride( U32 alarmID ); + +/**@}*/ /**@}*/ Index: firmware/App/Services/CommBuffers.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/CommBuffers.c (.../CommBuffers.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/CommBuffers.c (.../CommBuffers.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -17,7 +17,8 @@ #include // for memcpy() -#include "CommBuffers.h" +#include "CommBuffers.h" +#include "SystemComm.h" #include "SystemCommMessages.h" #include "Timers.h" @@ -32,12 +33,10 @@ static volatile U32 commBufferByteCount[ NUM_OF_COMM_BUFFERS ][ DOUBLE_BUFFERS ]; // for each buffer, how many bytes does it contain? (also index to next available) static volatile U32 activeDoubleBuffer[ NUM_OF_COMM_BUFFERS ]; // for each buffer, which double buffer is being fed right now? static U08 commBuffers[ NUM_OF_COMM_BUFFERS ][ DOUBLE_BUFFERS ][ COMM_BUFFER_LENGTH ]; // each is double buffered to avoid thread contention -static volatile BOOL bufferGetLock[ NUM_OF_COMM_BUFFERS ]; // prevent getter from accessing active buffer while add in progress static U32 firstBufferOverflowTimeStamp = 0; // time stamp of a prior overflow event - allows for an overflow persistence check // ********** private function prototypes ********** -static void clearBuffer( COMM_BUFFER_T buffer ); static U32 switchDoubleBuffer( COMM_BUFFER_T buffer ); static void getDataFromInactiveBuffer( COMM_BUFFER_T buffer, U08 *data, U32 len ); @@ -47,7 +46,6 @@ * @details * Inputs : none * Outputs : CommBuffers module initialized. - * @param none * @return none *************************************************************************/ void initCommBuffers( void ) @@ -69,24 +67,27 @@ * @details * Inputs : none * Outputs : given buffer is cleared. - * @param buffer : the buffer to clear + * @param buffer the buffer to clear * @return none *************************************************************************/ -static void clearBuffer( COMM_BUFFER_T buffer ) +void clearBuffer( COMM_BUFFER_T buffer ) { if ( buffer < NUM_OF_COMM_BUFFERS ) { - S32 d,i; + S32 d; + // thread protection for queue operations + _disable_IRQ(); + activeDoubleBuffer[ buffer ] = 0; - for ( d = 0; d < DOUBLE_BUFFERS; d++ ) - { - commBufferByteCount[ buffer ][ d ] = 0; - for ( i = 0; i < COMM_BUFFER_LENGTH; i++ ) - { - commBuffers[ buffer ][ d ][ i ] = 0; - } - } + for ( d = 0; d < DOUBLE_BUFFERS; d++ ) + { + commBufferByteCount[ buffer ][ d ] = 0; + memset( &commBuffers[ buffer ][ d ][ 0 ], 0, COMM_BUFFER_LENGTH ); + } + + // release thread protection + _enable_IRQ(); } } @@ -100,9 +101,9 @@ * @details * Inputs : commBufferByteCount[], activeDoubleBuffer[] * Outputs : commBuffers[], commBufferByteCount[] - * @param buffer : which comm buffer to add data to - * @param data : pointer to byte array containing data to add - * @param len : length of data (in bytes) + * @param buffer which comm buffer to add data to + * @param data pointer to byte array containing data to add + * @param len length of data (in bytes) * @return TRUE if data added to buffer successfully, FALSE if not *************************************************************************/ BOOL addToCommBuffer( COMM_BUFFER_T buffer, U08* data, U32 len ) @@ -114,61 +115,63 @@ { BOOL bufferFull = FALSE; U32 activeBuffer; - U32 currentActiveBufCount; // where to start adding new data to buffer (after existing data) + U32 currentActiveBufCount; // where to start adding new data to buffer (after existing data) + + // prevent adding to out-going CAN buffer if DG is only node on CAN bus + if ( ( FALSE == isDGOnlyCANNode() ) || ( FALSE == isCANBoxForXmit( (CAN_MESSAGE_BOX_T)buffer ) ) ) + { + // thread protection for queue operations + _disable_IRQ(); - // thread protection for queue operations - _disable_IRQ(); - bufferGetLock[ buffer ] = TRUE; + activeBuffer = activeDoubleBuffer[ buffer ]; + currentActiveBufCount = commBufferByteCount[ buffer ][ activeBuffer ]; - activeBuffer = activeDoubleBuffer[ buffer ]; - currentActiveBufCount = commBufferByteCount[ buffer ][ activeBuffer ]; + // check to make sure buffer is not too full to service this add + if ( len <= ( COMM_BUFFER_LENGTH - currentActiveBufCount ) ) + { + U08 *buffPtr; // buffer destination for added data - // check to make sure buffer is not too full to service this add - if ( len <= ( COMM_BUFFER_LENGTH - currentActiveBufCount ) ) - { - U08 *buffPtr; // buffer destination for added data + // set destination pointer to end of active buffer data + buffPtr = &commBuffers[ buffer ][ activeBuffer ][ currentActiveBufCount ]; + // copy source data to destination buffer + memcpy( buffPtr, data, len ); + // adjust buffer count per this data add (also reserves space to add data before releasing thread protection) + commBufferByteCount[ buffer ][ activeBuffer ] += len; + // data successfully added to buffer + result = TRUE; + } + else // buffer too full to add this much data + { + bufferFull = TRUE; + } + // release thread protection + _enable_IRQ(); + } - // set destination pointer to end of active buffer data - buffPtr = &commBuffers[ buffer ][ activeBuffer ][ currentActiveBufCount ]; - // copy source data to destination buffer - memcpy( buffPtr, data, len ); - // adjust buffer count per this data add (also reserves space to add data before releasing thread protection) - commBufferByteCount[ buffer ][ activeBuffer ] += len; - // data successfully added to buffer - result = TRUE; - } - else // buffer too full to add this much data - { - bufferFull = TRUE; - clearBuffer( buffer ); - } - // release thread protection - bufferGetLock[ buffer ] = FALSE; - _enable_IRQ(); // if buffer was full, check persistence - trigger s/w fault if persists if ( TRUE == bufferFull ) { +#ifdef DEBUG_ENABLED + char debugStr[100]; + sprintf( debugStr, "Buf OF:#%3d,%3d, %02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n", buffer, len, \ + data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7] ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); +#endif + clearBuffer( buffer ); // not first overflow? if ( firstBufferOverflowTimeStamp != 0 ) { // if buffer overflows persists, fault if ( calcTimeSince( firstBufferOverflowTimeStamp ) > BUFFER_OVERFLOW_PERSISTENCE_MS ) { - SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_COMM_BUFFERS_ADD_TOO_MUCH_DATA, len ) + SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_COMM_BUFFERS_ADD_TOO_MUCH_DATA, (U32)buffer ) } } else // first overflow - set time stamp for persistence check { firstBufferOverflowTimeStamp = getMSTimerCount(); } -#ifdef DEBUG_ENABLED - { - // TODO - temporary debug code - remove later - char debugStr[ 256 ]; - sprintf( debugStr, "Comm Buffer Overflow:%5d \n", (U32)buffer ); - sendDebugData( (U08*)debugStr, strlen(debugStr) ); - } -#endif } else { // if good for persistence time period, reset persistence check @@ -199,9 +202,9 @@ * Inputs : commBuffers[], commBufferByteCount[], activeDoubleBuffer[] * Outputs : commBuffers[], commBufferByteCount[], activeDoubleBuffer[], \n * and the given data array is populated with data from the buffer. - * @param buffer : which comm buffer to retrieve data from - * @param data : pointer to byte array to stuff data into - * @param len : # of bytes to retrieve into given data array. + * @param buffer which comm buffer to retrieve data from + * @param data pointer to byte array to stuff data into + * @param len # of bytes to retrieve into given data array. * @return the number of bytes retrieved. *************************************************************************/ U32 getFromCommBuffer( COMM_BUFFER_T buffer, U08* data, U32 len ) @@ -258,9 +261,9 @@ * @details * Inputs : commBuffers[], commBufferByteCount[], activeDoubleBuffer[] * Outputs : given array populated with requested # of bytes from the buffer. - * @param buffer : which comm buffer to retrieve data from - * @param data : pointer to byte array to stuff data into - * @param len : # of bytes to retrieve into given data array. + * @param buffer which comm buffer to retrieve data from + * @param data pointer to byte array to stuff data into + * @param len # of bytes to retrieve into given data array. * @return the number of bytes retrieved. *************************************************************************/ U32 peekFromCommBuffer( COMM_BUFFER_T buffer, U08 *data, U32 len ) @@ -313,7 +316,7 @@ * @details * Inputs : activeDoubleBuffer[], commBufferByteCount[] * Outputs : none - * @param buffer : which comm buffer to get byte count for + * @param buffer which comm buffer to get byte count for * @return the number of bytes in the given comm buffer. *************************************************************************/ U32 numberOfBytesInCommBuffer( COMM_BUFFER_T buffer ) @@ -326,14 +329,7 @@ U32 activeBuffer = activeDoubleBuffer[ buffer ]; U32 inactiveBuffer = GET_TOGGLE( activeBuffer, 0, 1 ); - if ( FALSE == bufferGetLock[ buffer ] ) - { - result = commBufferByteCount[ buffer ][ inactiveBuffer ] + commBufferByteCount[ buffer ][ activeBuffer ]; - } - else - { - result = commBufferByteCount[ buffer ][ inactiveBuffer ]; - } + result = commBufferByteCount[ buffer ][ inactiveBuffer ] + commBufferByteCount[ buffer ][ activeBuffer ]; } else // invalid buffer { @@ -352,7 +348,7 @@ * @details * Inputs : activeDoubleBuffer[] * Outputs : activeDoubleBuffer[], commBufferByteCount[] - * @param buffer : which comm buffer to switch double buffers on + * @param buffer which comm buffer to switch double buffers on * @return the new active buffer for the given buffer. *************************************************************************/ static U32 switchDoubleBuffer( COMM_BUFFER_T buffer ) @@ -377,9 +373,9 @@ * @details * Inputs : commBuffers[], activeDoubleBuffer[], commBufferByteCount[] * Outputs : commBuffers[], activeDoubleBuffer[], commBufferByteCount[] - * @param buffer : which comm buffer get data from - * @param data : pointer to byte array to populate with data - * @param len : # of bytes to get from comm buffer + * @param buffer which comm buffer get data from + * @param data pointer to byte array to populate with data + * @param len # of bytes to get from comm buffer * @return none *************************************************************************/ static void getDataFromInactiveBuffer( COMM_BUFFER_T buffer, U08 *data, U32 len ) Index: firmware/App/Services/FPGA.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/FPGA.c (.../FPGA.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/FPGA.c (.../FPGA.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -76,7 +76,9 @@ typedef struct { U08 fpgaId; ///< Reg 0. FPGA ID code. Checked against expected value at power up to verify basic FPGA communication and operation. - U08 fpgaRev; ///< Reg 1. FPGA revision being reported. + U08 fpgaRev; ///< Reg 1. FPGA revision being reported. + U08 fpgaRevLab; ///< Reg 2. FPGA lab rev number. + U08 fpgaRevMajor; ///< Reg 3. FPGA minor rev number. } FPGA_HEADER_T; // read only on FPGA typedef struct // TODO - add all sensor readings to this structure per FPGA register map @@ -215,7 +217,6 @@ * @details * Inputs : none * Outputs : FPGA module initialized. - * @param none * @return none *************************************************************************/ void initFPGA( void ) @@ -332,7 +333,6 @@ * @details * Inputs : none * Outputs : fpga comm flags & counters reset - * @param none * @return none *************************************************************************/ static void resetFPGACommFlags( void ) @@ -353,7 +353,6 @@ * @details * Inputs : none * Outputs : fpgaReceiptCounter - * @param none * @return none *************************************************************************/ void signalFPGAReceiptCompleted( void ) @@ -389,7 +388,6 @@ * @details * Inputs : none * Outputs : fpgaReceiptCounter - * @param none * @return none *************************************************************************/ void signalFPGATransmitCompleted( void ) @@ -403,7 +401,6 @@ * @details * Inputs : fpgaState * Outputs : fpgaState - * @param none * @return none *************************************************************************/ void execFPGAIn( void ) @@ -457,7 +454,6 @@ * @details * Inputs : fpgaState * Outputs : fpgaState - * @param none * @return none *************************************************************************/ void execFPGAOut( void ) @@ -499,7 +495,6 @@ * @details * Inputs : none * Outputs : read command sent to FPGA - * @param none * @return next FPGA state *************************************************************************/ static FPGA_STATE_T handleFPGAReadHeaderState( void ) @@ -532,7 +527,6 @@ * @details * Inputs : none * Outputs : header register values updated - * @param none * @return next FPGA state *************************************************************************/ static FPGA_STATE_T handleFPGAReceiveHeaderState( void ) @@ -585,7 +579,6 @@ * @details * Inputs : actuator set points * Outputs : actuator set points sent to FPGA - * @param none * @return next FPGA state *************************************************************************/ static FPGA_STATE_T handleFPGAWriteAllActuatorsState( void ) @@ -637,7 +630,6 @@ * @details * Inputs : none * Outputs : sensor values updated - * @param none * @return next FPGA state *************************************************************************/ static FPGA_STATE_T handleFPGAReceiveAllSensorsState( void ) @@ -695,7 +687,6 @@ * @details * Inputs : fpgaHeader * Outputs : none - * @param none * @return passed, or failed *************************************************************************/ SELF_TEST_STATUS_T execFPGATest( void ) @@ -727,7 +718,7 @@ * @details * Inputs : none * Outputs : # of bytes for next FPGA write command is set - * @param bytes2Transmit : # of bytes to be transmitted via DMA to the FPGA. + * @param bytes2Transmit number of bytes to be transmitted via DMA to the FPGA. * @return none *************************************************************************/ static void setupDMAForWriteCmd( U32 bytes2Transmit ) @@ -750,7 +741,6 @@ * @details * Inputs : none * Outputs : DMA write command to FPGA is initiated - * @param none * @return none *************************************************************************/ static void startDMAWriteCmd( void ) @@ -767,7 +757,7 @@ * @details * Inputs : none * Outputs : # of expected bytes for next FPGA write command response is set - * @param bytes2Receive : # of bytes expected to be transmitted via DMA from the FPGA. + * @param bytes2Receive number of bytes expected to be transmitted via DMA from the FPGA. * @return none *************************************************************************/ static void setupDMAForWriteResp( U32 bytes2Receive ) @@ -790,7 +780,6 @@ * @details * Inputs : none * Outputs : DMA write command response is ready to be received from the FPGA - * @param none * @return none *************************************************************************/ static void startDMAReceiptOfWriteResp( void ) @@ -807,7 +796,7 @@ * @details * Inputs : none * Outputs : # of bytes for next FPGA read command is set - * @param bytes2Transmit : # of bytes to be transmitted via DMA to the FPGA. + * @param bytes2Transmit number of bytes to be transmitted via DMA to the FPGA. * @return none *************************************************************************/ static void setupDMAForReadCmd( U32 bytes2Transmit ) @@ -830,7 +819,6 @@ * @details * Inputs : none * Outputs : DMA read command to FPGA is initiated - * @param none * @return none *************************************************************************/ static void startDMAReadCmd( void ) @@ -847,7 +835,7 @@ * @details * Inputs : none * Outputs : # of expected bytes for next FPGA read command response is set - * @param bytes2Receive : # of expected bytes to be transmitted via DMA from the FPGA. + * @param bytes2Receive number of expected bytes to be transmitted via DMA from the FPGA. * @return none *************************************************************************/ static void setupDMAForReadResp( U32 bytes2Receive ) @@ -870,7 +858,6 @@ * @details * Inputs : none * Outputs : DMA read command response is ready to be received from the FPGA - * @param none * @return none *************************************************************************/ static void startDMAReceiptOfReadResp( void ) @@ -887,7 +874,6 @@ * @details * Inputs : fpgaHeader * Outputs : none - * @param none * @return fpgaDiag *************************************************************************/ static void consumeUnexpectedData( void ) @@ -922,7 +908,7 @@ * @details * Inputs : none * Outputs : fpgaActuatorSetPoints.fpgaValveStates - * @param valveStates + * @param valveStates bit mask for the various valve states * @return none *************************************************************************/ void setFPGAValveStates( U16 valveStates ) @@ -937,7 +923,7 @@ * @details * Inputs : none * Outputs : fpgaActuatorSetPoints.fpgaDrainPumpSetSpeed - * @param drainPumpDAC + * @param drainPumpDAC DAC value to command for the drain pump * @return none *************************************************************************/ void setFPGADrainPumpSpeed( U08 drainPumpDAC ) @@ -955,7 +941,6 @@ * @details * Inputs : fpgaHeader * Outputs : none - * @param none * @return Id *************************************************************************/ U08 getFPGAId( void ) @@ -970,36 +955,35 @@ * @details * Inputs : fpgaHeader * Outputs : none - * @param none * @return Revision *************************************************************************/ U08 getFPGARev( void ) { return fpgaHeader.fpgaRev; } +/*********************************************************************//** + * @brief + * The getFPGAVersions function gets the FPGA version numbers. + * @details + * Inputs : fpgaHeader + * Outputs : none + * @return none + *************************************************************************/ +void getFPGAVersions( U08 *Id, U08 *Maj, U08 *Min, U08 *Lab ) +{ + *Id = fpgaHeader.fpgaId; + *Maj = fpgaHeader.fpgaRev; + *Min = fpgaHeader.fpgaRevMajor; + *Lab = fpgaHeader.fpgaRevLab; +} + /*********************************************************************//** * @brief - * The getFPGAStatus function gets the version read from the diagnostic register \n - * of the FPGA. - * @details - * Inputs : fpgaHeader - * Outputs : none - * @param none - * @return fpgaHeader.fpgaStatus - *************************************************************************/ -U16 getFPGAStatus( void ) -{ - return 0;//fpgaSensorReadings.fpgaStatus; -} - -/*********************************************************************//** - * @brief * The getFPGALoadCellA1 function gets the latest load cell A 1 reading. * @details * Inputs : fpgaSensorReadings * Outputs : none - * @param none * @return last load cell A 1 reading *************************************************************************/ U32 getFPGALoadCellA1( void ) @@ -1013,7 +997,6 @@ * @details * Inputs : fpgaSensorReadings * Outputs : none - * @param none * @return last load cell A 2 reading *************************************************************************/ U32 getFPGALoadCellA2( void ) @@ -1027,7 +1010,6 @@ * @details * Inputs : fpgaSensorReadings * Outputs : none - * @param none * @return last load cell B 1 reading *************************************************************************/ U32 getFPGALoadCellB1( void ) @@ -1041,7 +1023,6 @@ * @details * Inputs : fpgaSensorReadings * Outputs : none - * @param none * @return last load cell B 2 reading *************************************************************************/ U32 getFPGALoadCellB2( void ) @@ -1056,7 +1037,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaValveStates * Outputs : none - * @param none * @return last valve states reading *************************************************************************/ U16 getFPGAValveStates( void ) @@ -1070,7 +1050,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaROFlowRate * Outputs : none - * @param none * @return last RO flow rate reading *************************************************************************/ U16 getFPGAROPumpFlowRate( void ) @@ -1084,7 +1063,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaDrainPumpSpeed * Outputs : none - * @param none * @return last drain pump speed reading *************************************************************************/ U16 getFPGADrainPumpSpeed( void ) @@ -1099,7 +1077,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTPiTemp * Outputs : none - * @param none * @return last primary heater inlet temperature reading *************************************************************************/ U32 getFPGATPiTemp( void ) @@ -1114,7 +1091,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTPoTemp * Outputs : none - * @param none * @return last primary heater outlet temperature reading *************************************************************************/ U32 getFPGATPoTemp( void ) @@ -1129,7 +1105,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaCD1Temp * Outputs : none - * @param none * @return last conductivity sensor 1 outlet temperature reading *************************************************************************/ U32 getFPGACD1Temp( void ) @@ -1144,7 +1119,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaCD2Temp * Outputs : none - * @param none * @return last conductivity sensor 2 outlet temperature reading *************************************************************************/ U32 getFPGACD2Temp( void ) @@ -1159,7 +1133,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaRTDErrorCnt * Outputs : none - * @param none * @return Last error count of the RTD conductivity sensors *************************************************************************/ U08 getFPGARTDErrorCount( void ) @@ -1174,7 +1147,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaRTDReadCnt * Outputs : none - * @param none * @return Last read count of the RTC conductivity sensors *************************************************************************/ U08 getFPGARTDReadCount( void ) @@ -1189,7 +1161,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTHDoTemp * Outputs : none - * @param none * @return Last redundant sensor outlet temperature reading *************************************************************************/ U32 getFPGATHDoTemp( void ) @@ -1204,7 +1175,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTHDoErrorCnt * Outputs : none - * @param none * @return Last redundant sensor outlet temperature error count *************************************************************************/ U08 getFPGATHDoErrorCount( void ) @@ -1218,7 +1188,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTHDoReadCnt * Outputs : none - * @param none * @return Last redundant sensor outlet temperature error count reading *************************************************************************/ U08 getFPGATHDoReadCount( void ) @@ -1233,7 +1202,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTDiTemp * Outputs : none - * @param none * @return last primary heater outlet temperature reading *************************************************************************/ U32 getFPGATDiTemp( void ) @@ -1248,7 +1216,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTDiErrorCnt * Outputs : none - * @param none * @return Last dialysate inlet error count *************************************************************************/ U08 getFPGATDiErrorCount( void ) @@ -1263,7 +1230,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTDiReadCnt * Outputs : none - * @param none * @return Last dialysate inlet read count *************************************************************************/ U08 getFPGATDiReadCount( void ) @@ -1278,7 +1244,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaPrimaryHeaterIntTemp * Outputs : none - * @param none * @return last primary heater temperature reading *************************************************************************/ U16 getFPGAPrimaryHeaterTemp( void ) @@ -1293,7 +1258,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaPrimaryHeaterFlags * Outputs : none - * @param none * @return Last primary heater internal temperature sensor flag read *************************************************************************/ U08 getFPGAPrimaryHeaterFlags( void ) @@ -1308,7 +1272,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaPrimaryHeaterReadCnt * Outputs : none - * @param none * @return Last primary heater internal temperature sensor read count *************************************************************************/ U08 getFPGAPrimaryHeaterReadCount( void ) @@ -1323,7 +1286,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTrimmerHeaterIntTemp * Outputs : none - * @param none * @return last trimmer heater temperature reading *************************************************************************/ U16 getFPGATrimmerHeaterTemp( void ) @@ -1338,7 +1300,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTrimmerHeaterFlags * Outputs : none - * @param none * @return Last trimmer heater internal temperature flags read *************************************************************************/ U08 getFPGATrimmerHeaterFlags( void ) @@ -1353,7 +1314,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaTrimmerHeaterReadCnt * Outputs : none - * @param none * @return Last trimmer heater internal temperature read count *************************************************************************/ U08 getFPGATrimmerHeaterReadCount( void ) @@ -1368,7 +1328,6 @@ * @details * Inputs : fpgaSensorReadings.fpgaPrimaryHeaterIntJunctionTemp * Outputs : none - * @param none * @return Last primary cold junction temperature *************************************************************************/ U16 getFPGAPRimaryColdJunctionTemp ( void ) @@ -1383,14 +1342,69 @@ * @details * Inputs : fpgaSensorReadings.fpgaTrimmerHeaterIntJunctionTemp * Outputs : none - * @param none * @return Last trimmer cold junction temperature *************************************************************************/ U16 getFPGATrimmerColdJunctionTemp ( void ) { return fpgaSensorReadings.fpgaTrimmerHeaterIntJunctionTemp; +} + +/*********************************************************************//** + * @brief + * The getFPGAAccelAxes function gets the accelerometer axis readings. \n + * Axis readings are in ADC counts. 0.004 g per LSB. + * @details + * Inputs : fpgaSensorReadings + * Outputs : none + * @param x Populate this param with X axis reading + * @param y Populate this param with Y axis reading + * @param z Populate this param with Z axis reading + * @return none + *************************************************************************/ +void getFPGAAccelAxes( S16 *x, S16 *y, S16 *z ) +{ + *x = (S16)fpgaSensorReadings.accelX; + *y = (S16)fpgaSensorReadings.accelY; + *z = (S16)fpgaSensorReadings.accelZ; } +/*********************************************************************//** + * @brief + * The getFPGAAccelMaxes function gets the maximum accelerometer axis readings. \n + * from last FPGA read (every 10ms). \n + * Axis readings are in ADC counts. 0.004 g per LSB. + * @details + * Inputs : fpgaSensorReadings + * Outputs : none + * @param x Populate this param with maximum X axis reading + * @param y Populate this param with maximum Y axis reading + * @param z Populate this param with maximum Z axis reading + * @return none + *************************************************************************/ +void getFPGAAccelMaxes( S16 *xmax, S16*ymax, S16*zmax ) +{ + *xmax = (S16)fpgaSensorReadings.accelXMax; + *ymax = (S16)fpgaSensorReadings.accelYMax; + *zmax = (S16)fpgaSensorReadings.accelZMax; +} + +/*********************************************************************//** + * @brief + * The getFPGAAccelStatus function gets the accelerometer reading count \n + * and error register values. + * @details + * Inputs : fpgaSensorReadings + * Outputs : none + * @param cnt Populate this param with latest sample counter value + * @param err Populate this param with latest error + * @return none + *************************************************************************/ +void getFPGAAccelStatus( U16 *cnt, U16 *err ) +{ + *cnt = fpgaSensorReadings.accelSampleCounter; + *err = fpgaSensorReadings.accelFaultRegister; +} + /************************************************************************* * @brief * The getFPGACPiReadCount function gets inlet water conductivity sensor Index: firmware/App/Services/FPGA.h =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/FPGA.h (.../FPGA.h) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/FPGA.h (.../FPGA.h) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -36,7 +36,7 @@ void setFPGAValveStates( U16 valveStates ); void setFPGADrainPumpSpeed( U08 drainPumpDAC ); -U16 getFPGAStatus( void ); +void getFPGAVersions( U08 *Id, U08 *Maj, U08 *Min, U08 *Lab ); U16 getFPGAValveStates( void ); U16 getFPGAROPumpFlowRate( void ); U16 getFPGADrainPumpSpeed( void ); @@ -85,4 +85,8 @@ U08 getFPGACPoErrorCount ( void ); U32 getFPGACPo ( void ); +void getFPGAAccelAxes( S16 *x, S16 *y, S16 *z ); +void getFPGAAccelMaxes( S16 *xm, S16*ym, S16*zm ); +void getFPGAAccelStatus( U16 *cnt, U16 *accelFPGAFaultReg ); + #endif Index: firmware/App/Services/MessagePayloads.h =================================================================== diff -u -ra0504d43ac65e7c97adfb92004b45d72d61be5e4 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision a0504d43ac65e7c97adfb92004b45d72d61be5e4) +++ firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -81,6 +81,12 @@ typedef struct { + F32 cpi; + F32 cpo; +} CONDUCTIVITY_DATA_T; + +typedef struct +{ U32 activeReservoir; U32 fillToVolumeMl; U32 drainToVolumeMl; Index: firmware/App/Services/MsgQueues.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -36,7 +36,6 @@ * @details * Inputs : none * Outputs : none - * @param none * @return none *************************************************************************/ void initMsgQueues( void ) @@ -63,8 +62,8 @@ * @details * Inputs : none * Outputs : message added to queue - * @param queue : the message queue to add to - * @param msg : a pointer to a message structure to add to the queue + * @param queue the message queue to add to + * @param msg a pointer to a message structure to add to the queue * @return TRUE if message added to queue, FALSE if could not *************************************************************************/ BOOL addToMsgQueue( MSG_QUEUE_T queue, MESSAGE_WRAPPER_T *msg ) @@ -104,8 +103,8 @@ * @details * Inputs : queue * Outputs : message retrieved from the queue - * @param queue : the message queue to retrieve from - * @param msg : a pointer to a message structure to populate with the retrieved \n + * @param queue the message queue to retrieve from + * @param msg a pointer to a message structure to populate with the retrieved \n * message. * @return TRUE if a message was found to retrieve, FALSE if not *************************************************************************/ @@ -145,7 +144,7 @@ * @details * Inputs : none * Outputs : none - * @param queue : the message queue to check + * @param queue the message queue to check * @return TRUE if a given message queue is empty, FALSE if not *************************************************************************/ BOOL isMsgQueueEmpty( MSG_QUEUE_T queue ) @@ -174,7 +173,7 @@ * @details * Inputs : none * Outputs : none - * @param queue : the message queue to check + * @param queue the message queue to check * @return TRUE if the given message queue is full, FALSE if not *************************************************************************/ BOOL isMsgQueueFull( MSG_QUEUE_T queue ) @@ -203,7 +202,7 @@ * @details * Inputs : none * Outputs : none - * @param message : Pointer to the message to blank. + * @param message Pointer to the message to blank * @return none *************************************************************************/ void blankMessage( MESSAGE_T *message ) @@ -225,7 +224,7 @@ * @details * Inputs : none * Outputs : none - * @param message : Pointer to the message in a wrapper to blank. + * @param message Pointer to the message in a wrapper to blank * @return none *************************************************************************/ void blankMessageInWrapper( MESSAGE_WRAPPER_T *message ) Index: firmware/App/Services/PIControllers.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -15,9 +15,7 @@ * ***************************************************************************/ -#ifndef _VECTORCAST_ - #include "math.h" -#endif +#include "math.h" #include "SystemCommMessages.h" #include "PIControllers.h" @@ -54,7 +52,6 @@ /// PI Controllers -- initial configurations. static PI_CONTROLLER_T piControllers[ NUM_OF_PI_CONTROLLERS_IDS ] = { // Kp Ki uMax uMin ref meas err esw esum ctrl - { 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }, // PI_CONTROLLER_ID_RO_PUMP { 0.0, 0.0, 0.89, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }, // PI_CONTROLLER_ID_PRIMARY_HEATER { 0.0, 0.0, 0.50, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 } // PI_CONTROLLER_ID_TRIMMER_HEATER @@ -65,12 +62,12 @@ * Initialize controller before operation. Make sure to call it before * first call to runController function. * - * @param controllerID - ID filter number - * @param initialControlSignal - Value of the output on the first iteration - * @param kP - Coefficient for proportional. - * @param kI - Coefficient for integral. - * @param controlMin - Minimum control output. - * @param controlMax - Maximum control output. + * @param controllerID ID filter number + * @param initialControlSignal Value of the output on the first iteration + * @param kP Coefficient for proportional + * @param kI Coefficient for integral + * @param controlMin Minimum control output + * @param controlMax Maximum control output * * @return none *************************************************************************/ @@ -107,8 +104,8 @@ * Reset controller before new set point. Make sure to call it before first * call to runController function. * - * @param controllerID - ID filter number - * @param initialControlSignal - Value of the output on the first iteration + * @param controllerID ID filter number + * @param initialControlSignal Value of the output on the first iteration * * @return none *************************************************************************/ @@ -136,9 +133,9 @@ * @brief * Call this function whenever a new measured signal sampled is acquired. * - * @param controllerID - ID filter number - * @param referenceSignal - reference signal value - * @param measuredSignal - latest measured sample + * @param controllerID ID filter number + * @param referenceSignal reference signal value + * @param measuredSignal latest measured sample * * @return value of the control signal *************************************************************************/ @@ -184,8 +181,8 @@ * @brief * Returns the latest requested signal sample. * - * @param controllerID - ID filter number - * @param signalID - signal sample ID request + * @param controllerID ID filter number + * @param signalID signal sample ID request * * @return latest sample requested *************************************************************************/ Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 8c3db9c2d3957a1a9d53ad5d20d9594a09bc21be) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -28,31 +28,38 @@ #include "Utilities.h" #include "SystemCommMessages.h" +/** + * @addtogroup SystemComm + * @{ + */ + // ********** private definitions ********** -#define NUM_OF_CAN_OUT_BUFFERS 4 // # of CAN buffers for transmit -#define NUM_OF_CAN_IN_BUFFERS 6 // # of CAN buffers for receiving +#define NUM_OF_CAN_OUT_BUFFERS 5 ///< Number of CAN buffers for transmit +#define NUM_OF_CAN_IN_BUFFERS 6 ///< Number of CAN buffers for receiving #ifndef DEBUG_ENABLED - #define NUM_OF_MSG_IN_BUFFERS 6 // # of Msg buffers for receiving + #define NUM_OF_MSG_IN_BUFFERS 6 ///< Number of Msg buffers for receiving #else - #define NUM_OF_MSG_IN_BUFFERS 7 // # of Msg buffers for receiving - 1 is UART + #define NUM_OF_MSG_IN_BUFFERS 7 #define SCI1_RECEIVE_DMA_REQUEST 30 #define SCI1_TRANSMIT_DMA_REQUEST 31 #endif #define CAN_XMIT_PACKET_TIMEOUT_MS 200 ///< if transmitted CAN frame does not cause a transmit complete interrupt within this time, re-send or move on +#define MAX_XMIT_RETRIES 5 ///< maximum number of retries on no transmit complete interrupt timeout -#define HD_COMM_TIMEOUT_IN_MS 2000 +#define HD_COMM_TIMEOUT_IN_MS 2000 ///< HD has not sent any broadcast messages for this much time -#define MAX_COMM_CRC_FAILURES 5 -#define MAX_COMM_CRC_FAILURE_WINDOW_MS (10 * SEC_PER_MIN * MS_PER_SECOND) +#define MAX_COMM_CRC_FAILURES 5 ///< maximum number of CRC errors within window period before alarm +#define MAX_COMM_CRC_FAILURE_WINDOW_MS (10 * SEC_PER_MIN * MS_PER_SECOND) ///< CRC error window -#define MSG_NOT_ACKED_TIMEOUT_MS ( MS_PER_SECOND * 1 ) -#define MSG_NOT_ACKED_MAX_RETRIES 3 -#define PENDING_ACK_LIST_SIZE 25 +#define MSG_NOT_ACKED_TIMEOUT_MS ( MS_PER_SECOND * 1 ) ///< maximum time for a Denali message that requires ACK to be ACK'd +#define MSG_NOT_ACKED_MAX_RETRIES 3 ///< maximum number of times a message that requires ACK that was not ACK'd can be re-sent before alarm +#define PENDING_ACK_LIST_SIZE 25 ///< maximum number of Delanli messages that can be pending ACK at any given time #pragma pack(push, 1) - + +/// Record for transmitted message that is pending acknowledgement from receiver. typedef struct { BOOL used; @@ -67,15 +74,18 @@ #pragma pack(pop) // ********** private data ********** - + +/// Array of out-going CAN buffers. const COMM_BUFFER_T CAN_OUT_BUFFERS[ NUM_OF_CAN_OUT_BUFFERS ] = { COMM_BUFFER_OUT_CAN_DG_ALARM, COMM_BUFFER_OUT_CAN_DG_2_HD, - COMM_BUFFER_OUT_CAN_DG_BROADCAST, - COMM_BUFFER_OUT_CAN_PC + COMM_BUFFER_OUT_CAN_DG_BROADCAST, + COMM_BUFFER_OUT_CAN_PC, + COMM_BUFFER_OUT_CAN_DG_2_UI }; - + +/// Array of in-coming CAN buffers. const COMM_BUFFER_T MSG_IN_BUFFERS[ NUM_OF_MSG_IN_BUFFERS ] = { COMM_BUFFER_IN_CAN_HD_ALARM, @@ -88,39 +98,31 @@ COMM_BUFFER_IN_UART_PC #endif }; + +static U08 lastCANPacketSent[ CAN_MESSAGE_PAYLOAD_SIZE ]; ///< Keep last packet sent on CAN bus in case we need to re-send. +static CAN_MESSAGE_BOX_T lastCANPacketSentChannel = (CAN_MESSAGE_BOX_T)0; ///< Keep channel last packet was sent on CAN bus in case we need to re-send. +static U32 lastCANPacketSentTimeStamp = 0; ///< Keep time last packet sent on CAN bus so we can timeout on transmission attempt. -static U08 lastCANPacketSent[ CAN_MESSAGE_PAYLOAD_SIZE ]; -static CAN_MESSAGE_BOX_T lastCANPacketSentChannel = (CAN_MESSAGE_BOX_T)0; -static U32 lastCANPacketSentTimeStamp = 0; +static PENDING_ACK_RECORD_T pendingAckList[ PENDING_ACK_LIST_SIZE ]; ///< list of outgoing messages that are awaiting an ACK -#ifdef DEBUG_ENABLED -static U08 pcXmitPacket[ 1024 ]; -static U08 pcRecvPacket[ PC_MESSAGE_PACKET_SIZE ] = { 0, 0, 0, 0, 0, 0, 0, 0 }; -#endif +static volatile BOOL dgIsOnlyCANNode = TRUE; ///< flag indicating whether DG is alone on CAN bus. +static U32 canXmitRetryCtr = 0; ///< counter for CAN transmit retries. +static volatile BOOL hdIsCommunicating = FALSE; ///< has HD sent a message since last check +static volatile U32 timeOfLastHDCheckIn = 0; ///< last time we received an HD broadcast -static PENDING_ACK_RECORD_T pendingAckList[ PENDING_ACK_LIST_SIZE ]; // list of outgoing messages that are awaiting an ACK - -// DMA control records -static g_dmaCTRL pcDMAXmitControlRecord; // DMA transmit control record (UART-debug) -static g_dmaCTRL pcDMARecvControlRecord; // DMA receive control record (UART-debug) - -static volatile BOOL hdIsCommunicating = FALSE; // has HD sent a message since last check -static volatile U32 timeOfLastHDCheckIn = 0; // last time we received an HD broadcast - -static U32 badCRCTimeStamps[ MAX_COMM_CRC_FAILURES ]; // time of last five bad message CRCs (wrapping list) -static U32 badCRCListIdx = 0; // where next bad message CRC time stamp will go in list -static U32 badCRCListCount = 0; // # of bad CRCs in the list - +#ifdef DEBUG_ENABLED + // debug buffers + static U08 pcXmitPacket[ 1024 ]; + static U08 pcRecvPacket[ PC_MESSAGE_PACKET_SIZE ] = { 0, 0, 0, 0, 0, 0, 0, 0 }; + // DMA control records + static g_dmaCTRL pcDMAXmitControlRecord; + static g_dmaCTRL pcDMARecvControlRecord; +#endif + // ********** private function prototypes ********** -#ifdef DEBUG_ENABLED - static void initUARTAndDMA( void ); - static U32 transmitNextUARTPacket( void ); -#endif +static void clearCANXmitBuffers( void ); -static BOOL isCANBoxForXmit( CAN_MESSAGE_BOX_T srcCANBox ); -static BOOL isCANBoxForRecv( CAN_MESSAGE_BOX_T srcCANBox ); - static COMM_BUFFER_T findNextHighestPriorityCANPacketToTransmit( void ); static U32 transmitNextCANPacket( void ); @@ -136,13 +138,17 @@ static BOOL matchACKtoPendingACKList( S16 seqNo ); static void checkPendingACKList( void ); -/************************************************************************* - * @brief initSystemComm +#ifdef DEBUG_ENABLED + static void initUARTAndDMA( void ); + static U32 transmitNextUARTPacket( void ); +#endif + +/*********************************************************************//** + * @brief * The initSystemComm function initializes the SystemComm module. * @details * Inputs : none * Outputs : SystemComm module initialized. - * @param none * @return none *************************************************************************/ void initSystemComm( void ) @@ -154,45 +160,50 @@ initUARTAndDMA(); #endif - // initialize bad message CRC list - for ( i = 0; i < MAX_COMM_CRC_FAILURES; i++ ) - { - badCRCTimeStamps[ i ] = 0; - } - + // initialize bad message CRC time windowed count + initTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC, MAX_COMM_CRC_FAILURES, MAX_COMM_CRC_FAILURE_WINDOW_MS ); + // initialize pending ACK list for ( i = 0; i < PENDING_ACK_LIST_SIZE; i++ ) { pendingAckList[ i ].used = FALSE; } } -/************************************************************************* +/*********************************************************************//** * @brief * The isHDCommunicating function determines whether the HD is communicating \n * with the DG. * @details * Inputs : hdIsCommunicating * Outputs : none - * @param none * @return TRUE if HD has broadcast since last call, FALSE if not *************************************************************************/ BOOL isHDCommunicating( void ) { - BOOL result = hdIsCommunicating; - - hdIsCommunicating = FALSE; - - return result; + return hdIsCommunicating; +} + +/*********************************************************************//** + * @brief + * The isDGOnlyCANNode function determines whether the DG is the only node \n + * currently on the CAN bus. + * @details + * Inputs : dgIsOnlyCANNode + * Outputs : none + * @return TRUE if DG is only node on CAN bus, FALSE if not + *************************************************************************/ +BOOL isDGOnlyCANNode( void ) +{ + return dgIsOnlyCANNode; } -/************************************************************************* - * @brief execSystemCommRx +/*********************************************************************//** + * @brief * The execSystemCommRx function manages received data from other sub-systems. * @details * Inputs : none - * Outputs : none - * @param none + * Outputs : Incoming frames processed. * @return none *************************************************************************/ void execSystemCommRx( void ) @@ -210,32 +221,63 @@ checkPendingACKList(); } -/************************************************************************* - * @brief execSystemCommTx +/*********************************************************************//** + * @brief * The execSystemCommTx function manages data to be transmitted to other \n * sub-systems. * @details * Inputs : none - * Outputs : none - * @param none + * Outputs : Next outgoing frame transmitted. * @return none *************************************************************************/ void execSystemCommTx( void ) -{ - // if CAN transmitter is idle, start transmitting any pending packets - if ( FALSE == isCAN1TransmitInProgress() ) - { - transmitNextCANPacket(); - } - else - { // generally, transmitter should not be busy at time of this function call - check timeout just in case so we don't get stuck waiting forever - if ( TRUE == didTimeout( lastCANPacketSentTimeStamp, CAN_XMIT_PACKET_TIMEOUT_MS ) ) - { - // TODO - depending on why we timed out, we may need to reset CAN controller??? - // assume last packet was not successfully transmitted. TODO - Re-send last packet? Or should we move on? - canTransmit( canREG1, lastCANPacketSentChannel, lastCANPacketSent ); - } - } +{ + // don't bother with transmitting if no other nodes on CAN bus + if ( FALSE == dgIsOnlyCANNode ) + { + // if CAN transmitter is idle, start transmitting any pending packets + if ( FALSE == isCAN1TransmitInProgress() ) + { + transmitNextCANPacket(); + } + else + { + // generally, transmitter should not be busy at time of this function call - check timeout just in case so we don't get stuck waiting forever + if ( TRUE == didTimeout( lastCANPacketSentTimeStamp, CAN_XMIT_PACKET_TIMEOUT_MS ) ) + { + // assume last packet was not successfully transmitted. Re-send last packet. + if ( ++canXmitRetryCtr <= MAX_XMIT_RETRIES ) + { + // ensure we have a previous CAN packet/channel to resend - canTransmit() channel param MUST be valid + if ( ( lastCANPacketSentChannel > COMM_BUFFER_NOT_USED ) && ( lastCANPacketSentChannel <= COMM_BUFFER_LAST_CAN_BUFFER ) ) + { + canTransmit( canREG1, lastCANPacketSentChannel, lastCANPacketSent ); + } +#ifdef DEBUG_ENABLED + { + char debugStr[100]; + strcpy( debugStr, "SystemComm-DG resend Last Frame.\n" ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + sendDebugDataToUI( (U08*)debugStr ); + } +#endif + } + // we must be only node on CAN bus - nobody is ACKing our transmitted frames + else + { + dgIsOnlyCANNode = TRUE; // set only CAN node flag + canXmitRetryCtr = MAX_XMIT_RETRIES; + signalCANXmitsCompleted(); // clear pending xmit flag + clearCANXmitBuffers(); // clear xmit buffers - nothing is going out right now +#ifdef DEBUG_ENABLED + char debugStr[100]; + strcpy( debugStr, "SystemComm-DG is only node.\n" ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif + } // end - are we retrying xmit or are we alone on CAN bus + } // end - pending xmit timeout? + } // end - transmit in progress or not + } // end - DG not alone on CAN bus #ifdef DEBUG_ENABLED // if UART transmitter is idle, start transmitting any pending packets @@ -246,16 +288,16 @@ #endif } -/************************************************************************* - * @brief handleCANMsgInterrupt +/*********************************************************************//** + * @brief * The handleCANMsgInterrupt function handles a CAN message interrupt. \n * This may have occurred because a CAN packet transmission has completed \n * or because a CAN packet has been received. The appropriate handler is \n * called. * @details * Inputs : none * Outputs : message interrupt handled - * @param srcCANBox : which CAN message box triggered this interrupt + * @param srcCANBox which CAN message box triggered this interrupt * @return none *************************************************************************/ void handleCANMsgInterrupt( CAN_MESSAGE_BOX_T srcCANBox ) @@ -294,14 +336,13 @@ } } -/************************************************************************* - * @brief handleUARTMsgRecvPacketInterrupt +/*********************************************************************//** + * @brief * The handleUARTMsgRecvPacketInterrupt function handles a DMA UART receive \n * packet completed interrupt. * @details * Inputs : none * Outputs : none - * @param none * @return none *************************************************************************/ #ifdef DEBUG_ENABLED @@ -316,14 +357,13 @@ } #endif -/************************************************************************* - * @brief handleUARTMsgXmitPacketInterrupt +/*********************************************************************//** + * @brief * The handleUARTMsgXmitPacketInterrupt function handles a DMA UART transmit \n * packet completed interrupt. * @details * Inputs : none * Outputs : none - * @param none * @return none *************************************************************************/ #ifdef DEBUG_ENABLED @@ -338,14 +378,13 @@ } #endif -/************************************************************************* - * @brief initUARTAndDMA +/*********************************************************************//** + * @brief * The initUARTAndDMA function initializes the SCI1 peripheral and the DMA \n * to go with it for PC communication. * @details * Inputs : none * Outputs : SCI1 and DMA initialized - * @param none * @return none *************************************************************************/ #ifdef DEBUG_ENABLED @@ -404,17 +443,17 @@ } #endif -/************************************************************************* - * @brief isCANBoxForXmit +/*********************************************************************//** + * @brief * The isCANBoxForXmit function determines whether a given CAN message box \n * is configured for transmit. * @details * Inputs : CAN_OUT_BUFFERS[] * Outputs : none - * @param srcCANBox : which CAN message box to check + * @param srcCANBox which CAN message box to check * @return TRUE if the given CAN message box is configured for transmit, FALSE if not. *************************************************************************/ -static BOOL isCANBoxForXmit( CAN_MESSAGE_BOX_T srcCANBox ) +BOOL isCANBoxForXmit( CAN_MESSAGE_BOX_T srcCANBox ) { BOOL result = FALSE; U32 i; @@ -431,17 +470,17 @@ return result; } -/************************************************************************* - * @brief isCANBoxForRecv +/*********************************************************************//** + * @brief * The isCANBoxForRecv function determines whether a given CAN message box \n * is configured for receiving. * @details * Inputs : MSG_IN_BUFFERS[] * Outputs : none - * @param srcCANBox : which CAN message box to check + * @param srcCANBox which CAN message box to check * @return TRUE if the given CAN message box is configured for receiving, FALSE if not. *************************************************************************/ -static BOOL isCANBoxForRecv( CAN_MESSAGE_BOX_T srcCANBox ) +BOOL isCANBoxForRecv( CAN_MESSAGE_BOX_T srcCANBox ) { BOOL result = FALSE; U32 i; @@ -456,6 +495,24 @@ } return result; +} + +/*********************************************************************//** + * @brief + * The clearCANXmitBuffers function clears all CAN transmit buffers. + * @details + * Inputs : CAN_OUT_BUFFERS[] + * Outputs : CAN transmit buffers cleared. + * @return none + *************************************************************************/ +static void clearCANXmitBuffers( void ) +{ + U32 i; + + for ( i = 0; i < NUM_OF_CAN_OUT_BUFFERS; i++ ) + { + clearBuffer( CAN_OUT_BUFFERS[ i ] ); + } } @@ -464,14 +521,13 @@ *************************************************************************/ -/************************************************************************* - * @brief findNextHighestPriorityCANPacketToTransmit +/*********************************************************************//** + * @brief * The findNextHighestPriorityCANPacketToTransmit function gets the next \n * 8 byte packet and initiates a CAN transmit on the appropriate CAN channel. \n * @details * Inputs : Output CAN Comm Buffer(s) * Outputs : none - * @param msg : none * @return buffer with highest priority CAN packet to transmit, \n * COMM_BUFFER_NOT_USED if not CAN packets pending transmit found *************************************************************************/ @@ -493,14 +549,13 @@ return result; } -/************************************************************************* - * @brief transmitNextCANPacket +/*********************************************************************//** + * @brief * The transmitNextCANPacket function gets the next 8 byte packet and initiates \n * a CAN transmit on the appropriate CAN channel. * @details * Inputs : Output CAN Comm Buffers * Outputs : CAN packet transmit initiated. - * @param msg : none * @return # of bytes transmitted *************************************************************************/ static U32 transmitNextCANPacket( void ) @@ -544,14 +599,13 @@ return result; } -/************************************************************************* - * @brief transmitNextUARTPacket +/*********************************************************************//** + * @brief * The transmitNextUARTPacket function sets up and initiates a DMA transmit \n * of the next packet pending transmit (if any) via UART. * @details * Inputs : Output UART Comm Buffer(s) * Outputs : UART DMA transmit initiated. - * @param msg : none * @return # of bytes transmitted *************************************************************************/ #ifdef DEBUG_ENABLED @@ -585,14 +639,13 @@ *************************************************************************/ -/************************************************************************* - * @brief processIncomingData +/*********************************************************************//** + * @brief * The processIncomingData function parses out messages from the Input \n * Comm Buffers and adds them to the Received Message Queue. * @details * Inputs : Input Comm Buffers * Outputs : Parsed message(s) added to Received Message Queue - * @param msg : none * @return none *************************************************************************/ static void processIncomingData( void ) @@ -622,6 +675,9 @@ U32 bytesPeeked = peekFromCommBuffer( MSG_IN_BUFFERS[ i ], data, MIN( numOfBytesInBuffer, sizeof( MESSAGE_WRAPPER_T ) + 1 ) ); S32 msgSize = parseMessageFromBuffer( data, bytesPeeked ); + dgIsOnlyCANNode = FALSE; // if we're getting a message, we can't be alone + canXmitRetryCtr = 0; + if ( msgSize > 0 ) // valid, complete message found? { MESSAGE_WRAPPER_T rcvMsg; @@ -646,7 +702,7 @@ // if message from HD broadcast channel, update HD comm status if ( COMM_BUFFER_IN_CAN_HD_BROADCAST == MSG_IN_BUFFERS[ i ] ) { - hdIsCommunicating = TRUE; + hdIsCommunicating = TRUE; timeOfLastHDCheckIn = getMSTimerCount(); } } @@ -667,14 +723,14 @@ } } -/************************************************************************* - * @brief consumeBufferPaddingBeforeSync +/*********************************************************************//** + * @brief * The consumeBufferPaddingBeforeSync function removes any bytes in a given \n * buffer that lie before a sync byte. * @details * Inputs : none - * Outputs : none - * @param msg : buffer : the comm buffer to process + * Outputs : Any padding at front of comm buffer is consumed. + * @param buffer the comm buffer to process * @return none *************************************************************************/ static void consumeBufferPaddingBeforeSync( COMM_BUFFER_T buffer ) @@ -698,15 +754,15 @@ } } -/************************************************************************* - * @brief parseMessageFromBuffer +/*********************************************************************//** + * @brief * The parseMessageFromBuffer function looks for a complete message in a \n * given buffer. If a message is found, its size is returned. * @details * Inputs : none - * Outputs : none - * @param data : pointer to byte array to search for a message - * @param len : # of bytes in the data to search + * Outputs : If a complete message can be found in buffer contents, it is parsed out. + * @param data pointer to byte array to search for a message + * @param len # of bytes in the data to search * @return size of message if found, zero if no complete message found, \n * -1 if message found but CRC fails. *************************************************************************/ @@ -750,14 +806,13 @@ return result; } -/************************************************************************* - * @brief processReceivedMessages +/*********************************************************************//** + * @brief * The processReceivedMessages function processes any messages in the \n * received message queues. * @details * Inputs : Received Message Queues * Outputs : Message(s) processed. - * @param msg : none * @return none *************************************************************************/ static void processReceivedMessages( void ) @@ -797,14 +852,13 @@ } } -/************************************************************************* - * @brief checkForCommTimeouts +/*********************************************************************//** + * @brief * The checkForCommTimeouts function checks for sub-system communication \n * timeout errors. * @details * Inputs : timeOfLastDGCheckIn, timeOfLastUICheckIn * Outputs : possibly a comm t/o alarm - * @param none * @return none *************************************************************************/ static void checkForCommTimeouts( void ) @@ -818,8 +872,8 @@ } } -/************************************************************************* - * @brief checkTooManyBadMsgCRCs +/*********************************************************************//** + * @brief * The checkTooManyBadMsgCRCs function checks for too many bad message CRCs \n * within a set period of time. Assumed function is being called when a new \n * bad CRC is detected so a new bad CRC will be added to the list. @@ -829,34 +883,32 @@ * @return none *************************************************************************/ static void checkTooManyBadMsgCRCs( void ) -{ - U32 listTimeInMS; - - // replace oldest bad CRC in list with this new one - badCRCTimeStamps[ badCRCListIdx ] = getMSTimerCount(); - // move list index to next position (may wrap) - badCRCListIdx = INC_WRAP( badCRCListIdx, 0, MAX_COMM_CRC_FAILURES - 1 ); - // update list count - badCRCListCount = INC_CAP( badCRCListCount, MAX_COMM_CRC_FAILURES ); - // check if too many bad CRCs in window of time - listTimeInMS = calcTimeSince( badCRCTimeStamps[ badCRCListIdx ] ); - if ( ( badCRCListCount >= MAX_COMM_CRC_FAILURES ) && ( listTimeInMS <= MAX_COMM_CRC_FAILURE_WINDOW_MS ) ) - { - activateAlarmNoData( ALARM_ID_COMM_TOO_MANY_BAD_CRCS ); +{ + if ( TRUE == incTimeWindowedCount( TIME_WINDOWED_COUNT_BAD_MSG_CRC ) ) + { + SET_ALARM_WITH_1_U32_DATA( ALARM_ID_COMM_TOO_MANY_BAD_CRCS, 2 ); // 2 for DG } +#ifdef DEBUG_ENABLED + { + char debugStr[100]; + + strcpy( debugStr, "SystemComm-DG-Bad Msg CRC.\n" ); + sendDebugDataToUI( (U08*)debugStr ); + } +#endif } -/************************************************************************* - * @brief addMsgToPendingACKList +/*********************************************************************//** + * @brief * The addMsgToPendingACKList function adds a given message to the pending \n * ACK list. Messages in this list will require receipt of an ACK message \n * for this particular message within a limited time. * @details * Inputs : pendingAckList[] * Outputs : pendingAckList[] - * @param msg : pointer to msg within the message data - * @param msgData : pointer to message data to add to pending ACK list - * @param len : # of bytes of message data + * @param msg pointer to msg within the message data + * @param msgData pointer to message data to add to pending ACK list + * @param len # of bytes of message data * @return TRUE if message added successfully, FALSE if not *************************************************************************/ BOOL addMsgToPendingACKList( MESSAGE_T *msg, COMM_BUFFER_T channel, U08 *msgData, U32 len ) @@ -892,15 +944,15 @@ return result; } -/************************************************************************* - * @brief matchACKtoPendingACKList +/*********************************************************************//** + * @brief * The matchACKtoPendingACKList function searches the pending ACK list to \n * see if the sequence # from a received ACK msg matches any. If found, \n * the list entry is removed. * @details * Inputs : pendingAckList[] * Outputs : pendingAckList[] - * @param seqNo : sequence # to match to an entry in the list + * @param seqNo sequence # to match to an entry in the list * @return TRUE if a match was found, FALSE if not *************************************************************************/ static BOOL matchACKtoPendingACKList( S16 seqNo ) @@ -922,15 +974,14 @@ return result; } -/************************************************************************* - * @brief checkPendingACKList +/*********************************************************************//** + * @brief * The checkPendingACKList function searches the pending ACK list to \n * see if any have expired. Any such messages will be queued for retransmission \n * and if max retries reached a fault is triggered. * @details * Inputs : pendingAckList[] * Outputs : pendingAckList[] - * @param none * @return none *************************************************************************/ static void checkPendingACKList( void ) @@ -939,33 +990,35 @@ // find expired messages pending ACK for ( i = 0; i < PENDING_ACK_LIST_SIZE; i++ ) - { + { // pending ACK expired? if ( ( TRUE == pendingAckList[ i ].used ) && ( TRUE == didTimeout( pendingAckList[ i ].timeStamp, MSG_NOT_ACKED_TIMEOUT_MS ) ) ) - { + { // if retries left, reset and resend pending message if ( pendingAckList[ i ].retries > 0 ) { // re-queue message for transmit pendingAckList[ i ].retries--; pendingAckList[ i ].timeStamp = getMSTimerCount(); addToCommBuffer( pendingAckList[ i ].channel, pendingAckList[ i ].msg, pendingAckList[ i ].msgSize ); - } + } + // if no retries left, alarm else { U16 msgID; memcpy( &msgID, &pendingAckList[ i ].msg[ sizeof( U08 ) + sizeof( U16) ], sizeof( U16 ) ); - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_CAN_MESSAGE_NOT_ACKED, (U32)msgID ); + SET_ALARM_WITH_1_U32_DATA( ALARM_ID_CAN_MESSAGE_NOT_ACKED, (U32)msgID ); + pendingAckList[ i ].used = FALSE; // take pending message off of list } } } } -/************************************************************************* - * @brief processReceivedMessage +/*********************************************************************//** + * @brief * The processReceivedMessage function processes a given message. * @details * Inputs : none * Outputs : message processed - * @param message : pointer to message to process + * @param message pointer to message to process * @return none *************************************************************************/ static void processReceivedMessage( MESSAGE_T *message ) @@ -1109,10 +1162,27 @@ handleTestSetConductivityDataPublishIntervalOverrideRequest ( message ); break; + case MSG_ID_DG_ACCEL_OVERRIDE: + handleTestDGAccelOverrideRequest( message ); + break; + + case MSG_ID_DG_ACCEL_MAX_OVERRIDE: + handleTestDGAccelMaxOverrideRequest( message ); + break; + + case MSG_ID_DG_ACCEL_SEND_INTERVAL_OVERRIDE: + handleTestDGAccelBroadcastIntervalOverrideRequest( message ); + break; + + case MSG_ID_DG_ACCEL_SET_CALIBRATION: + handleSetAccelCalibration( message ); + break; + default: // TODO - unrecognized message ID received - ignore break; } } } - + +/**@}*/ Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -17,13 +17,17 @@ #include // for memcpy() -#include "ConductivitySensors.h" -#include "DrainPump.h" +#include "Accel.h" +#include "ConductivitySensors.h" +#include "DrainPump.h" +#include "FPGA.h" #include "Heaters.h" #include "LoadCell.h" -#include "MsgQueues.h" +#include "MessagePayloads.h" #include "ModeStandby.h" #include "ModeRecirculate.h" +#include "MsgQueues.h" +#include "NVDataMgmt.h" #include "OperationModes.h" #include "Pressures.h" #include "Reservoirs.h" @@ -42,81 +46,10 @@ #define ACK_REQUIRED TRUE #define ACK_NOT_REQUIRED FALSE -#pragma pack(push,1) +#ifdef DEBUG_ENABLED + #define DEBUG_EVENT_MAX_TEXT_LEN 40 +#endif -typedef struct -{ - U32 alarmState; // 0 = no alarms, 1 = low priority, 2 = medium priority, 3 = high priority - U32 alarmTop; // ID of top active alarm - U32 escalatesIn; // seconds - U32 silenceExpiresIn; // seconds - U16 alarmsFlags; // bit flags: 1 = true, 0 = false for each bit -} ALARM_COMP_STATUS_PAYLOAD_T; - -typedef struct -{ - U32 treatmentTimePrescribedinSec; - U32 treatmentTimeElapsedinSec; - U32 treatmentTimeRemaininginSec; -} TREATMENT_TIME_DATA_T; - -typedef struct -{ - F32 loadCellA1inGram; - F32 loadCellA2inGram; - F32 loadCellB1inGram; - F32 loadCellB2inGram; -} LOAD_CELL_DATA_T; - -typedef struct -{ - U32 setROPumpPressure; - F32 measROFlowRate; - F32 roPumpPWM; -} RO_PUMP_DATA_T; - -typedef struct -{ - U32 setDrainPumpSpeed; - U32 dacValue; -} DRAIN_PUMP_DATA_T; - -typedef struct -{ - F32 roPumpInletPressure; - F32 roPumpOutletPressure; - F32 drainPumpInletPressure; - F32 drainPumpOutletPressure; -} PRESSURES_DATA_T; - -typedef struct -{ - U32 activeReservoir; - U32 fillToVolumeMl; - U32 drainToVolumeMl; -} RESERVOIR_DATA_T; - -typedef struct -{ - F32 cpi; - F32 cpo; -} CONDUCTIVITY_DATA_T; - -typedef struct -{ - F32 targetPrimaryHeaterTemp; - F32 targetTrimmerHeaterTemp; -} TARGET_TEMPS_PAYLOAD_T; - -typedef struct -{ - U32 mainPrimayHeaterDC; - U32 smallPrimaryHeaterDC; - U32 trimmerHeaterDC; -} HEATERS_DATA_T; - -#pragma pack(pop) - // ********** private data ********** static BOOL testerLoggedIn = FALSE; @@ -138,9 +71,9 @@ * @details * Inputs : none * Outputs : given data array populated with serialized message data and queued for transmit. - * @param msg : message to serialize - * @param buffer : outgoing buffer that message should be queued in - * @param ackReq : is an acknowledgement from receiver required? + * @param msg message to serialize + * @param buffer outgoing buffer that message should be queued in + * @param ackReq is an acknowledgement from receiver required? * @return size (in bytes) of serialized message populated in given data array. *************************************************************************/ static U32 serializeMessage( MESSAGE_T msg, COMM_BUFFER_T buffer, BOOL ackReq ) @@ -218,7 +151,7 @@ * @details * Inputs : none * Outputs : ACK message queued for transmit on broadcast CAN channel. - * @param message : message to send an ACK for + * @param message message to send an ACK for * @return TRUE if ACK message queued successfully, FALSE if not *************************************************************************/ BOOL sendACKMsg( MESSAGE_T *message ) @@ -249,9 +182,9 @@ * @details * Inputs : none * Outputs : response message constructed and queued for transmit. - * @param msgID : ID of handled message that we are responding to - * @param buffer : outgoing buffer that message should be queued in - * @param ack : TRUE if test message was handled successfully, FALSE if not + * @param msgID ID of handled message that we are responding to + * @param buffer outgoing buffer that message should be queued in + * @param ack TRUE if test message was handled successfully, FALSE if not * @return TRUE if response message successfully queued for transmit, FALSE if not *************************************************************************/ static BOOL sendAckResponseMsg( MSG_ID_T msgID, COMM_BUFFER_T buffer, BOOL ack ) @@ -282,9 +215,9 @@ * @details * Inputs : none * Outputs : alarm triggered msg constructed and queued. - * @param alarm : ID of alarm triggered - * @param almData1 : 1st data associated with alarm - * @param almData2 : 2nd data associated with alarm + * @param alarm ID of alarm triggered + * @param almData1 1st data associated with alarm + * @param almData2 2nd data associated with alarm * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastAlarmTriggered( U16 alarm, ALARM_DATA_T almData1, ALARM_DATA_T almData2 ) @@ -317,7 +250,7 @@ * @details * Inputs : none * Outputs : alarm cleared msg constructed and queued. - * @param alarm : ID of alarm cleared + * @param alarm ID of alarm cleared * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastAlarmCleared( U16 alarm ) @@ -339,14 +272,61 @@ return result; } +/************************************************************************* + * @brief + * The broadcastAccelData function constructs an accelerometer data msg to \n + * be broadcast and queues the msg for transmit on the appropriate CAN channel. + * @details + * Inputs : none + * Outputs : accelerometer data broadcast msg constructed and queued. + * @param x X axis vector magnitude (in g) + * @param y Y axis vector magnitude (in g) + * @param z Z axis vector magnitude (in g) + * @param xm max X axis vector magnitude (in g) + * @param ym max Y axis vector magnitude (in g) + * @param zm max Z axis vector magnitude (in g) + * @param xt X axis tilt (in degrees) + * @param yt Y axis tilt (in degrees) + * @param zt Z axis tilt (in degrees) + * @return TRUE if msg successfully queued for transmit, FALSE if not + *************************************************************************/ +BOOL broadcastAccelData( F32 x, F32 y, F32 z, F32 xm, F32 ym, F32 zm, F32 xt, F32 yt, F32 zt ) +{ + BOOL result; + MESSAGE_T msg; + U08 *payloadPtr = msg.payload; + ACCEL_DATA_PAYLOAD_T payload; + + // create a message record + blankMessage( &msg ); + msg.hdr.msgID = MSG_ID_DG_ACCELEROMETER_DATA; + msg.hdr.payloadLen = sizeof( ACCEL_DATA_PAYLOAD_T ); + payload.x = x; + payload.y = y; + payload.z = z; + payload.xMax = xm; + payload.yMax = ym; + payload.zMax = zm; + payload.xTilt = xt; + payload.yTilt = yt; + payload.zTilt = zt; + + memcpy( payloadPtr, &payload, sizeof( ACCEL_DATA_PAYLOAD_T ) ); + + // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer + result = serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); + + return result; +} + /************************************************************************* * @brief broadcastRTCEpoch * The broadcastRTCEpoch function constructs an epoch msg to \n * be broadcast and queues the msg for transmit on the appropriate CAN channel. * @details * Inputs : none * Outputs : RTC time and date in epoch - * @param epoch : Current time and date in epoch + * @param epoch Current time and date in epoch * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastRTCEpoch( U32 epoch ) @@ -375,8 +355,8 @@ * @details * Inputs : none * Outputs : DG operation mode msg constructed and queued - * @param mode : current operation mode of the DG. - * @param subMode : current sub-mode of the current operation mode of the DG. + * @param mode current operation mode of the DG. + * @param subMode current sub-mode of the current operation mode of the DG. * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastDGOperationMode( U32 mode, U32 subMode ) @@ -406,10 +386,10 @@ * @details * Inputs : none * Outputs : load cell data msg constructed and queued - * @param loadCellA1 : load cell A 1 data in grams. - * @param loadCellA2 : load cell A 2 data in grams. - * @param loadCellB1 : load cell B 1 data in grams. - * @param loadCellB2 : load cell B 2 data in grams. + * @param loadCellA1 load cell A 1 data in grams + * @param loadCellA2 load cell A 2 data in grams + * @param loadCellB1 load cell B 1 data in grams + * @param loadCellB2 load cell B 2 data in grams * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastLoadCellData( F32 loadCellA1, F32 loadCellA2, F32 loadCellB1, F32 loadCellB2 ) @@ -443,7 +423,7 @@ * @details * Inputs : none * Outputs : Valves states msg constructed and queued - * @param valvesStates : valves states + * @param valvesStates valves states * refer to setFPGAValveStates function in FPGA.c for details * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ @@ -472,9 +452,9 @@ * @details * Inputs : heaters data * Outputs : heatears data msg constructed and queued - * @param mainPrimaryDC : main primary heater duty cycle - * @param smallPrimaryDC : small primary heater duty cycle - * @param trimmerDC : trimmer heater duty cycle + * @param mainPrimaryDC main primary heater duty cycle + * @param smallPrimaryDC small primary heater duty cycle + * @param trimmerDC trimmer heater duty cycle * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastHeatersData ( U32 mainPrimaryDC, U32 smallPrimaryDC, U32 trimmerDC ) @@ -507,9 +487,9 @@ * @details * Inputs : none * Outputs : RO pump data msg constructed and queued - * @param tgtPressure : target pressure for RO pump in PSI. - * @param measFlow : measure RO flow rate in LPM. - * @param setPWM : set PWM duty cycle in %. + * @param tgtPressure target pressure for RO pump in PSI + * @param measFlow measure RO flow rate in LPM + * @param setPWM set PWM duty cycle in % * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastROPumpData( U32 tgtPressure, F32 measFlow, F32 setPWM ) @@ -542,8 +522,8 @@ * @details * Inputs : none * Outputs : Drain pump data msg constructed and queued - * @param tgtSpeed : target speed for drain pump in RPM. - * @param dac : set DAC value. + * @param tgtSpeed target speed for drain pump in RPM + * @param dac set DAC value * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastDrainPumpData( U32 tgtSpeed, U32 dac ) @@ -575,10 +555,10 @@ * @details * Inputs : none * Outputs : Pressure data msg constructed and queued - * @param measROIn : measured RO pump inlet pressure in PSI. - * @param measROOut : measured RO pump outlet pressure in PSI. - * @param measDrainIn : measured Drain pump inlet pressure in PSI. - * @param measDrainOut : measured Drain pump outlet pressure in PSI. + * @param measROIn measured RO pump inlet pressure in PSI + * @param measROOut measured RO pump outlet pressure in PSI + * @param measDrainIn measured Drain pump inlet pressure in PSI + * @param measDrainOut measured Drain pump outlet pressure in PSI * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastPressureSensorsData( F32 measROIn, F32 measROOut, F32 measDrainIn, F32 measDrainOut ) @@ -612,9 +592,9 @@ * @details * Inputs : none * Outputs : Reservoir data msg constructed and queued - * @param resID : ID of currently active reservoir. - * @param fillToVol : Current target fill to volume for inactive reservoir. - * @param drainToVol : Current target drain to volume for inactive reservoir. + * @param resID ID of currently active reservoir + * @param fillToVol Current target fill to volume for inactive reservoir + * @param drainToVol Current target drain to volume for inactive reservoir * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastReservoirData( U32 resID, U32 fillToVol, U32 drainToVol ) @@ -647,7 +627,7 @@ * sensors data * Inputs : heaters data * Outputs : temperatur sensors data msg constructed and queued - * @param sensorsValue : sensors value array + * @param sensorsValue sensors value array * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastTemperatureSensorsData ( U08 *sensorsValue, U32 byteLength ) @@ -715,12 +695,15 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handlePowerOffWarning( MESSAGE_T *message ) -{ - // TODO - signal modules that require a warning +{ + if ( message->hdr.payloadLen == 0 ) + { + signalPowerOffWarning(); + } } /************************************************************************* @@ -730,7 +713,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetDialysateTemperatureCmd( MESSAGE_T *message ) @@ -755,31 +738,30 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleFWVersionCmd( MESSAGE_T *message ) { MESSAGE_T msg; - U08 *payloadPtr = msg.payload; - U08 major = (U08)DG_VERSION_MAJOR; - U08 minor = (U08)DG_VERSION_MINOR; - U08 micro = (U08)DG_VERSION_MICRO; - U16 build = (U16)DG_VERSION_BUILD; - - // create a message record - blankMessage( &msg ); - msg.hdr.msgID = MSG_ID_DG_VERSION; - msg.hdr.payloadLen = sizeof( U08 ) + sizeof( U08 ) + sizeof( U08 ) + sizeof( U16 ); - - memcpy( payloadPtr, &major, sizeof( U08 ) ); - payloadPtr += sizeof( U08 ); - memcpy( payloadPtr, &minor, sizeof( U08 ) ); - payloadPtr += sizeof( U08 ); - memcpy( payloadPtr, µ, sizeof( U08 ) ); - payloadPtr += sizeof( U08 ); - memcpy( payloadPtr, &build, sizeof( U16 ) ); - + DG_VERSIONS_T payload; + U08 *payloadPtr = msg.payload; + + // populate payload + payload.major = (U08)DG_VERSION_MAJOR; + payload.minor = (U08)DG_VERSION_MINOR; + payload.micro = (U08)DG_VERSION_MICRO; + payload.build = (U16)DG_VERSION_BUILD; + getFPGAVersions( &payload.fpgaId, &payload.fpgaMajor, &payload.fpgaMinor, &payload.fpgaLab ); + + // create a message record + blankMessage( &msg ); + msg.hdr.msgID = MSG_ID_DG_VERSION; + msg.hdr.payloadLen = sizeof( DG_VERSIONS_T ); + + // fill message payload + memcpy( payloadPtr, &payload, sizeof( DG_VERSIONS_T ) ); + // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); } @@ -791,7 +773,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSwitchReservoirCmd( MESSAGE_T *message ) @@ -807,7 +789,8 @@ memcpy( &resID, message->payload, sizeof(U32) ); reservoirID = (RESERVOIR_ID_T)resID; setActiveReservoirCmd( reservoirID ); - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -817,7 +800,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleFillCmd( MESSAGE_T *message ) @@ -831,7 +814,8 @@ result = TRUE; memcpy( &fillToVolumeMl, message->payload, sizeof(U32) ); startFillCmd( fillToVolumeMl ); - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -841,7 +825,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleDrainCmd( MESSAGE_T *message ) @@ -856,7 +840,8 @@ memcpy( &drainToVolMl, message->payload, sizeof(U32) ); startDrainCmd( drainToVolMl ); - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -867,7 +852,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleStartStopTreatmentMsg( MESSAGE_T *message ) @@ -888,7 +873,8 @@ { result = requestDGStop(); } - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -899,7 +885,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleStartStopTrimmerHeaterCmd( MESSAGE_T *message ) @@ -920,7 +906,8 @@ { result = stopTrimmerHeaterCmd(); } - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -930,7 +917,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSampleWaterCmd( MESSAGE_T *message ) @@ -943,7 +930,8 @@ { result = requestWaterSample(); } - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); } @@ -954,7 +942,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleSetRTCTimestamp( MESSAGE_T *message ) @@ -981,7 +969,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return result *************************************************************************/ BOOL handleStartStopPrimaryHeater( MESSAGE_T * message ) @@ -1003,7 +991,8 @@ stopPrimaryHeater(); result = TRUE; } - } + } + sendAckResponseMsg( (MSG_ID_T)message->hdr.msgID, COMM_BUFFER_OUT_CAN_DG_2_HD, result ); return result; @@ -1014,26 +1003,54 @@ *************************************************************************/ -/************************************************************************* - * @brief sendDebugData - * The sendDebugData function sends debug data out to the PC port. - * @details - * Inputs : none - * Outputs : PC serial port - * @param dbgData : Pointer to debug data - * @param len : # of bytes of debug data - * @return TRUE if debug data was successfully queued for transmit, FALSE if not - *************************************************************************/ -#ifdef DEBUG_ENABLED -BOOL sendDebugData( U08 *dbgData, U32 len ) -{ - BOOL result; +#ifdef DEBUG_ENABLED + /************************************************************************* + * @brief sendDebugData + * The sendDebugData function sends debug data out to the PC port. + * @details + * Inputs : none + * Outputs : PC serial port + * @param dbgData Pointer to debug data + * @param len number of bytes of debug data + * @return TRUE if debug data was successfully queued for transmit, FALSE if not + *************************************************************************/ + BOOL sendDebugData( U08 *dbgData, U32 len ) + { + BOOL result; - // add serialized message data to appropriate comm buffer - result = addToCommBuffer( COMM_BUFFER_OUT_UART_PC, dbgData, len ); + // add serialized message data to appropriate comm buffer + result = addToCommBuffer( COMM_BUFFER_OUT_UART_PC, dbgData, len ); - return result; -} + return result; + } + + /************************************************************************* + * @brief + * The sendDebugDataToUI function sends debug string to the UI for logging. + * @details + * Inputs : none + * Outputs : Message constructed and queued for transmit + * @param str Pointer to debug string + * @return none + *************************************************************************/ + void sendDebugDataToUI( U08 *str ) + { + MESSAGE_T msg; + U32 txtLen = strlen( (char*)str ); + U08 *payloadPtr = msg.payload; + + // create a message record + blankMessage( &msg ); + msg.hdr.msgID = MSG_ID_DG_DEBUG_EVENT; + msg.hdr.payloadLen = DEBUG_EVENT_MAX_TEXT_LEN + 1; // add 1 byte for null terminator + if ( txtLen <= DEBUG_EVENT_MAX_TEXT_LEN ) + { + memcpy( payloadPtr, str, txtLen + 1 ); + + // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer + serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_2_UI, ACK_NOT_REQUIRED ); + } + } #endif /************************************************************************* @@ -1043,7 +1060,6 @@ * @details * Inputs : testerLoggedIn * Outputs : none - * @param none * @return TRUE if a tester has logged in to activate testing, FALSE if not *************************************************************************/ BOOL isTestingActivated( void ) @@ -1059,8 +1075,8 @@ * @details * Inputs : none * Outputs : response message constructed and queued for transmit. - * @param msgID : ID of handled message that we are responding to - * @param ack : TRUE if test message was handled successfully, FALSE if not + * @param msgID ID of handled message that we are responding to + * @param ack TRUE if test message was handled successfully, FALSE if not * @return TRUE if response message successfully queued for transmit, FALSE if not *************************************************************************/ static BOOL sendTestAckResponseMsg( MSG_ID_T msgID, BOOL ack ) @@ -1087,7 +1103,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleTesterLogInRequest( MESSAGE_T *message ) @@ -1113,7 +1129,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_U32( BOOL, handleTestWatchdogCheckInStateOverrideRequest, testSetWatchdogTaskCheckInOverride, testResetWatchdogTaskCheckInOverride ) @@ -1125,7 +1141,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_U32( BOOL, handleTestAlarmStateOverrideRequest, testSetAlarmStateOverride, testResetAlarmStateOverride ) @@ -1137,7 +1153,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestLoadCellOverrideRequest, testSetLoadCellOverride, testResetLoadCellOverride ) @@ -1149,7 +1165,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestTemperatureSensorsOverrideRequest, \ @@ -1162,7 +1178,7 @@ * @details * Inputs : none * Outputs : message handled -* @param message : a pointer to the message to handle +* @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestTemperatureSensorsDataPublishOverrideRequest, \ @@ -1175,7 +1191,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestHeatersDataPublishOverrideRequest, \ @@ -1188,7 +1204,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestLoadCellDataBroadcastIntervalOverrideRequest, testSetLoadCellDataPublishIntervalOverride, testResetLoadCellDataPublishIntervalOverride ) @@ -1200,7 +1216,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestPressureSensorOverrideRequest, testSetDGPressureSensorOverride, testResetDGPressureSensorOverride ) @@ -1212,7 +1228,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestPressureDataBroadcastIntervalOverrideRequest, testSetPressuresDataPublishIntervalOverride, testResetPressuresDataPublishIntervalOverride ) @@ -1224,7 +1240,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestROPumpSetPointOverrideRequest, testSetTargetROPumpPressureOverride, testResetTargetROPumpPressureOverride ) @@ -1236,7 +1252,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestROMeasuredFlowOverrideRequest, testSetMeasuredROFlowRateOverride, testResetMeasuredROFlowRateOverride ) @@ -1248,7 +1264,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestROPumpDataBroadcastIntervalOverrideRequest, testSetROPumpDataPublishIntervalOverride, testResetROPumpDataPublishIntervalOverride ) @@ -1260,7 +1276,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestDrainPumpSetPointOverrideRequest, testSetTargetDrainPumpSpeedOverride, testResetTargetDrainPumpSpeedOverride ) @@ -1272,7 +1288,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestDrainPumpDataBroadcastIntervalOverrideRequest, testSetDrainPumpDataPublishIntervalOverride, testResetDrainPumpDataPublishIntervalOverride ) @@ -1284,7 +1300,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_ARRAY_OVERRIDE_HANDLER_FUNC_U32( BOOL, handleTestValveStateOverrideRequest, testSetValveStateOverride, testResetValveStateOverride ) @@ -1296,7 +1312,7 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestValvesStatesPublishIntervalOverrideRequest, testSetValvesStatesPublishIntervalOverride, testResetValvesStatesPublishIntervalOverride ) @@ -1308,13 +1324,75 @@ * @details * Inputs : none * Outputs : message handled - * @param message : a pointer to the message to handle + * @param message a pointer to the message to handle * @return none *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestDGSafetyShutdownOverrideRequest, testSetSafetyShutdownOverride, testResetSafetyShutdownOverride ) /************************************************************************* * @brief + * The handleTestDGAccelOverrideRequest function handles a request to \n + * override the measured accelerometer sensor readings. + * @details + * Inputs : none + * Outputs : message handled + * @param message a pointer to the message to handle + * @return none + *************************************************************************/ +DATA_ARRAY_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestDGAccelOverrideRequest, testSetAccelAxisOverride, testResetAccelAxisOverride ) + +/************************************************************************* + * @brief + * The handleTestDGAccelMaxOverrideRequest function handles a request to \n + * override the measured accelerometer sensor maximum readings. + * @details + * Inputs : none + * Outputs : message handled + * @param message a pointer to the message to handle + * @return none + *************************************************************************/ +DATA_ARRAY_OVERRIDE_HANDLER_FUNC_F32( F32, handleTestDGAccelMaxOverrideRequest, testSetAccelMaxOverride, testResetAccelMaxOverride ) + +/************************************************************************* + * @brief + * The handleTestDGAccelBroadcastIntervalOverrideRequest function handles a \n + * request to override the broadcast interval for accelerometer data messages. + * @details + * Inputs : none + * Outputs : message handled + * @param message a pointer to the message to handle + * @return none + *************************************************************************/ +DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestDGAccelBroadcastIntervalOverrideRequest, testSetAccelDataPublishIntervalOverride, testResetAccelDataPublishIntervalOverride ) + +/************************************************************************* + * @brief + * The handleSetAccelCalibration function handles a request to set + * accelerometer calibration factors. + * @details + * Inputs : none + * Outputs : message handled + * @param message a pointer to the message to handle + * @return none + *************************************************************************/ +void handleSetAccelCalibration( MESSAGE_T *message ) +{ + BOOL result = FALSE; + + if ( message->hdr.payloadLen == sizeof(ACCEL_CAL_PAYLOAD_T) ) + { + ACCEL_CAL_PAYLOAD_T payload; + + memcpy( &payload, message->payload, sizeof(ACCEL_CAL_PAYLOAD_T) ); + result = setAccelCalibration( payload.xOffset, payload.yOffset, payload.zOffset ); + } + + // respond to request + sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); +} + +/************************************************************************* + * @brief * The handleTestSetConductivityOverrideRequest function handles a * request to override a conductivity sensor's value * @details @@ -1337,29 +1415,3 @@ *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC_U32( U32, handleTestSetConductivityDataPublishIntervalOverrideRequest, \ testSetConductivityDataPublishIntervalOverride, testResetConductivityDataPublishIntervalOverride ) - -#ifdef CAN_TEST -void broadcastCANTest1LargeFrequentMessage() -{ - static U16 seqNo = 0; - MESSAGE_T msg; - U32 i; - - // create a message record - blankMessage( &msg ); - msg.hdr.msgID = 99; - msg.hdr.payloadLen = 96; - - for ( i = 0; i < 12; i++ ) - { - memcpy(&msg.payload[i*8], &seqNo, 2); - seqNo++; - } - memcpy(&msg.payload[94], &seqNo, 2); - seqNo++; - - // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer - serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); -} - -#endif Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -34,6 +34,9 @@ // MSG_ID_ALARM_CLEARED BOOL broadcastAlarmCleared( U16 alarm ); +// MSG_ID_DG_ACCELEROMETER_DATA +BOOL broadcastAccelData( F32 x, F32 y, F32 z, F32 xm, F32 ym, F32 zm, F32 xt, F32 yt, F32 zt ); + // MSG_ID_RTC_EPOCH BOOL broadcastRTCEpoch( U32 epoch ); // TODO - probably don't want DG to broadcast these @@ -58,6 +61,15 @@ // MSG_ID_DG_RESERVOIR_DATA BOOL broadcastReservoirData( U32 resID, U32 fillToVol, U32 drainToVol ); +// MSG_ID_HEATERS_READINGS +BOOL broadcastHeatersData ( U32 mainPrimaryDC, U32 smallPrimaryDC, U32 trimmerDC ); + +// MSG_ID_TEMPERATURE_SENSORS_READINGS +BOOL broadcastTemperatureSensorsData ( U08 *sensorsValue, U32 byteLength ); + +// MSG_ID_DG_CONDUCTIVITY_DATA +BOOL broadcastConductivityData( F32 cpi, F32 cpo ); + // MSG_ID_POWER_OFF_WARNING void handlePowerOffWarning( MESSAGE_T *message ); @@ -82,23 +94,20 @@ // MSG_ID_DG_SAMPLE_WATER_CMD void handleSampleWaterCmd( MESSAGE_T *message ); +// MSG_ID_START_STOP_PRIMARY_HEATER +BOOL handleStartStopPrimaryHeater( MESSAGE_T * message ); + // MSG_ID_DG_START_STOP_TRIMMER_HEATER_CMD void handleStartStopTrimmerHeaterCmd( MESSAGE_T *message ); -// MSG_ID_HEATERS_READINGS -BOOL broadcastHeatersData ( U32 mainPrimaryDC, U32 smallPrimaryDC, U32 trimmerDC ); - -// MSG_ID_TEMPERATURE_SENSORS_READINGS -BOOL broadcastTemperatureSensorsData ( U08 *sensorsValue, U32 byteLength ); - -// MSG_ID_DG_CONDUCTIVITY_DATA -BOOL broadcastConductivityData( F32 cpi, F32 cpo ); - // *********** public test support message functions ********** #ifdef DEBUG_ENABLED // DEBUG OUTPUT BOOL sendDebugData( U08 *dbgData, U32 len ); + +// Debug message to UI for logging +void sendDebugDataToUI( U08 *str ); #endif // MSG_TESTER_LOG_IN @@ -165,12 +174,16 @@ // MSG_ID_CONDUCTIVITY_PUBLISH_INTERVAL_OVERRIDE void handleTestSetConductivityDataPublishIntervalOverrideRequest( MESSAGE_T *message ); -// MSG_ID_START_STOP_PRIMARY_HEATER -BOOL handleStartStopPrimaryHeater( MESSAGE_T * message ); - -#ifdef CAN_TEST -// MSG_ID_DG_CAN_TEST_1_LARGE_FREQ -void broadcastCANTest1LargeFrequentMessage(); +// MSG_ID_DG_ACCEL_OVERRIDE: +void handleTestDGAccelOverrideRequest( MESSAGE_T *message ); + +// MSG_ID_DG_ACCEL_MAX_OVERRIDE: +void handleTestDGAccelMaxOverrideRequest( MESSAGE_T *message ); + +// MSG_ID_DG_ACCEL_SEND_INTERVAL_OVERRIDE: +void handleTestDGAccelBroadcastIntervalOverrideRequest( MESSAGE_T *message ); + +// MSG_ID_DG_ACCEL_SET_CALIBRATION: +void handleSetAccelCalibration( MESSAGE_T *message ); + #endif - -#endif Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -58,7 +58,6 @@ * @details * Inputs : none * Outputs : Watchdog mgmt. module initialized. - * @param none * @return none *************************************************************************/ void initWatchdogMgmt( void ) @@ -85,7 +84,6 @@ * @details * Inputs : none * Outputs : - * @param none * @return none *************************************************************************/ void execWatchdogMgmt( void ) @@ -125,7 +123,7 @@ * @details * Inputs : none * Outputs : task is checked in with the watchdog mgmt.. - * @param task : the task that is checking in with the watchdog mgmt. + * @param task the task that is checking in with the watchdog mgmt * @return none *************************************************************************/ void checkInWithWatchdogMgmt( TASK_T task ) @@ -144,7 +142,6 @@ * @details * Inputs : * Outputs : - * @param none * @return in progress, passed, or failed *************************************************************************/ SELF_TEST_STATUS_T execWatchdogTest( void ) @@ -205,7 +202,6 @@ * @details * Inputs : none * Outputs : watchdogTaskCheckedIn[] array reset to all false. - * @param none * @return none *************************************************************************/ static void resetWDTaskCheckIns( void ) @@ -226,7 +222,6 @@ * @details * Inputs : watchdogTaskCheckedIn[] * Outputs : none - * @param none * @return TRUE if all tasks have checked in since last watchdog pet, FALSE if not. *************************************************************************/ static BOOL haveAllTasksCheckedIn( void ) @@ -254,7 +249,7 @@ * @details * Inputs : watchdogTaskCheckedIn[] * Outputs : none - * @param task : ID of task to check + * @param task ID of task to check * @return TRUE if given task has checked in, FALSE if not *************************************************************************/ static DATA_ARRAY_GET( BOOL, hasTaskGeneralCheckedIn, task, NUM_OF_TASKS-1, watchdogTaskCheckedIn, FALSE ) @@ -266,7 +261,6 @@ * @details * Inputs : none * Outputs : CPLD WD pet signal is pulsed - * @param none * @return none *************************************************************************/ static void petWatchdog( void ) @@ -293,8 +287,8 @@ * @details * Inputs : none * Outputs : watchdogTaskCheckedIn[] - * @param task : ID of task to override check-in state for - * @param value : override state for the given task ID + * @param task ID of task to override check-in state for + * @param value override state for the given task ID * @return TRUE if override successful, FALSE if not *************************************************************************/ DATA_ARRAY_OVERRIDE_FUNC( BOOL, testSetWatchdogTaskCheckInOverride, testResetWatchdogTaskCheckInOverride, watchdogTaskCheckedIn, task, NUM_OF_TASKS-1 ) Index: firmware/App/Tasks/TaskPriority.c =================================================================== diff -u -r0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision 0dec8744af40d0c87a6d7cd1923920c1c2bd1d2f) +++ firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -17,6 +17,7 @@ #include "gio.h" +#include "Accel.h" #include "DrainPump.h" #include "FPGA.h" #include "InternalADC.h" @@ -30,7 +31,14 @@ #include "TemperatureSensors.h" #include "ConductivitySensors.h" #include "Heaters.h" - + +#ifdef TASK_TIMING_OUTPUT_ENABLED + #include "mibspi.h" + #define TASK_TIMING_TEST_PIN_SPI1_PORT_MASK 0x00000020 // (CS5 - re-purposed as output GPIO) + #define SET_TASK_ON() { mibspiREG3->PC3 |= TASK_TIMING_TEST_PIN_SPI1_PORT_MASK; } + #define SET_TASK_OFF() { mibspiREG3->PC3 &= ~TASK_TIMING_TEST_PIN_SPI1_PORT_MASK; } +#endif + /************************************************************************* * @brief taskPriority * The taskPriority function handles the scheduled Priority Task interrupt. @@ -41,13 +49,16 @@ *************************************************************************/ void taskPriority( void ) { +#ifdef TASK_TIMING_OUTPUT_ENABLED +// SET_TASK_ON(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing +#endif + // 1st pass for FPGA execFPGAIn(); // monitor internal ADC channels execInternalADC(); -#ifndef CAN_TEST // monitor pressures execPressures(); @@ -64,7 +75,12 @@ // control valves execValves(); - + +#ifndef DISABLE_ACCELS + // monitor accelerometer + execAccel(); +#endif + // monitor RO pump execROPumpMonitor(); @@ -73,15 +89,15 @@ // Heaters monitor execHeatersMonitor(); -#endif // 2nd pass for FPGA execFPGAOut(); // check in with watchdog manager checkInWithWatchdogMgmt( TASK_PRIORITY ); - // toggle GPIO to indicate priority task has executed - //gioToggleBit( gioPORTB, 3 ); +#ifdef TASK_TIMING_OUTPUT_ENABLED +// SET_TASK_OFF(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing +#endif } Index: firmware/source/sys_main.c =================================================================== diff -u -r05e516dc17597cee29c89e5eee25caed055f1151 -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- firmware/source/sys_main.c (.../sys_main.c) (revision 05e516dc17597cee29c89e5eee25caed055f1151) +++ firmware/source/sys_main.c (.../sys_main.c) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -61,6 +61,7 @@ #include "rti.h" #include "DGCommon.h" +#include "Accel.h" #include "AlarmMgmt.h" #include "CommBuffers.h" #include "ConductivitySensors.h" @@ -69,6 +70,7 @@ #include "FPGA.h" #include "Heaters.h" #include "InternalADC.h" +#include "Interrupts.h" #include "LoadCell.h" #include "MsgQueues.h" #include "OperationModes.h" @@ -165,6 +167,7 @@ initCPLD(); initAlarmMgmt(); initWatchdogMgmt(); + initInterrupts(); initFPGA(); initInternalADC(); initPressures(); @@ -175,6 +178,7 @@ initConductivitySensors(); initROPump(); initDrainPump(); + initAccel(); initRTC(); initCommBuffers(); initMsgQueues(); @@ -209,7 +213,7 @@ rtiInit(); rtiEnableNotification( rtiNOTIFICATION_COMPARE0 | rtiNOTIFICATION_COMPARE1 | rtiNOTIFICATION_COMPARE3 ); rtiStartCounter( rtiCOUNTER_BLOCK0 ); - // the timer task (and other comm related interrupts) require FIQ enabled + // the timer task requires FIQ enabled _enable_FIQ(); // the general and priority tasks require IRQ enabled _enable_IRQ(); Index: results/Build_Status_Report.csv =================================================================== diff -u -r110a5fef2962a0011148c3332a87e711e3ed65cd -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 110a5fef2962a0011148c3332a87e711e3ed65cd) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -1,6 +1,6 @@ Running Project, dgfirmware -Date, Fri Jul 31 15:09:22 PDT 2020 +Date, Wed Aug 19 14:24:10 PDT 2020 VectorCAST Pass/Fail Status, Passed @@ -9,21 +9,19 @@ Unit Test Manual Cases Module, Function Name ropump,execROPumpTest -modestandby,handleStandbyIdleState drainpump,handleDrainPumpControlToTargetState drainpump,execDrainPumpTest heaters,handleHeatersSelfTestSmallPrimaryAndTrimmerHeaters heaters,handleHeatersSelfTestMainPrimaryHeater modefill,handleDeliverDialysateState -systemcommmessages,handlePowerOffWarning -pressures,execPressuresTest Integration Test Coverage, Passed Integration Test Manual Cases Module, Function Name systemcommmessages,broadcastAlarmTriggered systemcommmessages,broadcastAlarmCleared +systemcommmessages,broadcastAccelData systemcommmessages,broadcastRTCEpoch systemcommmessages,broadcastDGOperationMode systemcommmessages,broadcastLoadCellData @@ -34,6 +32,7 @@ systemcommmessages,broadcastPressureSensorsData systemcommmessages,broadcastReservoirData systemcommmessages,broadcastTemperatureSensorsData +accel,getAccelCalibration reservoirs,stopFillCmd reservoirs,stopDrainCmd reservoirs,testSetDGActiveReservoirOverride @@ -43,8 +42,6 @@ reservoirs,testSetReservoirDrainVolumeMlOverride reservoirs,testResetReservoirDrainVolumeMlOverride modestandby,getCurrentStandbyState -pressures,execPressuresTest -ropump,getMeasuredROFlowRate ropump,execROPumpTest modedrain,getCurrentDrainState modefill,getCurrentFillState @@ -74,11 +71,10 @@ ModeHeatDisinfect, Missing Unit Test and Integration Test RTC, Missing Unit Test and Integration Test NVDataMgmt, Missing Unit Test and Integration Test -Utilities, Missing Unit Test and Integration Test +Utilities, Missing Integration Test irqDispatch_c, Missing Unit Test and Integration Test -Accel, Missing Unit Test and Integration Test Timers, Missing Unit Test and Integration Test CppCheck, Passed -Cppcheck No. of Warnings, 0 +Cppcheck No. of Warnings, 1 Index: results/VectorCAST.log =================================================================== diff -u -r110a5fef2962a0011148c3332a87e711e3ed65cd -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- results/VectorCAST.log (.../VectorCAST.log) (revision 110a5fef2962a0011148c3332a87e711e3ed65cd) +++ results/VectorCAST.log (.../VectorCAST.log) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -1,12 +1,811 @@ -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-31 15:09:23 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:24:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env" Initializing search list Creating the Environment Directory + Creating Environment "ACCEL" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Accel + Unit 9 (stub-by-function): Accel + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file Accel + Compiling file Accel + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:24:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 100 + Processing script line 250 + Processing script line 350 + Processing script line 400 + Processing script line 450 + Processing script line 500 + Processing script line 550 + Processing script line 700 + Processing script line 750 + Processing script line 800 + Processing script line 850 + Processing script line 900 + Processing script line 1000 + Processing script line 1050 + Processing script line 1150 + Processing script line 1200 + Processing script line 1300 + Processing script line 1350 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: calcVectorLength_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: calcVectorLength_NominalPath +(I) @LINE: 37 + >>> Processing Test Case: checkForShockError_BelowLimit +(S) @LINE: 45 + >>> Processed Test Case: checkForShockError_BelowLimit +(I) @LINE: 51 + >>> Processing Test Case: checkForShockError_XShock +(S) @LINE: 60 + >>> Processed Test Case: checkForShockError_XShock +(I) @LINE: 66 + >>> Processing Test Case: checkForShockError_YShock +(S) @LINE: 75 + >>> Processed Test Case: checkForShockError_YShock +(I) @LINE: 81 + >>> Processing Test Case: checkForShockError_ZShock +(S) @LINE: 90 + >>> Processed Test Case: checkForShockError_ZShock +(I) @LINE: 98 + >>> Processing Test Case: checkForTiltError_TiltBad_Alarm +(S) @LINE: 108 + >>> Processed Test Case: checkForTiltError_TiltBad_Alarm +(I) @LINE: 114 + >>> Processing Test Case: checkForTiltError_TiltBad_Alarm2 +(S) @LINE: 124 + >>> Processed Test Case: checkForTiltError_TiltBad_Alarm2 +(I) @LINE: 130 + >>> Processing Test Case: checkForTiltError_TiltBad_NoPersistence +(S) @LINE: 135 + >>> Processed Test Case: checkForTiltError_TiltBad_NoPersistence +(I) @LINE: 141 + >>> Processing Test Case: checkForTiltError_TiltOk +(S) @LINE: 146 + >>> Processed Test Case: checkForTiltError_TiltOk +(I) @LINE: 152 + >>> Processing Test Case: checkForTiltError_TiltOk2 +(S) @LINE: 157 + >>> Processed Test Case: checkForTiltError_TiltOk2 +(I) @LINE: 163 + >>> Processing Test Case: checkForTiltError_TiltOk_ClearAlarm +(S) @LINE: 169 + >>> Processed Test Case: checkForTiltError_TiltOk_ClearAlarm +(I) @LINE: 175 + >>> Processing Test Case: checkForTiltError_TiltOk_ClearAlarm2 +(S) @LINE: 181 + >>> Processed Test Case: checkForTiltError_TiltOk_ClearAlarm2 +(I) @LINE: 189 + >>> Processing Test Case: execAccel_InvalidState +(S) @LINE: 198 + >>> Processed Test Case: execAccel_InvalidState +(I) @LINE: 204 + >>> Processing Test Case: execAccel_MonitorState +(S) @LINE: 239 + >>> Processed Test Case: execAccel_MonitorState +(I) @LINE: 245 + >>> Processing Test Case: execAccel_Start +(S) @LINE: 250 + >>> Processed Test Case: execAccel_Start +(I) @LINE: 258 + >>> Processing Test Case: execAccelTest_CompleteState +(S) @LINE: 266 + >>> Processed Test Case: execAccelTest_CompleteState +(I) @LINE: 272 + >>> Processing Test Case: execAccelTest_Fail +(S) @LINE: 282 + >>> Processed Test Case: execAccelTest_Fail +(I) @LINE: 288 + >>> Processing Test Case: execAccelTest_Fail2 +(S) @LINE: 298 + >>> Processed Test Case: execAccelTest_Fail2 +(I) @LINE: 304 + >>> Processing Test Case: execAccelTest_InvalidState +(S) @LINE: 312 + >>> Processed Test Case: execAccelTest_InvalidState +(I) @LINE: 318 + >>> Processing Test Case: execAccelTest_Pass +(S) @LINE: 325 + >>> Processed Test Case: execAccelTest_Pass +(I) @LINE: 331 + >>> Processing Test Case: execAccelTest_Pass2 +(S) @LINE: 338 + >>> Processed Test Case: execAccelTest_Pass2 +(I) @LINE: 344 + >>> Processing Test Case: execAccelTest_Start +(S) @LINE: 356 + >>> Processed Test Case: execAccelTest_Start +(I) @LINE: 362 + >>> Processing Test Case: execAccelTest_Start_NoCalibration +(S) @LINE: 370 + >>> Processed Test Case: execAccelTest_Start_NoCalibration +(I) @LINE: 378 + >>> Processing Test Case: filterAccelReadings_Full +(S) @LINE: 428 + >>> Processed Test Case: filterAccelReadings_Full +(I) @LINE: 434 + >>> Processing Test Case: filterAccelReadings_NominalPath +(S) @LINE: 484 + >>> Processed Test Case: filterAccelReadings_NominalPath +(I) @LINE: 490 + >>> Processing Test Case: filterAccelReadings_Over1g +(S) @LINE: 537 + >>> Processed Test Case: filterAccelReadings_Over1g +(I) @LINE: 543 + >>> Processing Test Case: filterAccelReadings_Wrap +(S) @LINE: 595 + >>> Processed Test Case: filterAccelReadings_Wrap +(I) @LINE: 603 + >>> Processing Test Case: getAccelCalibration_NominalPath +(S) @LINE: 616 + >>> Processed Test Case: getAccelCalibration_NominalPath +(I) @LINE: 624 + >>> Processing Test Case: getMaxAccelAxis_InvalidAxis +(S) @LINE: 632 + >>> Processed Test Case: getMaxAccelAxis_InvalidAxis +(I) @LINE: 638 + >>> Processing Test Case: getMaxAccelAxis_NominalPath +(S) @LINE: 645 + >>> Processed Test Case: getMaxAccelAxis_NominalPath +(I) @LINE: 651 + >>> Processing Test Case: getMaxAccelAxis_Override +(S) @LINE: 658 + >>> Processed Test Case: getMaxAccelAxis_Override +(I) @LINE: 666 + >>> Processing Test Case: getMeasuredAccelAxis_InvalidAxis +(S) @LINE: 674 + >>> Processed Test Case: getMeasuredAccelAxis_InvalidAxis +(I) @LINE: 680 + >>> Processing Test Case: getMeasuredAccelAxis_NominalPath +(S) @LINE: 687 + >>> Processed Test Case: getMeasuredAccelAxis_NominalPath +(I) @LINE: 693 + >>> Processing Test Case: getMeasuredAccelAxis_Override +(S) @LINE: 700 + >>> Processed Test Case: getMeasuredAccelAxis_Override +(I) @LINE: 708 + >>> Processing Test Case: getPublishAccelDataInterval_NominalPath +(S) @LINE: 714 + >>> Processed Test Case: getPublishAccelDataInterval_NominalPath +(I) @LINE: 720 + >>> Processing Test Case: getPublishAccelDataInterval_Override +(S) @LINE: 726 + >>> Processed Test Case: getPublishAccelDataInterval_Override +(I) @LINE: 734 + >>> Processing Test Case: handleAccelMonitorState_Error +(S) @LINE: 784 + >>> Processed Test Case: handleAccelMonitorState_Error +(I) @LINE: 790 + >>> Processing Test Case: handleAccelMonitorState_NoNewData +(S) @LINE: 836 + >>> Processed Test Case: handleAccelMonitorState_NoNewData +(I) @LINE: 842 + >>> Processing Test Case: handleAccelMonitorState_NoNewData_Alarm +(S) @LINE: 891 + >>> Processed Test Case: handleAccelMonitorState_NoNewData_Alarm +(I) @LINE: 897 + >>> Processing Test Case: handleAccelMonitorState_NominalPath +(S) @LINE: 943 + >>> Processed Test Case: handleAccelMonitorState_NominalPath +(I) @LINE: 951 + >>> Processing Test Case: initAccel_NominalPath +(S) @LINE: 1022 + >>> Processed Test Case: initAccel_NominalPath +(I) @LINE: 1030 + >>> Processing Test Case: publishAccelData_NotTimeToPublish +(S) @LINE: 1037 + >>> Processed Test Case: publishAccelData_NotTimeToPublish +(I) @LINE: 1043 + >>> Processing Test Case: publishAccelData_TimeToPublish +(S) @LINE: 1074 + >>> Processed Test Case: publishAccelData_TimeToPublish +(I) @LINE: 1082 + >>> Processing Test Case: setAccelCalibration_NominalPath +(S) @LINE: 1095 + >>> Processed Test Case: setAccelCalibration_NominalPath +(I) @LINE: 1101 + >>> Processing Test Case: setAccelCalibration_NotLoggedIn +(S) @LINE: 1107 + >>> Processed Test Case: setAccelCalibration_NotLoggedIn +(I) @LINE: 1115 + >>> Processing Test Case: testResetAccelAxisOverride_InvalidAxis +(S) @LINE: 1118 + >>> Processed Test Case: testResetAccelAxisOverride_InvalidAxis +(I) @LINE: 1124 + >>> Processing Test Case: testResetAccelAxisOverride_NotLoggedIn +(S) @LINE: 1136 + >>> Processed Test Case: testResetAccelAxisOverride_NotLoggedIn +(I) @LINE: 1142 + >>> Processing Test Case: testResetAccelAxisOverride_Reset +(S) @LINE: 1154 + >>> Processed Test Case: testResetAccelAxisOverride_Reset +(I) @LINE: 1162 + >>> Processing Test Case: testResetAccelDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 1173 + >>> Processed Test Case: testResetAccelDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 1179 + >>> Processing Test Case: testResetAccelDataPublishIntervalOverride_Reset +(S) @LINE: 1190 + >>> Processed Test Case: testResetAccelDataPublishIntervalOverride_Reset +(I) @LINE: 1198 + >>> Processing Test Case: testResetAccelMaxOverride_InvalidAxis +(S) @LINE: 1201 + >>> Processed Test Case: testResetAccelMaxOverride_InvalidAxis +(I) @LINE: 1207 + >>> Processing Test Case: testResetAccelMaxOverride_NotLoggedIn +(S) @LINE: 1219 + >>> Processed Test Case: testResetAccelMaxOverride_NotLoggedIn +(I) @LINE: 1225 + >>> Processing Test Case: testResetAccelMaxOverride_Reset +(S) @LINE: 1237 + >>> Processed Test Case: testResetAccelMaxOverride_Reset +(I) @LINE: 1245 + >>> Processing Test Case: testSetAccelAxisOverride_InvalidAxis +(S) @LINE: 1249 + >>> Processed Test Case: testSetAccelAxisOverride_InvalidAxis +(I) @LINE: 1255 + >>> Processing Test Case: testSetAccelAxisOverride_NotLoggedIn +(S) @LINE: 1268 + >>> Processed Test Case: testSetAccelAxisOverride_NotLoggedIn +(I) @LINE: 1274 + >>> Processing Test Case: testSetAccelAxisOverride_Override +(S) @LINE: 1287 + >>> Processed Test Case: testSetAccelAxisOverride_Override +(I) @LINE: 1295 + >>> Processing Test Case: testSetAccelDataPublishIntervalOverride_NotLoggedIn +(S) @LINE: 1307 + >>> Processed Test Case: testSetAccelDataPublishIntervalOverride_NotLoggedIn +(I) @LINE: 1313 + >>> Processing Test Case: testSetAccelDataPublishIntervalOverride_Override +(S) @LINE: 1325 + >>> Processed Test Case: testSetAccelDataPublishIntervalOverride_Override +(I) @LINE: 1333 + >>> Processing Test Case: testSetAccelMaxOverride_InvalidAxis +(S) @LINE: 1337 + >>> Processed Test Case: testSetAccelMaxOverride_InvalidAxis +(I) @LINE: 1343 + >>> Processing Test Case: testSetAccelMaxOverride_NotLoggedIn +(S) @LINE: 1355 + >>> Processed Test Case: testSetAccelMaxOverride_NotLoggedIn +(I) @LINE: 1361 + >>> Processing Test Case: testSetAccelMaxOverride_Override +(S) @LINE: 1374 + >>> Processed Test Case: testSetAccelMaxOverride_Override +(S) @LINE: 1374 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:24:15 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:24:16 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Accel.initAccel test cases + Running: initAccel_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.execAccel test cases + Running: execAccel_InvalidState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccel_MonitorState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccel_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.handleAccelMonitorState test cases + Running: handleAccelMonitorState_Error + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NoNewData + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NoNewData_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleAccelMonitorState_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getPublishAccelDataInterval test cases + Running: getPublishAccelDataInterval_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getPublishAccelDataInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getMeasuredAccelAxis test cases + Running: getMeasuredAccelAxis_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredAccelAxis_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredAccelAxis_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getMaxAccelAxis test cases + Running: getMaxAccelAxis_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMaxAccelAxis_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMaxAccelAxis_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.publishAccelData test cases + Running: publishAccelData_NotTimeToPublish + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: publishAccelData_TimeToPublish + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.filterAccelReadings test cases + Running: filterAccelReadings_Full + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_Over1g + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: filterAccelReadings_Wrap + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.calcVectorLength test cases + Running: calcVectorLength_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.checkForTiltError test cases + Running: checkForTiltError_TiltBad_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltBad_Alarm2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltBad_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk_ClearAlarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForTiltError_TiltOk_ClearAlarm2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.checkForShockError test cases + Running: checkForShockError_BelowLimit + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_XShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_YShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkForShockError_ZShock + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.execAccelTest test cases + Running: execAccelTest_CompleteState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Fail + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Fail2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_InvalidState + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Pass + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Pass2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest_Start_NoCalibration + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.setAccelCalibration test cases + Running: setAccelCalibration_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setAccelCalibration_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.getAccelCalibration test cases + Running: getAccelCalibration_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelDataPublishIntervalOverride test cases + Running: testSetAccelDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelDataPublishIntervalOverride test cases + Running: testResetAccelDataPublishIntervalOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelAxisOverride test cases + Running: testSetAccelAxisOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelAxisOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelAxisOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelAxisOverride test cases + Running: testResetAccelAxisOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelAxisOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelAxisOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testSetAccelMaxOverride test cases + Running: testSetAccelMaxOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelMaxOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelMaxOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Accel.testResetAccelMaxOverride test cases + Running: testResetAccelMaxOverride_InvalidAxis + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelMaxOverride_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetAccelMaxOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:24:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env" + Initializing search list + Creating the Environment Directory Creating Environment "COMMBUFFERS" Unit 8 (not-stubbed): User Defined Globals Parsing @@ -33,18 +832,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-31 15:09:25 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:24:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -56,18 +855,20 @@ Processing script line 100 Processing script line 200 Processing script line 250 + Processing script line 300 Processing script line 350 + Processing script line 400 Processing script line 450 - Processing script line 500 + Processing script line 550 Processing script line 600 - Processing script line 650 Processing script line 700 + Processing script line 750 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: InsufficientSpaceForAdd (S) @LINE: 31 @@ -96,95 +897,99 @@ >>> Processing Test Case: SuccessfulAdd_NoClearLastOverflow (S) @LINE: 294 >>> Processed Test Case: SuccessfulAdd_NoClearLastOverflow -(I) @LINE: 302 +(I) @LINE: 300 + >>> Processing Test Case: TransmitDisabled +(S) @LINE: 307 + >>> Processed Test Case: TransmitDisabled +(I) @LINE: 313 + >>> Processing Test Case: TransmitDisabled_ReceivedData +(S) @LINE: 379 + >>> Processed Test Case: TransmitDisabled_ReceivedData +(I) @LINE: 387 >>> Processing Test Case: clearBuffer_InvalidBuffer -(S) @LINE: 308 +(S) @LINE: 393 >>> Processed Test Case: clearBuffer_InvalidBuffer -(I) @LINE: 314 +(I) @LINE: 399 >>> Processing Test Case: clearBuffer_NominalPath -(S) @LINE: 342 +(S) @LINE: 427 >>> Processed Test Case: clearBuffer_NominalPath -(I) @LINE: 350 +(I) @LINE: 435 >>> Processing Test Case: ConsumeAllDataInInactiveBuffer -(S) @LINE: 369 +(S) @LINE: 454 >>> Processed Test Case: ConsumeAllDataInInactiveBuffer -(I) @LINE: 375 +(I) @LINE: 460 >>> Processing Test Case: ConsumePortionOfDataInInactiveBuffer -(S) @LINE: 399 +(S) @LINE: 484 >>> Processed Test Case: ConsumePortionOfDataInInactiveBuffer -(I) @LINE: 407 +(I) @LINE: 492 >>> Processing Test Case: InvalidBuffer -(S) @LINE: 411 +(S) @LINE: 496 >>> Processed Test Case: InvalidBuffer -(I) @LINE: 417 +(I) @LINE: 502 >>> Processing Test Case: LengthLargerThanBuffer -(S) @LINE: 427 +(S) @LINE: 512 >>> Processed Test Case: LengthLargerThanBuffer -(I) @LINE: 433 +(I) @LINE: 518 >>> Processing Test Case: LengthLargerThanContents -(S) @LINE: 443 +(S) @LINE: 528 >>> Processed Test Case: LengthLargerThanContents -(I) @LINE: 449 +(I) @LINE: 534 >>> Processing Test Case: SuccessfulGetFromBothBuffers -(S) @LINE: 474 +(S) @LINE: 559 >>> Processed Test Case: SuccessfulGetFromBothBuffers -(I) @LINE: 480 +(I) @LINE: 565 >>> Processing Test Case: SuccessfulGetFromInactiveBufferOnly -(S) @LINE: 506 +(S) @LINE: 591 >>> Processed Test Case: SuccessfulGetFromInactiveBufferOnly -(I) @LINE: 514 +(I) @LINE: 599 >>> Processing Test Case: initCommBuffers_NominalPath -(S) @LINE: 519 +(S) @LINE: 604 >>> Processed Test Case: initCommBuffers_NominalPath -(I) @LINE: 527 - >>> Processing Test Case: numberOfBytesInCommBuffer_BufferLocked -(S) @LINE: 536 - >>> Processed Test Case: numberOfBytesInCommBuffer_BufferLocked -(I) @LINE: 542 +(I) @LINE: 612 >>> Processing Test Case: numberOfBytesInCommBuffer_InvalidBuffer -(S) @LINE: 545 +(S) @LINE: 615 >>> Processed Test Case: numberOfBytesInCommBuffer_InvalidBuffer -(I) @LINE: 551 +(I) @LINE: 621 >>> Processing Test Case: numberOfBytesInCommBuffer_NominalPath -(S) @LINE: 558 +(S) @LINE: 628 >>> Processed Test Case: numberOfBytesInCommBuffer_NominalPath -(I) @LINE: 566 +(I) @LINE: 636 >>> Processing Test Case: LengthLargerThanBuffer -(S) @LINE: 576 +(S) @LINE: 646 >>> Processed Test Case: LengthLargerThanBuffer -(I) @LINE: 582 +(I) @LINE: 652 >>> Processing Test Case: LengthLargerThanContents -(S) @LINE: 592 +(S) @LINE: 662 >>> Processed Test Case: LengthLargerThanContents -(I) @LINE: 598 +(I) @LINE: 668 >>> Processing Test Case: SuccessfulPeekFromBothBuffers -(S) @LINE: 631 +(S) @LINE: 701 >>> Processed Test Case: SuccessfulPeekFromBothBuffers -(I) @LINE: 637 +(I) @LINE: 707 >>> Processing Test Case: SuccessfulPeekFromInactiveBufferOnly -(S) @LINE: 670 +(S) @LINE: 740 >>> Processed Test Case: SuccessfulPeekFromInactiveBufferOnly -(I) @LINE: 676 +(I) @LINE: 746 >>> Processing Test Case: peekFromCommBuffer_InvalidBuffer -(S) @LINE: 680 +(S) @LINE: 750 >>> Processed Test Case: peekFromCommBuffer_InvalidBuffer -(I) @LINE: 688 +(I) @LINE: 758 >>> Processing Test Case: switchDoubleBuffer_Switch0To1 -(S) @LINE: 693 +(S) @LINE: 763 >>> Processed Test Case: switchDoubleBuffer_Switch0To1 -(I) @LINE: 699 +(I) @LINE: 769 >>> Processing Test Case: switchDoubleBuffer_Switch1To0 -(S) @LINE: 704 +(S) @LINE: 774 >>> Processed Test Case: switchDoubleBuffer_Switch1To0 -(S) @LINE: 704 +(S) @LINE: 774 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-31 15:09:27 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:24:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -194,12 +999,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-07-31 15:09:27 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:24:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -208,207 +1013,214 @@ Running: initCommBuffers_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.clearBuffer test cases Running: clearBuffer_InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: clearBuffer_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.addToCommBuffer test cases Running: InsufficientSpaceForAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InsufficientSpaceForAdd_NotFirstTime_NotPersisted Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InsufficientSpaceForAdd_NotFirstTime_Persisted_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd_ClearLastOverflow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd_NoClearLastOverflow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: TransmitDisabled + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: TransmitDisabled_ReceivedData + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all CommBuffers.getFromCommBuffer test cases Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.peekFromCommBuffer test cases Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulPeekFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulPeekFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: peekFromCommBuffer_InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.numberOfBytesInCommBuffer test cases - Running: numberOfBytesInCommBuffer_BufferLocked - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: numberOfBytesInCommBuffer_InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: numberOfBytesInCommBuffer_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.switchDoubleBuffer test cases Running: switchDoubleBuffer_Switch0To1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: switchDoubleBuffer_Switch1To0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.getDataFromInactiveBuffer test cases Running: ConsumeAllDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ConsumePortionOfDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:09:29 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:24: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/2347984748/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env" Initializing search list Creating the Environment Directory Creating Environment "CONDUCTIVITYSENSORS" @@ -437,18 +1249,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:09:31 +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:24:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -465,7 +1277,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: calcCompensatedConductivity_At_25_C_Temp (S) @LINE: 28 @@ -588,13 +1400,13 @@ >>> Processed Test Case: testSetConductivityOverride_Override (S) @LINE: 391 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:09:33 +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:24:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -604,12 +1416,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:09:33 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:24:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -618,231 +1430,231 @@ Running: initConductivitySensors_nominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.execConductivitySensors test cases Running: execConductivitySensors_Broadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execConductivitySensors_No_Broadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.checkInletWaterConductivity test cases Running: checkInletWaterConductivity_Greater_Than_Max 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterConductivity_Less_Than_Min 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.getConductivityValue test cases Running: getConductivityValue_Invalid_Sensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getConductivityValue_No_Overide Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getConductivityValue_Overide Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.calcCompensatedConductivity test cases Running: calcCompensatedConductivity_At_25_C_Temp Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: calcCompensatedConductivity_At_Zero_Conductivity Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: calcCompensatedConductivity_Pos_Conductivity_At_20_C_Temp Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: calcCompensatedConductivity_Pos_Conductivity_At_28_C_Temp Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.processCPiCPoSensorRead test cases Running: processCPiCPoSensorRead_FPGA_Error_Not_Zero_Exceed_Window_Time Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processCPiCPoSensorRead_FPGA_Error_Not_Zero_In_Window_Time Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Greater_Than_Prev Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processCPiCPoSensorRead_FPGA_No_Error_FPGA_Count_Less_Than_Prev Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processCPiCPoSensorRead_Same_FPGA_Reading Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.getConductivityDataPublishInterval test cases Running: getConductivityDataPublishInterval_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getConductivityDataPublishInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.testSetConductivityOverride test cases Running: testSetConductivityOverride_Invalid_Sensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetConductivityOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetConductivityOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.testResetConductivityOverride test cases Running: testResetConductivityOverride_Invalid_Sensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetConductivityOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetConductivityOverride_Not_LoggedIn_Valid_Sensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetConductivityOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.testSetConductivityDataPublishIntervalOverride test cases Running: testSetConductivityDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetConductivityDataPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ConductivitySensors.testResetConductivityDataPublishIntervalOverride test cases Running: testResetConductivityDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetConductivityDataPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:09:34 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:24: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/2400209084/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env" Initializing search list Creating the Environment Directory Creating Environment "DRAINPUMP" @@ -872,18 +1684,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:09:37 +COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:24: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/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -903,7 +1715,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execDrainPumpController_ControlState (S) @LINE: 36 @@ -1026,13 +1838,13 @@ >>> Processed Test Case: testSetTargetDrainPumpSpeedOverride_Override (S) @LINE: 490 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:09:39 +COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:24: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/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1041,13 +1853,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:09:39 +COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:24:40 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/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1058,18 +1870,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr (S) @LINE: 45 >>> Source file matched DrainPump.c (S) @LINE: 109 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:09:40 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:24:41 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/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1078,235 +1890,235 @@ Running: initDrainPump_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.setDrainPumpTargetSpeed test cases Running: setDrainPumpTargetSpeed_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setDrainPumpTargetSpeed_TooHigh Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setDrainPumpTargetSpeed_TooLow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setDrainPumpTargetSpeed_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.signalDrainPumpHardStop test cases Running: signalDrainPumpHardStop_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.execDrainPumpMonitor test cases Running: execDrainPumpMonitor_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.execDrainPumpController test cases Running: execDrainPumpController_ControlState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainPumpController_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainPumpController_OffState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.handleDrainPumpOffState test cases Running: handleDrainPumpOffState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDrainPumpOffState_ToControl Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.handleDrainPumpControlToTargetState test cases Running: handleDrainPumpControlToTargetState_Control Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDrainPumpControlToTargetState_NoControl Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDrainPumpControlToTargetState_Stop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.stopDrainPump test cases Running: stopDrainPump_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.getPublishDrainPumpDataInterval test cases Running: getPublishDrainPumpDataInterval_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishDrainPumpDataInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.getTargetDrainPumpSpeed test cases Running: getTargetDrainPumpSpeed_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getTargetDrainPumpSpeed_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.publishDrainPumpData test cases Running: publishDrainPumpData_NotTime Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: publishDrainPumpData_TimeToBroadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.testSetDrainPumpDataPublishIntervalOverride test cases Running: testSetDrainPumpDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetDrainPumpDataPublishIntervalOverride_Overrride Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.testResetDrainPumpDataPublishIntervalOverride test cases Running: testResetDrainPumpDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetDrainPumpDataPublishIntervalOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.testSetTargetDrainPumpSpeedOverride test cases Running: testSetTargetDrainPumpSpeedOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetTargetDrainPumpSpeedOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all DrainPump.testResetTargetDrainPumpSpeedOverride test cases Running: testResetTargetDrainPumpSpeedOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetTargetDrainPumpSpeedOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/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/1963167139/HEATERS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:09:41 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:24: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/1963167139/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env" Initializing search list Creating the Environment Directory Creating Environment "HEATERS" @@ -1316,7 +2128,7 @@ Generating harness code Saving unit data Parsing Heaters - Unit 9 (tdd-sbf-source): Heaters + Unit 9 (stub-by-function): Heaters Loading stored IL Initializing parse data Generating harness code @@ -1336,18 +2148,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:09:44 +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:24:46 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/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -1367,7 +2179,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execHeatersMonitor_RO_Pump_Off (S) @LINE: 31 @@ -1566,13 +2378,13 @@ >>> Processed Test Case: testSetHeatersPublishIntervalOverride_Log_Not_Activated (S) @LINE: 616 >>> 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-07-31 15:09:46 +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:24:48 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/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1581,13 +2393,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:09:46 +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:24: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/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1598,18 +2410,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr (S) @LINE: 45 >>> Source file matched Heaters.c -(S) @LINE: 413 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr +(S) @LINE: 334 + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/HEATERS/HEATERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:09:47 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:24:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -1618,376 +2430,376 @@ Running: initHeaters_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.setPrimaryHeaterTargetTemperature test cases Running: setPrimaryHeaterTargetTemperature_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.setTrimmerHeaterTargetTemperature test cases Running: setTrimmerHeaterTargetTemperature_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.startPrimaryHeater test cases Running: startPrimaryHeater_Temperature_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startPrimaryHeater_Temperature_Max Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startPrimaryHeater_Temperature_Min Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.startTrimmerHeater test cases Running: startTrimmerHeater_Temperature_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startTrimmerHeater_Temperature_Max Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startTrimmerHeater_Temperature_Min Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.stopPrimaryHeater test cases Running: stopPrimaryHeater_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.stopTrimmerHeater test cases Running: stopTrimmerHeater_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.execHeatersMonitor test cases Running: execHeatersMonitor_RO_Pump_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execHeatersMonitor_RO_Pump_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.execHeatersSelfTest test cases Running: execHeatersSelfTes_Test_Complete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execHeatersSelfTes_Test_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execHeatersSelfTes_Test_Main_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execHeatersSelfTes_Test_Small_Primary_And_Trimmer_Heaters Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execHeatersSelfTest_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.execPrimaryHeaters test cases Running: execPrimaryHeaters_Control_To_Target_State Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPrimaryHeaters_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPrimaryHeaters_Off_State_Heater_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPrimaryHeaters_Off_State_Heater_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.execTrimmerHeater test cases Running: execTrimmerHeater_Control_To_Target_State Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTrimmerHeater_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTrimmerHeater_Off_State Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.handlePrimaryHeaterStateOff test cases Running: handlePrimaryHeaterStateOff_Heater_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePrimaryHeaterStateOff_Heater_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.handlePrimaryHeaterStateControlToTarget test cases Running: handlePrimaryHeaterStateControlToTarget_Control_DC_Greater_Than_89_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePrimaryHeaterStateControlToTarget_Control_DC_Less_Than_89_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePrimaryHeaterStateControlToTarget_Not_Control_Heater_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePrimaryHeaterStateControlToTarget_Not_Control_Not_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.handleTrimmerHeaterStateOff test cases Running: handleTrimmerHeaterStateOff_Heater_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTrimmerHeaterStateOff_Heater_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.handleTrimmerHeaterControlToTarget test cases Running: handleTrimmerHeaterControlToTarget_Control_Not_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTrimmerHeaterControlToTarget_Not_Control_Not_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTrimmerHeaterControlToTarget_Not_Control_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.setMainPrimaryHeaterPWM test cases Running: setMainPrimaryHeaterPWM_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.setSmallPrimaryHeaterPWM test cases Running: setSmallPrimaryHeaterPWM_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.setTrimmerHeaterPWM test cases Running: setTrimmerHeaterPWM_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.resetHeaterState test cases Running: resetHeaterState_No_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: resetHeaterState_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.getPublishHeatersDataInterval test cases Running: getPublishHeatersDataInterval_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishHeatersDataInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.publishHeatersData test cases Running: publishTemperatureData_No_Publish Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: publishTemperatureData_Publish Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.testSetHeatersPublishIntervalOverride test cases Running: testSetHeatersPublishIntervalOverride_Log_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetHeatersPublishIntervalOverride_Log_Not_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Heaters.testResetHeatersPublishIntervalOverride test cases Running: testResetHeatersPublishIntervalOverride_Log_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetHeatersPublishIntervalOverride_Log_Not_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS/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/3825867763/INTERNALADC.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:09:48 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:24: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/3825867763/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env" Initializing search list Creating the Environment Directory Creating Environment "INTERNALADC" @@ -2016,18 +2828,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:09:51 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:24:55 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/3825867763/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -2046,7 +2858,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp (I) @LINE: 24 >>> Processing Test Case: adcNotification_NominalPath (S) @LINE: 28 @@ -2077,13 +2889,13 @@ >>> Processed Test Case: initInternalADC_NominalPath (S) @LINE: 315 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:09:52 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:24:57 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/3825867763/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2093,12 +2905,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:09:53 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:24:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2107,63 +2919,63 @@ Running: initInternalADC_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all InternalADC.adcNotification test cases Running: adcNotification_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: adcNotification_WrongGroup Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all InternalADC.execInternalADC test cases Running: execInternalADC_InvalidChannelCount Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execInternalADC_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all InternalADC.getIntADCReading test cases Running: getIntADCReading_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getIntADCReading_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC/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/3499035493/INTERRUPTS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:09:53 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14: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/3499035493/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env" Initializing search list Creating the Environment Directory Creating Environment "INTERRUPTS" @@ -2193,18 +3005,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:09:56 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14:25:03 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/3499035493/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -2214,86 +3026,133 @@ Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 - Processing script line 250 + Processing script line 150 + Processing script line 300 + Processing script line 350 + Processing script line 400 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: canErrorNotification_BusOff -(S) @LINE: 34 - >>> Processed Test Case: canErrorNotification_BusOff -(I) @LINE: 40 - >>> Processing Test Case: canErrorNotification_BusPassive -(S) @LINE: 50 - >>> Processed Test Case: canErrorNotification_BusPassive -(I) @LINE: 56 + >>> Processing Test Case: canErrorNotification_BusOff_Alarm +(S) @LINE: 39 + >>> Processed Test Case: canErrorNotification_BusOff_Alarm +(I) @LINE: 45 + >>> Processing Test Case: canErrorNotification_BusOff_NoPersistence +(S) @LINE: 57 + >>> Processed Test Case: canErrorNotification_BusOff_NoPersistence +(I) @LINE: 63 + >>> Processing Test Case: canErrorNotification_BusPassive_Alarm +(S) @LINE: 78 + >>> Processed Test Case: canErrorNotification_BusPassive_Alarm +(I) @LINE: 84 + >>> Processing Test Case: canErrorNotification_BusPassive_NoPersistence +(S) @LINE: 96 + >>> Processed Test Case: canErrorNotification_BusPassive_NoPersistence +(I) @LINE: 102 >>> Processing Test Case: canErrorNotification_BusWarning -(S) @LINE: 66 +(S) @LINE: 112 >>> Processed Test Case: canErrorNotification_BusWarning -(I) @LINE: 72 +(I) @LINE: 118 >>> Processing Test Case: canErrorNotification_InvalidCANNode -(S) @LINE: 82 +(S) @LINE: 128 >>> Processed Test Case: canErrorNotification_InvalidCANNode -(I) @LINE: 88 +(I) @LINE: 134 >>> Processing Test Case: canErrorNotification_Other -(S) @LINE: 98 +(S) @LINE: 144 >>> Processed Test Case: canErrorNotification_Other -(I) @LINE: 104 - >>> Processing Test Case: canErrorNotification_ParityError -(S) @LINE: 114 - >>> Processed Test Case: canErrorNotification_ParityError -(I) @LINE: 122 +(I) @LINE: 150 + >>> Processing Test Case: canErrorNotification_ParityError_Alarm +(S) @LINE: 165 + >>> Processed Test Case: canErrorNotification_ParityError_Alarm +(I) @LINE: 171 + >>> Processing Test Case: canErrorNotification_ParityError_NoPersistence +(S) @LINE: 183 + >>> Processed Test Case: canErrorNotification_ParityError_NoPersistence +(I) @LINE: 191 >>> Processing Test Case: InvalidCANNode -(S) @LINE: 129 +(S) @LINE: 198 >>> Processed Test Case: InvalidCANNode -(I) @LINE: 135 +(I) @LINE: 204 >>> Processing Test Case: NominalPath -(S) @LINE: 137 +(S) @LINE: 207 >>> Processed Test Case: NominalPath -(I) @LINE: 145 +(I) @LINE: 215 >>> Processing Test Case: DMAChannel0 -(S) @LINE: 154 +(S) @LINE: 224 >>> Processed Test Case: DMAChannel0 -(I) @LINE: 160 +(I) @LINE: 230 >>> Processing Test Case: DMAChannel2 -(S) @LINE: 169 +(S) @LINE: 239 >>> Processed Test Case: DMAChannel2 -(I) @LINE: 175 +(I) @LINE: 245 >>> Processing Test Case: InvalidChannel -(S) @LINE: 182 +(S) @LINE: 252 >>> Processed Test Case: InvalidChannel -(I) @LINE: 188 +(I) @LINE: 258 >>> Processing Test Case: UnexpectedInterruptType -(S) @LINE: 195 +(S) @LINE: 265 >>> Processed Test Case: UnexpectedInterruptType -(I) @LINE: 203 +(I) @LINE: 273 + >>> Processing Test Case: initInterrupts_NominalPath +(S) @LINE: 277 + >>> Processed Test Case: initInterrupts_NominalPath +(I) @LINE: 285 >>> Processing Test Case: NominalPath -(S) @LINE: 208 +(S) @LINE: 290 >>> Processed Test Case: NominalPath -(I) @LINE: 216 - >>> Processing Test Case: FramingError_SCI2 -(S) @LINE: 223 - >>> Processed Test Case: FramingError_SCI2 -(I) @LINE: 229 +(I) @LINE: 298 + >>> Processing Test Case: rtiNotification_GeneralTask +(S) @LINE: 305 + >>> Processed Test Case: rtiNotification_GeneralTask +(I) @LINE: 311 + >>> Processing Test Case: rtiNotification_InvalidRTI +(S) @LINE: 317 + >>> Processed Test Case: rtiNotification_InvalidRTI +(I) @LINE: 323 + >>> Processing Test Case: rtiNotification_NotUsed +(S) @LINE: 329 + >>> Processed Test Case: rtiNotification_NotUsed +(I) @LINE: 335 + >>> Processing Test Case: rtiNotification_PriorityTask +(S) @LINE: 342 + >>> Processed Test Case: rtiNotification_PriorityTask +(I) @LINE: 348 + >>> Processing Test Case: rtiNotification_TimerTask +(S) @LINE: 355 + >>> Processed Test Case: rtiNotification_TimerTask +(I) @LINE: 363 + >>> Processing Test Case: FramingError_SCI2_Alarm +(S) @LINE: 375 + >>> Processed Test Case: FramingError_SCI2_Alarm +(I) @LINE: 381 + >>> Processing Test Case: FramingError_SCI2_NoPersistence +(S) @LINE: 390 + >>> Processed Test Case: FramingError_SCI2_NoPersistence +(I) @LINE: 396 >>> Processing Test Case: InvalidSCI -(S) @LINE: 237 +(S) @LINE: 404 >>> Processed Test Case: InvalidSCI -(I) @LINE: 243 - >>> Processing Test Case: OverrunError_SCI2 -(S) @LINE: 250 - >>> Processed Test Case: OverrunError_SCI2 -(S) @LINE: 250 +(I) @LINE: 410 + >>> Processing Test Case: OverrunError_SCI2_Alarm +(S) @LINE: 422 + >>> Processed Test Case: OverrunError_SCI2_Alarm +(I) @LINE: 428 + >>> Processing Test Case: OverrunError_SCI2_NoPersistence +(S) @LINE: 437 + >>> Processed Test Case: OverrunError_SCI2_NoPersistence +(S) @LINE: 437 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:09:57 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14:25:05 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/3499035493/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2303,148 +3162,527 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:09:58 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14:25:05 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/3499035493/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open + Running all Interrupts.initInterrupts test cases + Running: initInterrupts_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Interrupts.phantomInterrupt test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Interrupts.rtiNotification test cases + Running: rtiNotification_GeneralTask + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: rtiNotification_InvalidRTI + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: rtiNotification_NotUsed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: rtiNotification_PriorityTask + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: rtiNotification_TimerTask + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Interrupts.canMessageNotification test cases Running: InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Interrupts.canErrorNotification test cases - Running: canErrorNotification_BusOff + Running: canErrorNotification_BusOff_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: canErrorNotification_BusPassive + Running: canErrorNotification_BusOff_NoPersistence Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: canErrorNotification_BusPassive_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: canErrorNotification_BusPassive_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: canErrorNotification_BusWarning Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_Other Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: canErrorNotification_ParityError + Running: canErrorNotification_ParityError_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: canErrorNotification_ParityError_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Interrupts.sciNotification test cases - Running: FramingError_SCI2 + Running: FramingError_SCI2_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: FramingError_SCI2_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: InvalidSCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OverrunError_SCI2 + Running: OverrunError_SCI2_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: OverrunError_SCI2_NoPersistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Interrupts.dmaGroupANotification test cases Running: DMAChannel0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: DMAChannel2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidChannel Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: UnexpectedInterruptType Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS/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/925127052/INT_COMMBUFFERS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-31 15:09:59 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:25:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env" Initializing search list Creating the Environment Directory + Creating Environment "INT_ACCEL" + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ + File: SystemCommMessages.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ + File: TaskPriority.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/FWCommon/ + File: Accel.c (using cached data) + QuickParse Utility Completed + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing ModeInitPOST + Parsing SystemCommMessages + Parsing TaskPriority + Parsing Accel + Parsing sys_main + Unit 9 (stub-by-function): ModeInitPOST + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 11 (stub-by-function): SystemCommMessages + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 12 (stub-by-function): TaskPriority + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 13 (stub-by-function): Accel + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 14 (stub-by-function): sys_main + 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 ModeInitPOST + Compiling file ModeInitPOST + Instrumenting file SystemCommMessages + Compiling file SystemCommMessages + Instrumenting file TaskPriority + Compiling file TaskPriority + Instrumenting file Accel + Compiling file Accel + Instrumenting file sys_main + Compiling file sys_main + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:25:16 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Processing script line 100 + Processing script line 200 + Processing script line 250 + Processing script line 300 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: execAccelTest1 +(S) @LINE: 35 + >>> Processed Test Case: execAccelTest1 +(I) @LINE: 41 + >>> Processing Test Case: execAccelTest2 +(S) @LINE: 51 + >>> Processed Test Case: execAccelTest2 +(I) @LINE: 61 + >>> Processing Test Case: setAccelCalibration +(S) @LINE: 89 + >>> Processed Test Case: setAccelCalibration +(I) @LINE: 97 + >>> Processing Test Case: testResetAccelDataPublishIntervalOverride +(S) @LINE: 117 + >>> Processed Test Case: testResetAccelDataPublishIntervalOverride +(I) @LINE: 123 + >>> Processing Test Case: testSetAccelDataPublishIntervalOverride +(S) @LINE: 143 + >>> Processed Test Case: testSetAccelDataPublishIntervalOverride +(I) @LINE: 151 + >>> Processing Test Case: testResetAccelMaxOverride +(S) @LINE: 175 + >>> Processed Test Case: testResetAccelMaxOverride +(I) @LINE: 181 + >>> Processing Test Case: testSetAccelMaxOverride +(S) @LINE: 205 + >>> Processed Test Case: testSetAccelMaxOverride +(I) @LINE: 213 + >>> Processing Test Case: testResetAccelAxisOverride +(S) @LINE: 237 + >>> Processed Test Case: testResetAccelAxisOverride +(I) @LINE: 243 + >>> Processing Test Case: testSetAccelAxisOverride +(S) @LINE: 267 + >>> Processed Test Case: testSetAccelAxisOverride +(I) @LINE: 277 + >>> Processing Test Case: execAccel +(S) @LINE: 317 + >>> Processed Test Case: execAccel +(I) @LINE: 327 + >>> Processing Test Case: initAccel +(S) @LINE: 338 + >>> Processed Test Case: initAccel +(S) @LINE: 338 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:25:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/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_ACCEL tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:25:19 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Coverage Import Script File + Script Creation Completed +-------------------------------------------------------------------------------- +Coverage Import/Export Log +-------------------------------------------------------------------------------- +(S) @LINE: 1 + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr +(S) @LINE: 45 + >>> Source file matched ModeInitPOST.c +(S) @LINE: 67 + >>> Source file matched SystemCommMessages.c +(S) @LINE: 89 + >>> Source file matched TaskPriority.c +(S) @LINE: 111 + >>> Source file matched Accel.c +(S) @LINE: 133 + >>> Source file matched sys_main.c +(S) @LINE: 151 + >>> File processing completed for /home/fw/wsdg/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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:25:19 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all ModeInitPOST.execInitAndPOSTMode test cases + Running: execAccelTest1 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execAccelTest2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelOverrideRequest test cases + Running: testResetAccelAxisOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelAxisOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelMaxOverrideRequest test cases + Running: testResetAccelMaxOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelMaxOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelBroadcastIntervalOverrideRequest test cases + Running: testResetAccelDataPublishIntervalOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetAccelDataPublishIntervalOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleSetAccelCalibration test cases + Running: setAccelCalibration + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all TaskPriority.taskPriority test cases + Running: execAccel + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all sys_main.initSoftware test cases + Running: initAccel + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:25:21 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env" + Initializing search list + Creating the Environment Directory Creating Environment "INT_COMMBUFFERS" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: MsgQueues.c (using cached data) File: SystemComm.c (using cached data) @@ -2507,18 +3745,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-31 15:10:05 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:25:29 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/925127052/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -2533,28 +3771,28 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: peekAndgetFromAndNumberOfBytesInCommBuffer (S) @LINE: 46 >>> Processed Test Case: peekAndgetFromAndNumberOfBytesInCommBuffer (I) @LINE: 56 >>> Processing Test Case: addToCommBuffer -(S) @LINE: 78 +(S) @LINE: 84 >>> Processed Test Case: addToCommBuffer -(I) @LINE: 88 +(I) @LINE: 94 >>> Processing Test Case: initCommBuffers -(S) @LINE: 113 +(S) @LINE: 119 >>> Processed Test Case: initCommBuffers -(S) @LINE: 113 +(S) @LINE: 119 >>> 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-07-31 15:10:07 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:25:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2564,12 +3802,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-31 15:10:07 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:25:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2578,52 +3816,52 @@ Running: peekAndgetFromAndNumberOfBytesInCommBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSwitchReservoirCmd test cases Running: addToCommBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initCommBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:10:08 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:25: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/3065853561/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_CONDUCTIVITYSENSORS" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: ConductivitySensors.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) File: ModeFill.c (using cached data) File: ModeRecirculate.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -2700,18 +3938,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:10:16 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:25:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -2728,7 +3966,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execDrainMode_Check_Inlet_Water_Conduction (S) @LINE: 33 @@ -2767,13 +4005,13 @@ >>> Processed Test Case: initSoftware_initConductivitySensors (S) @LINE: 229 >>> 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-07-31 15:10:18 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:25: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/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2782,13 +4020,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:10:18 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:25:46 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/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2799,18 +4037,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr (E) @LINE: 1 - >>> Script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr did not contain any relevant coverage data + >>> Script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr did not contain any relevant coverage data (S) @LINE: 1 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CONDUCTIVITYSENSORS/INT_CONDUCTIVITYSENSORS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:10:19 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:25:47 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/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -2819,96 +4057,96 @@ Running: execDrainMode_Check_Inlet_Water_Conduction Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.execFillMode test cases Running: execFillMode_Check_Inlet_Water_Conductivity Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.execRecirculateMode test cases Running: execRecirculateMode_Check_Inlet_Water_Conductivity Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestSetConductivityOverrideRequest test cases Running: OverrideResetSetConductivity Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OverrideTestSetConductivity Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestSetConductivityDataPublishIntervalOverrideRequest test cases Running: OverrideResetConductivityDataPublishInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OverrideSetConductivityDataPublishInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: taskPriority_execConductivitySensors Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initSoftware_initConductivitySensors Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:10:20 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:25: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/194968077/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env" Initializing search list Creating the Environment Directory Creating Environment "INT_DRAINPUMP" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: DrainPump.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) File: TaskPriority.c (using cached data) QuickParse Utility Completed @@ -2978,18 +4216,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:10:27 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:25:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -3005,7 +4243,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp (I) @LINE: 24 >>> Processing Test Case: setDrainPumpTargetSpeed (S) @LINE: 38 @@ -3044,13 +4282,13 @@ >>> Processed Test Case: initDrainPump (S) @LINE: 217 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:10:29 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:26:00 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/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3059,13 +4297,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:10:30 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:26:01 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/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3076,7 +4314,7 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr (S) @LINE: 45 >>> Source file matched DrainPump.c (S) @LINE: 67 @@ -3090,14 +4328,14 @@ (S) @LINE: 155 >>> Source file matched sys_main.c (S) @LINE: 173 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:10:30 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:26:01 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/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3106,96 +4344,96 @@ Running: setDrainPumpTargetSpeed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpSetPointOverrideRequest test cases Running: OverrideDrainPumpSetPoint Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideDrainPumpSetPoint Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpDataBroadcastIntervalOverrideRequest test cases Running: OverrideBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskGeneral.taskGeneral test cases Running: execDrainPumpController Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainPumpController2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: execDrainPumpMonitor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initDrainPump Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/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/865302348/INT_HEATERS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-31 15:10:31 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-08-19 14:26: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/865302348/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_HEATERS" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: Heaters.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: Reservoirs.c (using cached data) File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) File: TaskPriority.c (using cached data) QuickParse Utility Completed @@ -3273,18 +4511,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-31 15:10:39 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-08-19 14:26:13 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/865302348/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -3293,106 +4531,106 @@ Test Script Maintenance Started Test Script Maintenance Complete (0) Translated 0 script lines - Processing script line 50 Processing script line 100 Processing script line 150 - Processing script line 200 Processing script line 250 Processing script line 300 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execInitAndPOSTMode_Start_Heaters -(S) @LINE: 29 +(E) Errors from previous script import(s) + >>> (E) @LINE: 26 TEST.VALUE:ModeInitPOST.<>.postState:POST_STATE_HEATERS + >>> >>> Value for 'Enumeral' out of range + >>> >>> Read "POST_STATE_HEATERS" + >>> >>> Command Ignored +(S) @LINE: 36 >>> Processed Test Case: execInitAndPOSTMode_Start_Heaters -(I) @LINE: 35 +(I) @LINE: 42 >>> Processing Test Case: execInitAndPOSTMode_Start_Main_Primary_Heater -(S) @LINE: 40 +(S) @LINE: 47 >>> Processed Test Case: execInitAndPOSTMode_Start_Main_Primary_Heater -(I) @LINE: 46 +(I) @LINE: 53 >>> Processing Test Case: execInitAndPOSTMode_Start_Small_Primary_Heater -(S) @LINE: 51 +(S) @LINE: 58 >>> Processed Test Case: execInitAndPOSTMode_Start_Small_Primary_Heater -(I) @LINE: 61 +(I) @LINE: 68 >>> Processing Test Case: handleSetDialysateTemperatureCmd_Set_Temperature -(S) @LINE: 78 +(S) @LINE: 85 >>> Processed Test Case: handleSetDialysateTemperatureCmd_Set_Temperature -(I) @LINE: 86 +(I) @LINE: 93 >>> Processing Test Case: handleStartStopPrimaryHeater_Start_Primary_Heater -(S) @LINE: 101 +(S) @LINE: 108 >>> Processed Test Case: handleStartStopPrimaryHeater_Start_Primary_Heater -(I) @LINE: 107 +(I) @LINE: 114 >>> Processing Test Case: handleStartStopPrimaryHeater_Stop_Primary_Heater -(S) @LINE: 122 +(E) @LINE: 134 TEST.ATTRIBUTES:SystemCommMessages.handleStartStopTrimmerHeaterCmd.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 129 TEST.ATTRIBUTES:SystemCommMessages.handleStartStopTrimmerHeaterCmd.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 135 >>> Processed Test Case: handleStartStopPrimaryHeater_Stop_Primary_Heater -(I) @LINE: 130 +(I) @LINE: 143 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Start -(S) @LINE: 142 +(S) @LINE: 155 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Start -(I) @LINE: 148 +(I) @LINE: 161 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Stop -(S) @LINE: 159 +(S) @LINE: 172 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Stop -(I) @LINE: 167 +(I) @LINE: 180 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_No_Override -(S) @LINE: 182 +(S) @LINE: 195 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_No_Override -(I) @LINE: 188 +(I) @LINE: 201 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_With_Override -(S) @LINE: 204 +(S) @LINE: 217 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_With_Override -(I) @LINE: 214 +(I) @LINE: 227 >>> Processing Test Case: taskGeneral_Exec_Heater_Off_State -(S) @LINE: 224 +(S) @LINE: 237 >>> Processed Test Case: taskGeneral_Exec_Heater_Off_State -(I) @LINE: 230 +(I) @LINE: 243 >>> Processing Test Case: taskGeneral_Exec_Heater_On_State_Control_Primary_Heater -(S) @LINE: 243 +(S) @LINE: 256 >>> Processed Test Case: taskGeneral_Exec_Heater_On_State_Control_Primary_Heater -(I) @LINE: 249 +(I) @LINE: 262 >>> Processing Test Case: taskGeneral_Exec_Heater_On_State_Control_Trimmer_Heater -(S) @LINE: 259 +(S) @LINE: 272 >>> Processed Test Case: taskGeneral_Exec_Heater_On_State_Control_Trimmer_Heater -(I) @LINE: 265 +(I) @LINE: 278 >>> Processing Test Case: taskGeneral_Exec_Heater_On_State_No_PI_Control -(S) @LINE: 275 +(S) @LINE: 288 >>> Processed Test Case: taskGeneral_Exec_Heater_On_State_No_PI_Control -(I) @LINE: 285 +(I) @LINE: 298 >>> Processing Test Case: taskPriority -(S) @LINE: 290 +(S) @LINE: 303 >>> Processed Test Case: taskPriority -(I) @LINE: 300 +(I) @LINE: 313 >>> Processing Test Case: initSoftware_initHeaters -(S) @LINE: 310 +(E) Errors from previous script import(s) + >>> (E) @LINE: 183 TEST.VALUE:Heaters.<>.heatersSelfTestState:HEATERS_SELF_TEST_START_SMALL_PRIMARY_AND_TRIMMER + >>> >>> Value for 'Enumeral' out of range + >>> >>> Read "HEATERS_SELF_TEST_START_SMALL_PRIMARY_AND_TRIMMER" + >>> >>> Command Ignored +(S) @LINE: 330 >>> Processed Test Case: initSoftware_initHeaters -(S) @LINE: 310 +(S) @LINE: 330 >>> 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-07-31 15:10:41 -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/865302348/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_HEATERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-31 15:10:42 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-08-19 14:26:15 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/865302348/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3401,143 +4639,143 @@ Running: execInitAndPOSTMode_Start_Heaters Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execInitAndPOSTMode_Start_Main_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execInitAndPOSTMode_Start_Small_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSetDialysateTemperatureCmd test cases Running: handleSetDialysateTemperatureCmd_Set_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTrimmerHeaterCmd test cases Running: handleStartStopTrimmerHeaterCmd_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTrimmerHeaterCmd_Stop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopPrimaryHeater test cases Running: handleStartStopPrimaryHeater_Start_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopPrimaryHeater_Stop_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestHeatersDataPublishOverrideRequest test cases Running: handleTestHeatersDataPublishOverrideRequest_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestHeatersDataPublishOverrideRequest_With_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskGeneral.taskGeneral test cases Running: taskGeneral_Exec_Heater_Off_State Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: taskGeneral_Exec_Heater_On_State_Control_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: taskGeneral_Exec_Heater_On_State_Control_Trimmer_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: taskGeneral_Exec_Heater_On_State_No_PI_Control Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: taskPriority Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initSoftware_initHeaters Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS/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/1672699515/INT_LOADCELL.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:10:43 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:26:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env" Initializing search list Creating the Environment Directory Creating Environment "INT_LOADCELL" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: LoadCell.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -3589,18 +4827,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:10:49 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:26:24 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/1672699515/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -3616,7 +4854,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp (I) @LINE: 24 >>> Processing Test Case: OverrideLoadCellBroadcastInterval (S) @LINE: 42 @@ -3643,13 +4881,13 @@ >>> Processed Test Case: initLoadCell (S) @LINE: 186 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:10:50 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:26:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3659,12 +4897,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:10:51 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:26:27 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/1672699515/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3673,60 +4911,60 @@ Running: OverrideLoadCell Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideLoadCell Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest test cases Running: OverrideLoadCellBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideLoadCellBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: execLoadCell Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initLoadCell Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL/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/9217169/INT_MODEDRAIN.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:10:52 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14: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/9217169/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MODEDRAIN" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) File: OperationModes.c (using cached data) QuickParse Utility Completed @@ -3763,18 +5001,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:10:55 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:26:33 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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -3789,7 +5027,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execDrainMode_Drain (S) @LINE: 29 @@ -3808,13 +5046,13 @@ >>> Processed Test Case: transitionToDrainMode (S) @LINE: 64 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:10:56 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:26:35 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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3823,13 +5061,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:10:57 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:26: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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3840,20 +5078,20 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr (S) @LINE: 45 >>> Source file matched ModeDrain.c (S) @LINE: 67 >>> Source file matched OperationModes.c (S) @LINE: 85 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:10:57 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:26: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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3862,45 +5100,45 @@ Running: initDrainMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: execDrainMode_Drain Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainMode_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: transitionToDrainMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN/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/4235259824/INT_MODEFILL.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:10:58 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:26:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MODEFILL" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeFill.c (using cached data) File: OperationModes.c (using cached data) QuickParse Utility Completed @@ -3937,18 +5175,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:11:01 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:26:42 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -3963,7 +5201,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execFillModeDeliverDialysate (S) @LINE: 33 @@ -3986,13 +5224,13 @@ >>> Processed Test Case: transitionToNewOperationMode.transitionToFillMode (S) @LINE: 80 >>> 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-07-31 15:11:03 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:26:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4001,13 +5239,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:11:03 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:26: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/4235259824/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4018,20 +5256,20 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr (S) @LINE: 45 >>> Source file matched ModeFill.c (S) @LINE: 67 >>> Source file matched OperationModes.c (S) @LINE: 85 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFILL/INT_MODEFILL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:11:04 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:26: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/4235259824/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4040,56 +5278,56 @@ Running: initOperationModes.initFillMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: execFillModeDeliverDialysate Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execFillModeProduceDialysate Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execFillModeStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: transitionToNewOperationMode.transitionToFillMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL/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/1236077553/INT_MODERECIRCULATE.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:11:05 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:26: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/1236077553/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MODERECIRCULATE" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeRecirculate.c (using cached data) File: OperationModes.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: Reservoirs.c (using cached data) File: SystemCommMessages.c (using cached data) QuickParse Utility Completed @@ -4142,18 +5380,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:11:10 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:26:54 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/1236077553/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -4169,7 +5407,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execRecirculateModeFlushLines (S) @LINE: 29 @@ -4204,13 +5442,13 @@ >>> Processed Test Case: requestDGStop (S) @LINE: 128 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:11:11 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:26:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4220,12 +5458,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:11:12 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:26:57 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/1236077553/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4234,79 +5472,79 @@ Running: initRecirculateMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: execRecirculateModeFlushLines Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateModePause Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateModeReCirc Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateModeStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: transitionToRecirculateMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.startFillCmd test cases Running: getRecirculateModeState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTreatmentMsg test cases Running: requestDGStop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE/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/3433100860/INT_MODESTANDBY.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:11:13 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14: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/3433100860/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MODESTANDBY" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeStandby.c (using cached data) File: OperationModes.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -4350,18 +5588,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:11:17 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:27:05 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/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -4377,7 +5615,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execStandbyModeIdle (S) @LINE: 29 @@ -4408,13 +5646,13 @@ >>> Processed Test Case: requestDGStart (S) @LINE: 123 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:11:19 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:27:07 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/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4423,13 +5661,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:11:19 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:27:08 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/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4440,22 +5678,22 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr (S) @LINE: 45 >>> Source file matched ModeStandby.c (S) @LINE: 67 >>> Source file matched OperationModes.c (S) @LINE: 89 >>> Source file matched SystemCommMessages.c (S) @LINE: 107 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:11:20 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:27:08 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/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4464,71 +5702,71 @@ Running: initStandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: execStandbyModeIdle Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execStandbyModeSampleWater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execStandbyModeStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: transitionToStandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTreatmentMsg test cases Running: requestDGStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSampleWaterCmd test cases Running: requestWaterSample Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY/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/3336905608/INT_MSGQUEUES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:11:21 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:27:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MSGQUEUES" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: MsgQueues.c (using cached data) File: SystemComm.c (using cached data) @@ -4591,18 +5829,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:11:27 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:27:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -4618,7 +5856,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: addToMsgQueue (S) @LINE: 54 @@ -4637,13 +5875,13 @@ >>> Processed Test Case: initMsgQueues (S) @LINE: 120 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:11:29 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:27:21 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/3336905608/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4653,12 +5891,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:11:29 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:27:22 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/3336905608/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4667,56 +5905,56 @@ Running: addToMsgQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processReceivedMessages test cases Running: getFromMsgQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.sendAckResponseMsg test cases Running: blankMessage Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initMsgQueues Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES/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/553544110/INT_OPERATIONMODES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-07-31 15:11:30 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14: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/553544110/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_OPERATIONMODES" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) File: OperationModes.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: Reservoirs.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -4776,18 +6014,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-07-31 15:11:36 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14:27:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -4802,7 +6040,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: requestNewOperationMode (S) @LINE: 34 @@ -4821,13 +6059,13 @@ >>> Processed Test Case: initOperationModes (S) @LINE: 83 >>> 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-07-31 15:11:38 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14:27:34 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/553544110/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4837,12 +6075,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-07-31 15:11:38 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14:27:34 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/553544110/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4851,56 +6089,60 @@ Running: requestNewOperationMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.setActiveReservoirCmd test cases Running: getCurrentOperationMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskGeneral.taskGeneral test cases Running: execOperationModes Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initOperationModes Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES/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/1468105384/INT_PRESSURES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:11:39 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:27: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 - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_PRESSURES" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: Pressures.c (using cached data) File: ROPump.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + File: ModeRecirculate.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -4910,6 +6152,8 @@ Saving unit data Parsing Pressures Parsing ROPump + Parsing ModeInitPOST + Parsing ModeRecirculate Parsing SystemCommMessages Parsing TaskPriority Parsing sys_main @@ -4923,21 +6167,31 @@ Initializing parse data Generating harness code Saving unit data - Unit 12 (stub-by-function): SystemCommMessages + Unit 12 (stub-by-function): ModeInitPOST Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 13 (stub-by-function): TaskPriority + Unit 13 (stub-by-function): ModeRecirculate Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 14 (stub-by-function): sys_main + Unit 14 (stub-by-function): SystemCommMessages Loading stored IL Initializing parse data Generating harness code Saving unit data + Unit 15 (stub-by-function): TaskPriority + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 16 (stub-by-function): sys_main + 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 @@ -4949,6 +6203,10 @@ Compiling file Pressures Instrumenting file ROPump Compiling file ROPump + Instrumenting file ModeInitPOST + Compiling file ModeInitPOST + Instrumenting file ModeRecirculate + Compiling file ModeRecirculate Instrumenting file SystemCommMessages Compiling file SystemCommMessages Instrumenting file TaskPriority @@ -4960,18 +6218,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:11:46 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:27:46 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/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -4988,48 +6246,64 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp (I) @LINE: 24 + >>> Processing Test Case: execInitAndPOSTMode_Check_ADC +(S) @LINE: 32 + >>> Processed Test Case: execInitAndPOSTMode_Check_ADC +(I) @LINE: 38 + >>> Processing Test Case: execInitAndPOSTMode_Complete +(S) @LINE: 44 + >>> Processed Test Case: execInitAndPOSTMode_Complete +(I) @LINE: 50 + >>> Processing Test Case: execInitAndPOSTMode_Start +(S) @LINE: 55 + >>> Processed Test Case: execInitAndPOSTMode_Start +(I) @LINE: 65 + >>> Processing Test Case: execRecirculateMode_Check_Inlet_Water_Pressure +(S) @LINE: 69 + >>> Processed Test Case: execRecirculateMode_Check_Inlet_Water_Pressure +(I) @LINE: 79 >>> Processing Test Case: getMeasuredDGPressure -(S) @LINE: 28 +(S) @LINE: 83 >>> Processed Test Case: getMeasuredDGPressure -(I) @LINE: 38 +(I) @LINE: 93 >>> Processing Test Case: OverridePressureBroadcastInterval -(S) @LINE: 56 +(S) @LINE: 111 >>> Processed Test Case: OverridePressureBroadcastInterval -(I) @LINE: 62 +(I) @LINE: 117 >>> Processing Test Case: ResetOverridePressureBroadcastInterval -(S) @LINE: 80 +(S) @LINE: 135 >>> Processed Test Case: ResetOverridePressureBroadcastInterval -(I) @LINE: 88 +(I) @LINE: 143 >>> Processing Test Case: OverridePressureSensor -(S) @LINE: 110 +(S) @LINE: 165 >>> Processed Test Case: OverridePressureSensor -(I) @LINE: 116 +(I) @LINE: 171 >>> Processing Test Case: ResetOverridePressureSensor -(S) @LINE: 138 +(S) @LINE: 193 >>> Processed Test Case: ResetOverridePressureSensor -(I) @LINE: 148 +(I) @LINE: 203 >>> Processing Test Case: execPressures1 -(S) @LINE: 151 +(S) @LINE: 206 >>> Processed Test Case: execPressures1 -(I) @LINE: 157 +(I) @LINE: 212 >>> Processing Test Case: execPressures2 -(S) @LINE: 175 +(S) @LINE: 230 >>> Processed Test Case: execPressures2 -(I) @LINE: 185 +(I) @LINE: 240 >>> Processing Test Case: initPressures -(S) @LINE: 188 +(S) @LINE: 243 >>> Processed Test Case: initPressures -(S) @LINE: 188 +(S) @LINE: 243 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:11:47 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:27:48 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/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5038,13 +6312,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:11:48 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:27: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/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5055,7 +6329,7 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr (S) @LINE: 45 >>> Source file matched Pressures.c (S) @LINE: 67 @@ -5066,15 +6340,24 @@ >>> Source file matched TaskPriority.c (S) @LINE: 133 >>> Source file matched sys_main.c + >>> Failed to find matching line for: + >>> Result: CBA_Pressures + >>> Unit: 9 + >>> Function: execPressuresTest + >>> Line Context: { + >>> Context After: SELF_TEST_STATUS_T result = SELF_TEST_STATUS_FAILED; +// TODO - implement self test(s) +(E) @LINE: 151 IMPORT.END + >>> Script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr did not contain any relevant coverage data (S) @LINE: 151 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PRESSURES/INT_PRESSURES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:11:49 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:27:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5083,88 +6366,118 @@ Running: getMeasuredDGPressure Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all ModeInitPOST.execInitAndPOSTMode test cases + Running: execInitAndPOSTMode_Check_ADC + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execInitAndPOSTMode_Complete + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execInitAndPOSTMode_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all ModeRecirculate.execRecirculateMode test cases + Running: execRecirculateMode_Check_Inlet_Water_Pressure + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleTestPressureSensorOverrideRequest test cases Running: OverridePressureSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverridePressureSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestPressureDataBroadcastIntervalOverrideRequest test cases Running: OverridePressureBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverridePressureBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: execPressures1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPressures2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initPressures Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES/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/3023750484/INT_RESERVOIRS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:11:50 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:27: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/3023750484/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_RESERVOIRS" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) File: ModeFill.c (using cached data) File: ModeRecirculate.c (using cached data) File: ModeStandby.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: Reservoirs.c (using cached data) File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -5248,18 +6561,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:11:58 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:28:02 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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -5276,7 +6589,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: getActiveReservoir (S) @LINE: 34 @@ -5315,13 +6628,13 @@ >>> Processed Test Case: initReservoirs (S) @LINE: 187 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:12:00 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:28:05 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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5330,13 +6643,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:12:00 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:28: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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5347,7 +6660,7 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr (S) @LINE: 45 >>> Source file matched ModeDrain.c (S) @LINE: 67 @@ -5365,14 +6678,14 @@ (S) @LINE: 199 >>> Source file matched sys_main.c (S) @LINE: 296 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:12:01 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:28:07 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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5381,99 +6694,99 @@ Running: getActiveReservoir Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.handleDeliverDialysateState test cases Running: getReservoirFillVolumeTargetMl Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSwitchReservoirCmd test cases Running: setActiveReservoirCmd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleFillCmd test cases Running: startFillCmd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleDrainCmd test cases Running: startDrainCmd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTrimmerHeaterCmd test cases Running: startTrimmerHeaterCmd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: stopTrimmerHeaterCmd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskGeneral.taskGeneral test cases Running: execReservoirs Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initReservoirs Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/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/3092074925/INT_ROPUMP.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:12:02 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:28:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env" Initializing search list Creating the Environment Directory Creating Environment "INT_ROPUMP" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: Heaters.c (using cached data) File: ROPump.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeRecirculate.c (using cached data) File: ModeStandby.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) File: TaskPriority.c (using cached data) QuickParse Utility Completed @@ -5559,18 +6872,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:12:11 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:28:21 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/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -5583,74 +6896,77 @@ Processing script line 100 Processing script line 150 Processing script line 200 - Processing script line 250 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp (I) @LINE: 24 >>> Processing Test Case: isReverseOsmosisPumpOn (S) @LINE: 37 >>> Processed Test Case: isReverseOsmosisPumpOn (I) @LINE: 47 - >>> Processing Test Case: setROPumpTargetPressure + >>> Processing Test Case: getMeasuredROFlowRate (S) @LINE: 56 + >>> Processed Test Case: getMeasuredROFlowRate +(I) @LINE: 64 + >>> Processing Test Case: setROPumpTargetPressure +(S) @LINE: 73 >>> Processed Test Case: setROPumpTargetPressure -(I) @LINE: 66 +(I) @LINE: 83 >>> Processing Test Case: signalROPumpHardStop -(S) @LINE: 73 +(S) @LINE: 90 >>> Processed Test Case: signalROPumpHardStop -(I) @LINE: 83 +(I) @LINE: 100 >>> Processing Test Case: OverrideROMeasuredFlow -(S) @LINE: 101 +(S) @LINE: 118 >>> Processed Test Case: OverrideROMeasuredFlow -(I) @LINE: 107 +(I) @LINE: 124 >>> Processing Test Case: ResetOverrideROMeasuredFlow -(S) @LINE: 125 +(S) @LINE: 142 >>> Processed Test Case: ResetOverrideROMeasuredFlow -(I) @LINE: 133 +(I) @LINE: 150 >>> Processing Test Case: OverrideROPumpBroadcastInterval -(S) @LINE: 151 +(S) @LINE: 168 >>> Processed Test Case: OverrideROPumpBroadcastInterval -(I) @LINE: 157 +(I) @LINE: 174 >>> Processing Test Case: ResetOverrideROPumpBroadcastInterval -(S) @LINE: 175 +(S) @LINE: 192 >>> Processed Test Case: ResetOverrideROPumpBroadcastInterval -(I) @LINE: 183 +(I) @LINE: 200 >>> Processing Test Case: OverrideROPumpSetPoint -(S) @LINE: 201 +(S) @LINE: 218 >>> Processed Test Case: OverrideROPumpSetPoint -(I) @LINE: 207 +(I) @LINE: 224 >>> Processing Test Case: ResetOverrideROPumpSetPoint -(S) @LINE: 225 +(S) @LINE: 242 >>> Processed Test Case: ResetOverrideROPumpSetPoint -(I) @LINE: 235 +(I) @LINE: 252 >>> Processing Test Case: execROPumpController1 -(S) @LINE: 250 +(S) @LINE: 267 >>> Processed Test Case: execROPumpController1 -(I) @LINE: 256 +(I) @LINE: 273 >>> Processing Test Case: execROPumpController2 -(S) @LINE: 274 +(S) @LINE: 291 >>> Processed Test Case: execROPumpController2 -(I) @LINE: 284 +(I) @LINE: 301 >>> Processing Test Case: execROPumpMonitor -(S) @LINE: 298 +(S) @LINE: 315 >>> Processed Test Case: execROPumpMonitor -(I) @LINE: 308 +(I) @LINE: 325 >>> Processing Test Case: initROPump -(S) @LINE: 313 +(S) @LINE: 330 >>> Processed Test Case: initROPump -(S) @LINE: 313 +(S) @LINE: 330 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:12:12 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:28:24 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/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5659,13 +6975,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:12:13 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:28:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5676,7 +6992,7 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr (S) @LINE: 45 >>> Source file matched Heaters.c (S) @LINE: 67 @@ -5693,15 +7009,15 @@ >>> Source file matched TaskPriority.c (S) @LINE: 199 >>> Source file matched sys_main.c -(S) @LINE: 229 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr +(S) @LINE: 217 + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:12:13 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:28:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -5710,117 +7026,125 @@ Running: isReverseOsmosisPumpOn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.transitionToRecirculateMode test cases Running: setROPumpTargetPressure Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all ModeRecirculate.handleFlushLinesState test cases + Running: getMeasuredROFlowRate + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ModeStandby.transitionToStandbyMode test cases Running: signalROPumpHardStop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROPumpSetPointOverrideRequest test cases Running: OverrideROPumpSetPoint Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideROPumpSetPoint Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROMeasuredFlowOverrideRequest test cases Running: OverrideROMeasuredFlow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideROMeasuredFlow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROPumpDataBroadcastIntervalOverrideRequest test cases Running: OverrideROPumpBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ResetOverrideROPumpBroadcastInterval Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskGeneral.taskGeneral test cases Running: execROPumpController1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpController2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: execROPumpMonitor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initROPump Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP/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/2381647150/INT_SYSTEMCOMMMESSAGES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:12:15 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:28: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/2381647150/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_SYSTEMCOMMMESSAGES" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/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/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: SystemComm.c (using cached data) File: SystemCommMessages.c (using cached data) @@ -5874,18 +7198,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:12:20 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:28:34 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -5894,9 +7218,10 @@ Test Script Maintenance Started Test Script Maintenance Complete (0) Translated 0 script lines - Processing script line 50 Processing script line 100 + Processing script line 150 Processing script line 200 + Processing script line 250 Processing script line 300 Processing script line 350 Processing script line 400 @@ -5905,174 +7230,200 @@ 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 900 + Processing script line 950 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execConductivitySensors_BroadcastData -(E) @LINE: 25 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:101.11 - >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR - >>> Command Ignored. -(E) @LINE: 26 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 - >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR - >>> Command Ignored. -(E) @LINE: 27 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].data:202.22 - >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR - >>> Command Ignored. -(E) @LINE: 28 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].override:0 - >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR - >>> Command Ignored. -(E) @LINE: 31 TEST.ATTRIBUTES:SystemComm.processReceivedMessage.message[0].hdr.msgID::INPUT_BASE=16 +(E) @LINE: 44 TEST.ATTRIBUTES:SystemComm.processReceivedMessage.message[0].hdr.msgID::INPUT_BASE=16 >>> Expected a field name from the record type MESSAGE_HEADER_T >>> Read: msgID::INPUT_BASE=16 -(S) @LINE: 32 +(E) Errors from previous script import(s) + >>> (E) @LINE: 25 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].data:101.11 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 26 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPI_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPI_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 27 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].data:202.22 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 28 TEST.VALUE:ConductivitySensors.<>.compensatedConductivityValues[CONDUCITIVYSENSORS_CPO_SENSOR].override:0 + >>> >>> Invalid array index value CONDUCITIVYSENSORS_CPO_SENSOR + >>> >>> Command Ignored. + >>> (E) @LINE: 31 TEST.ATTRIBUTES:SystemComm.processReceivedMessage.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 45 >>> Processed Test Case: execConductivitySensors_BroadcastData -(I) @LINE: 42 +(I) @LINE: 55 >>> Processing Test Case: A000_handleTesterLogInRequest -(S) @LINE: 60 +(S) @LINE: 73 >>> Processed Test Case: A000_handleTesterLogInRequest -(I) @LINE: 66 +(I) @LINE: 79 >>> Processing Test Case: A001_handleTestAlarmStateOverrideRequest -(S) @LINE: 88 +(S) @LINE: 101 >>> Processed Test Case: A001_handleTestAlarmStateOverrideRequest -(I) @LINE: 94 +(I) @LINE: 107 >>> Processing Test Case: A002_handleTestWatchdogCheckInStateOverrideRequest -(S) @LINE: 116 +(S) @LINE: 129 >>> Processed Test Case: A002_handleTestWatchdogCheckInStateOverrideRequest -(I) @LINE: 122 +(I) @LINE: 135 >>> Processing Test Case: A004_handleSetRTCTimestamp -(S) @LINE: 146 +(S) @LINE: 159 >>> Processed Test Case: A004_handleSetRTCTimestamp -(I) @LINE: 152 +(I) @LINE: 165 >>> Processing Test Case: A005_handleTestLoadCellOverrideRequest -(S) @LINE: 174 +(S) @LINE: 187 >>> Processed Test Case: A005_handleTestLoadCellOverrideRequest -(I) @LINE: 180 +(I) @LINE: 193 >>> Processing Test Case: A006_handleTestPressureSensorOverrideRequest -(S) @LINE: 202 +(S) @LINE: 215 >>> Processed Test Case: A006_handleTestPressureSensorOverrideRequest -(I) @LINE: 208 +(I) @LINE: 221 >>> Processing Test Case: A007_handleTestPressureDataBroadcastIntervalOverrideRequest -(S) @LINE: 225 +(S) @LINE: 238 >>> Processed Test Case: A007_handleTestPressureDataBroadcastIntervalOverrideRequest -(I) @LINE: 231 +(I) @LINE: 244 >>> Processing Test Case: A008_handleTestROPumpSetPointOverrideRequest -(S) @LINE: 248 +(S) @LINE: 261 >>> Processed Test Case: A008_handleTestROPumpSetPointOverrideRequest -(I) @LINE: 254 +(I) @LINE: 267 >>> Processing Test Case: A009_handleTestROMeasuredFlowOverrideRequest -(S) @LINE: 271 +(S) @LINE: 284 >>> Processed Test Case: A009_handleTestROMeasuredFlowOverrideRequest -(I) @LINE: 277 +(I) @LINE: 290 >>> Processing Test Case: A00A_handleTestROPumpDataBroadcastIntervalOverrideRequest -(S) @LINE: 294 +(S) @LINE: 307 >>> Processed Test Case: A00A_handleTestROPumpDataBroadcastIntervalOverrideRequest -(I) @LINE: 300 +(I) @LINE: 313 >>> Processing Test Case: A00B_handleTestDrainPumpSetPointOverrideRequest -(S) @LINE: 317 +(S) @LINE: 330 >>> Processed Test Case: A00B_handleTestDrainPumpSetPointOverrideRequest -(I) @LINE: 323 +(I) @LINE: 336 >>> Processing Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(S) @LINE: 340 +(S) @LINE: 353 >>> Processed Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(I) @LINE: 346 +(I) @LINE: 359 >>> Processing Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(S) @LINE: 363 +(S) @LINE: 376 >>> Processed Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(I) @LINE: 369 +(I) @LINE: 382 >>> Processing Test Case: A00E_handleTestValveStateOverrideRequest -(S) @LINE: 391 +(S) @LINE: 404 >>> Processed Test Case: A00E_handleTestValveStateOverrideRequest -(I) @LINE: 397 +(I) @LINE: 410 >>> Processing Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(S) @LINE: 414 +(S) @LINE: 427 >>> Processed Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(I) @LINE: 420 +(I) @LINE: 433 >>> Processing Test Case: A010_handleTestTemperatureSensorOverrideRequest -(E) @LINE: 438 TEST.EXPECTED:uut_prototype_stubs.testSetMeasuredTemperatureOverride.sensor:1 - >>> Unknown parameter/object name sensor - >>> Value Line Error - Command Ignored -(S) @LINE: 442 +(E) Errors from previous script import(s) + >>> (E) @LINE: 438 TEST.EXPECTED:uut_prototype_stubs.testSetMeasuredTemperatureOverride.sensor:1 + >>> >>> Unknown parameter/object name sensor + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 459 >>> Processed Test Case: A010_handleTestTemperatureSensorOverrideRequest -(I) @LINE: 448 +(I) @LINE: 465 >>> Processing Test Case: A011_handleStartStopPrimaryHeater -(S) @LINE: 466 +(S) @LINE: 486 >>> Processed Test Case: A011_handleStartStopPrimaryHeater -(I) @LINE: 472 +(I) @LINE: 492 >>> Processing Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(S) @LINE: 489 +(S) @LINE: 509 >>> Processed Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(I) @LINE: 495 +(I) @LINE: 515 >>> Processing Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(S) @LINE: 512 +(S) @LINE: 532 >>> Processed Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(I) @LINE: 518 +(I) @LINE: 538 >>> Processing Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(S) @LINE: 537 +(S) @LINE: 557 >>> Processed Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(I) @LINE: 543 +(I) @LINE: 563 >>> Processing Test Case: A015_handleTestSetConductivityOverrideRequest -(S) @LINE: 566 +(E) Errors from previous script import(s) + >>> (E) @LINE: 544 TEST.EXPECTED:uut_prototype_stubs.getTemperatureValue.value:200.0 + >>> >>> Unknown parameter/object name value + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 592 >>> Processed Test Case: A015_handleTestSetConductivityOverrideRequest -(I) @LINE: 572 +(I) @LINE: 598 >>> Processing Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(S) @LINE: 590 +(S) @LINE: 616 >>> Processed Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(I) @LINE: 596 +(I) @LINE: 622 + >>> Processing Test Case: A017_handleTestAccelAxisOverrideRequest +(S) @LINE: 644 + >>> Processed Test Case: A017_handleTestAccelAxisOverrideRequest +(I) @LINE: 650 + >>> Processing Test Case: A018_handleTestAccelMaxOverrideRequest +(S) @LINE: 672 + >>> Processed Test Case: A018_handleTestAccelMaxOverrideRequest +(I) @LINE: 678 + >>> Processing Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest +(S) @LINE: 695 + >>> Processed Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest +(I) @LINE: 701 >>> Processing Test Case: handleDrainCmd -(S) @LINE: 614 +(S) @LINE: 719 >>> Processed Test Case: handleDrainCmd -(I) @LINE: 620 +(I) @LINE: 725 >>> Processing Test Case: handleFWVersionCmd -(S) @LINE: 626 +(S) @LINE: 731 >>> Processed Test Case: handleFWVersionCmd -(I) @LINE: 632 +(I) @LINE: 737 >>> Processing Test Case: handleFillCmd -(S) @LINE: 650 +(S) @LINE: 755 >>> Processed Test Case: handleFillCmd -(I) @LINE: 656 +(I) @LINE: 761 >>> Processing Test Case: handlePowerOffWarning -(S) @LINE: 660 +(S) @LINE: 767 >>> Processed Test Case: handlePowerOffWarning -(I) @LINE: 666 +(I) @LINE: 773 >>> Processing Test Case: handleSampleWaterCmd -(S) @LINE: 684 +(S) @LINE: 793 >>> Processed Test Case: handleSampleWaterCmd -(I) @LINE: 690 +(I) @LINE: 799 + >>> Processing Test Case: handleSetAccelCalibration +(S) @LINE: 825 + >>> Processed Test Case: handleSetAccelCalibration +(I) @LINE: 831 >>> Processing Test Case: handleSetDialysateTemperatureCmd -(S) @LINE: 708 +(S) @LINE: 849 >>> Processed Test Case: handleSetDialysateTemperatureCmd -(I) @LINE: 714 +(I) @LINE: 855 >>> Processing Test Case: handleStartStopTreatmentCmd -(S) @LINE: 732 +(S) @LINE: 875 >>> Processed Test Case: handleStartStopTreatmentCmd -(I) @LINE: 738 +(I) @LINE: 881 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd -(S) @LINE: 755 +(S) @LINE: 900 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd -(I) @LINE: 761 +(I) @LINE: 906 >>> Processing Test Case: handleSwitchReservoirCmd -(S) @LINE: 779 +(S) @LINE: 924 >>> Processed Test Case: handleSwitchReservoirCmd -(I) @LINE: 787 +(I) @LINE: 932 >>> Processing Test Case: sendACKMsg -(S) @LINE: 807 +(S) @LINE: 953 >>> Processed Test Case: sendACKMsg -(S) @LINE: 807 +(S) @LINE: 953 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:12:22 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:28: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/2381647150/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6083,7 +7434,7 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr (S) @LINE: 45 >>> Source file matched ConductivitySensors.c (S) @LINE: 67 @@ -6092,15 +7443,15 @@ >>> Source file matched SystemComm.c (S) @LINE: 111 >>> Source file matched SystemCommMessages.c -(S) @LINE: 239 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr +(S) @LINE: 249 + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:12:22 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:28: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/2381647150/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6109,264 +7460,292 @@ Running: execConductivitySensors_BroadcastData 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processReceivedMessages test cases Running: sendACKMsg 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processReceivedMessage test cases Running: A000_handleTesterLogInRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A001_handleTestAlarmStateOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A002_handleTestWatchdogCheckInStateOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A004_handleSetRTCTimestamp 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A005_handleTestLoadCellOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A006_handleTestPressureSensorOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A007_handleTestPressureDataBroadcastIntervalOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A008_handleTestROPumpSetPointOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A009_handleTestROMeasuredFlowOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00A_handleTestROPumpDataBroadcastIntervalOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00B_handleTestDrainPumpSetPointOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00D_handleTestLoadCellDataBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00E_handleTestValveStateOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00F_handleTestValveStatesPublishIntervalOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A010_handleTestTemperatureSensorOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A011_handleStartStopPrimaryHeater 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A012_handleTestTemperatureSensorsDataPublishOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A013_handleTestHeatersDataPublishOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A014_handleTestDGSafetyShutdownOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A015_handleTestSetConductivityOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A017_handleTestAccelAxisOverrideRequest + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A018_handleTestAccelMaxOverrideRequest + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A019_handleTestAccelDataPublishIntervalOverrideRequest + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: handleDrainCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleFWVersionCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleFillCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePowerOffWarning 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSampleWaterCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: handleSetAccelCalibration + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: handleSetDialysateTemperatureCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTreatmentCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTrimmerHeaterCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSwitchReservoirCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/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/2084893629/INT_TEMPERATURESENSORS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-31 15:12:24 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14: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/2084893629/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_TEMPERATURESENSORS" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: Heaters.c (using cached data) File: TemperatureSensors.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) File: ModeFill.c (using cached data) File: ModeInitPOST.c (using cached data) File: ModeRecirculate.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -6459,18 +7838,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-31 15:12:33 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14:28:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -6486,7 +7865,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: handlePrimaryHeaterStateControlToTarget (S) @LINE: 29 @@ -6545,13 +7924,13 @@ >>> Processed Test Case: initSoftware_initHeaters (S) @LINE: 258 >>> 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-07-31 15:12:35 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14:28:53 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/2084893629/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6561,12 +7940,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-31 15:12:35 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14:28:54 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/2084893629/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6575,133 +7954,133 @@ Running: handlePrimaryHeaterStateControlToTarget Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeDrain.execDrainMode test cases Running: execDrainMode_Check_Inlet_Water_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.execFillMode test cases Running: execFillMode_Check_Inlet_Water_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeInitPOST.execInitAndPOSTMode test cases Running: execInitAndPOSTMode_Complete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execInitAndPOSTMode_Consistency_Check Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execInitAndPOSTMode_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.execRecirculateMode test cases Running: execRecirculateMode_Check_Inlet_Water_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestTemperatureSensorsOverrideRequest test cases Running: handleTestTemperatureSensorsOverrideRequest_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsOverrideRequest_With_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestTemperatureSensorsDataPublishOverrideRequest test cases Running: handleTestTemperatureSensorsDataPublishOverrideRequest_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsDataPublishOverrideRequest_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: taskPriority_execTempSensors_Get_ADC_Values Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: taskPriority_execTempSensors_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initSoftware_initHeaters Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS/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/3585417238/INT_VALVES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:12:37 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:28: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/3585417238/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_VALVES" - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Controllers/ File: Valves.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Modes/ File: ModeRecirculate.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/wsdg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -6761,18 +8140,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:12:43 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:29:03 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/3585417238/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -6789,7 +8168,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: setValveState (S) @LINE: 33 @@ -6824,13 +8203,13 @@ >>> Processed Test Case: initSoftware_initValves (S) @LINE: 217 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:12:45 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:29:05 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/3585417238/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6840,12 +8219,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:12:46 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:29: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/3585417238/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6854,72 +8233,72 @@ Running: publishValvesStates_broadcastValvesStates Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.transitionToRecirculateMode test cases Running: setValveState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestValveStateOverrideRequest test cases Running: TestValveStateOverrideRequest_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestValveStateOverrideRequest_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest test cases Running: TestValvesStatesPublishIntervalOverrideRequest_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestValvesStatesPublishIntervalOverrideRequest_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TaskPriority.taskPriority test cases Running: taskPriority_execValves Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all sys_main.initSoftware test cases Running: initSoftware_initValves Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES/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/1396715880/LOADCELL.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:12:46 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:29:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env" Initializing search list Creating the Environment Directory Creating Environment "LOADCELL" @@ -6948,18 +8327,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:12:49 +COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:29:11 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/1396715880/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -6977,7 +8356,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execLoadCell_Broadcast (S) @LINE: 48 @@ -7052,13 +8431,13 @@ >>> Processed Test Case: testSetLoadCellOverride_Override (S) @LINE: 330 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:12:50 +COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:29:13 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/1396715880/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7068,12 +8447,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:12:51 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:29:13 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/1396715880/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7082,144 +8461,144 @@ Running: initLoadCell_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.execLoadCell test cases Running: execLoadCell_Broadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execLoadCell_NoBroadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.getLoadCellFilteredWeight test cases Running: getLoadCellFilteredWeight_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getLoadCellFilteredWeight_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getLoadCellFilteredWeight_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.getLoadCellDataPublishInterval test cases Running: getLoadCellDataPublishInterval_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getLoadCellDataPublishInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.testSetLoadCellOverride test cases Running: testSetLoadCellOverride_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetLoadCellOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetLoadCellOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.testResetLoadCellOverride test cases Running: testResetLoadCellOverride_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetLoadCellOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetLoadCellOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.testSetLoadCellDataPublishIntervalOverride test cases Running: testSetLoadCellDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetLoadCellDataPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all LoadCell.testResetLoadCellDataPublishIntervalOverride test cases Running: testResetLoadCellDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetLoadCellDataPublishIntervalOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL/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/2214729248/MODEDRAIN.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-31 15:12:52 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:29: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/2214729248/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env" Initializing search list Creating the Environment Directory Creating Environment "MODEDRAIN" @@ -7248,18 +8627,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-31 15:12:54 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:29:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -7275,7 +8654,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execDrainMode_DrainState (S) @LINE: 28 @@ -7310,13 +8689,13 @@ >>> Processed Test Case: transitionToDrainMode_NominalPath (S) @LINE: 118 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-31 15:12:56 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:29:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7326,12 +8705,12 @@ 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-07-31 15:12:56 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:29:21 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7340,71 +8719,71 @@ Running: initDrainMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeDrain.transitionToDrainMode test cases Running: transitionToDrainMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeDrain.execDrainMode test cases Running: execDrainMode_DrainState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainMode_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execDrainMode_StartState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeDrain.handleDrainState test cases Running: handleDrainState_Res1_VolNotReached Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDrainState_Res2_VolReached Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeDrain.getCurrentDrainState test cases Running: getCurrentDrainState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN/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/3431170211/MODEFILL.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:12:57 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:29: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/3431170211/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env" Initializing search list Creating the Environment Directory Creating Environment "MODEFILL" @@ -7434,18 +8813,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:13:00 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:29:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -7461,7 +8840,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execFillMode_DeliverState (S) @LINE: 28 @@ -7504,13 +8883,13 @@ >>> Processed Test Case: transitionToFillMode_NominalPath (S) @LINE: 137 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:13:01 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:29:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7519,13 +8898,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:13:02 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:29:27 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7536,18 +8915,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr (S) @LINE: 45 >>> Source file matched ModeFill.c (S) @LINE: 78 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODEFILL/MODEFILL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:13:02 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:29:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7556,86 +8935,86 @@ Running: initFillMode_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.transitionToFillMode test cases Running: transitionToFillMode_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.execFillMode test cases Running: execFillMode_DeliverState 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 + Running Test with command: /home/fw/wsdg/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 - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execFillMode_ProduceState 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execFillMode_StartState 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.handleDialysateProductionState test cases Running: handleDialysateProductionState_StartDeliver 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.handleDeliverDialysateState test cases Running: handleDeliverDialysateState_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDeliverDialysateState_Res2 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeFill.getCurrentFillState test cases Running: getCurrentFillState_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL/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/428270081/MODERECIRCULATE.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:13:03 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:29: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/428270081/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env" Initializing search list Creating the Environment Directory Creating Environment "MODERECIRCULATE" @@ -7664,18 +9043,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:13:06 +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:29:33 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/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -7691,7 +9070,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execRecirculateMode_FlushLineState (S) @LINE: 31 @@ -7746,13 +9125,13 @@ >>> Processed Test Case: transitionToRecirculateMode_NominalPath (S) @LINE: 179 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:13:07 +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:29:35 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/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7761,13 +9140,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:13:08 +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:29: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/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7778,18 +9157,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr (E) @LINE: 1 - >>> Script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr did not contain any relevant coverage data + >>> Script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr did not contain any relevant coverage data (S) @LINE: 1 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:13:08 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:29: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/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7798,109 +9177,109 @@ Running: initRecirculateMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.transitionToRecirculateMode test cases Running: transitionToRecirculateMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.execRecirculateMode test cases Running: execRecirculateMode_FlushLineState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateMode_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateMode_PauseState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateMode_RecirculateState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execRecirculateMode_StartState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.handleFlushLinesState test cases Running: handleFlushLinesState_FlushComplete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleFlushLinesState_FlushIncomplete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.handleRecircWaterState test cases Running: handleRecircWaterState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.handleRecircPauseState test cases Running: handleRecircPauseState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.requestDGStop test cases Running: requestDGStop_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeRecirculate.getCurrentRecirculateState test cases Running: getCurrentRecirculateState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE/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/336674795/MODESTANDBY.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:13:09 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env" Initializing search list Creating the Environment Directory Creating Environment "MODESTANDBY" @@ -7929,18 +9308,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:13:12 +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:29:42 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/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -7957,7 +9336,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execStandbyMode_IdleState (S) @LINE: 31 @@ -7979,58 +9358,62 @@ (S) @LINE: 78 >>> Processed Test Case: getCurrentStandbyState_NominalPath (I) @LINE: 86 + >>> Processing Test Case: handleStandbyIdleState_HDOff +(S) @LINE: 94 + >>> Processed Test Case: handleStandbyIdleState_HDOff +(I) @LINE: 100 >>> Processing Test Case: handleStandbyIdleState_NoPendingCmds -(S) @LINE: 93 +(S) @LINE: 107 >>> Processed Test Case: handleStandbyIdleState_NoPendingCmds -(I) @LINE: 99 +(I) @LINE: 113 >>> Processing Test Case: handleStandbyIdleState_PendingDGStart -(S) @LINE: 106 +(S) @LINE: 120 >>> Processed Test Case: handleStandbyIdleState_PendingDGStart -(I) @LINE: 112 +(I) @LINE: 126 >>> Processing Test Case: handleStandbyIdleState_PendingWaterSample -(S) @LINE: 121 +(S) @LINE: 135 >>> Processed Test Case: handleStandbyIdleState_PendingWaterSample -(I) @LINE: 129 +(I) @LINE: 143 >>> Processing Test Case: handleStandbySampleWaterState_NoTimeout -(S) @LINE: 135 +(S) @LINE: 149 >>> Processed Test Case: handleStandbySampleWaterState_NoTimeout -(I) @LINE: 141 +(I) @LINE: 155 >>> Processing Test Case: handleStandbySampleWaterState_Timeout -(S) @LINE: 147 +(S) @LINE: 161 >>> Processed Test Case: handleStandbySampleWaterState_Timeout -(I) @LINE: 155 +(I) @LINE: 169 >>> Processing Test Case: initStandbyMode_NominalPath -(S) @LINE: 164 +(S) @LINE: 178 >>> Processed Test Case: initStandbyMode_NominalPath -(I) @LINE: 172 +(I) @LINE: 186 >>> Processing Test Case: requestDGStart_NominalPath -(S) @LINE: 177 +(S) @LINE: 191 >>> Processed Test Case: requestDGStart_NominalPath -(I) @LINE: 183 +(I) @LINE: 197 >>> Processing Test Case: requestDGStart_NotIdle -(S) @LINE: 188 +(S) @LINE: 202 >>> Processed Test Case: requestDGStart_NotIdle -(I) @LINE: 196 +(I) @LINE: 210 >>> Processing Test Case: requestWaterSample_NominalPath -(S) @LINE: 201 +(S) @LINE: 215 >>> Processed Test Case: requestWaterSample_NominalPath -(I) @LINE: 207 +(I) @LINE: 221 >>> Processing Test Case: requestWaterSample_NotIdle -(S) @LINE: 212 +(S) @LINE: 226 >>> Processed Test Case: requestWaterSample_NotIdle -(I) @LINE: 220 +(I) @LINE: 234 >>> Processing Test Case: transitionToStandbyMode_NominalPath -(S) @LINE: 229 +(S) @LINE: 243 >>> Processed Test Case: transitionToStandbyMode_NominalPath -(S) @LINE: 229 +(S) @LINE: 243 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:13:13 +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:29:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8039,13 +9422,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:13:14 +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:29: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/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8056,18 +9439,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr -(S) @LINE: 45 - >>> Source file matched ModeStandby.c -(S) @LINE: 79 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr +(E) @LINE: 1 + >>> Script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr did not contain any relevant coverage data +(S) @LINE: 1 + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:13:14 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:29: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/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8076,130 +9459,137 @@ Running: initStandbyMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.transitionToStandbyMode test cases Running: transitionToStandbyMode_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.execStandbyMode test cases Running: execStandbyMode_IdleState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execStandbyMode_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execStandbyMode_SampleWaterState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execStandbyMode_StartState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.handleStandbyIdleState test cases + Running: handleStandbyIdleState_HDOff + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: handleStandbyIdleState_NoPendingCmds Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStandbyIdleState_PendingDGStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStandbyIdleState_PendingWaterSample Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.handleStandbySampleWaterState test cases Running: handleStandbySampleWaterState_NoTimeout Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStandbySampleWaterState_Timeout Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.requestWaterSample test cases Running: requestWaterSample_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: requestWaterSample_NotIdle Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.requestDGStart test cases Running: requestDGStart_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: requestDGStart_NotIdle Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ModeStandby.getCurrentStandbyState test cases Running: getCurrentStandbyState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY/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/1114345785/MSGQUEUES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:13:15 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:29: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/1114345785/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env" Initializing search list Creating the Environment Directory Creating Environment "MSGQUEUES" @@ -8228,18 +9618,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:13:18 +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:29:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -8258,7 +9648,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: InvalidQueue (S) @LINE: 37 @@ -8329,13 +9719,13 @@ >>> Processed Test Case: QueueNotFull (S) @LINE: 318 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:13:19 +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:29:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8345,12 +9735,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:13:20 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:29:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8359,136 +9749,136 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.addToMsgQueue test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAddWithWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.getFromMsgQueue test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGet Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetWithWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.isMsgQueueEmpty test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueNotEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.isMsgQueueFull test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueNotFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.blankMessage test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.blankMessageInWrapper test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES/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/241608158/OPERATIONMODES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:13:21 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:29: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/241608158/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env" Initializing search list Creating the Environment Directory Creating Environment "OPERATIONMODES" @@ -8517,18 +9907,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:13:23 +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:29:57 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/241608158/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -8545,7 +9935,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: NoRequestPending (S) @LINE: 28 @@ -8676,13 +10066,13 @@ >>> Processed Test Case: StandbySoloMode (S) @LINE: 409 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:13:25 +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:29:59 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/241608158/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8692,12 +10082,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:13:25 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:29:59 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/241608158/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8706,241 +10096,241 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: FillToFaultMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InitPOSTToStandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidModeChange Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RecircToDrainMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RecircToFillMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbySoloToFlushMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbySoloToHeatDisinfectMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToChemDisinfectMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToRecircMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToServiceMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToStandbySoloMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.requestNewOperationMode test cases Running: InvalidModeRequested Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ValidModeRequested Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.getCurrentOperationMode test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.arbitrateModeRequest test cases Running: NoRequestPending Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RequestPending Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: ChemDisinfectMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: DrainMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: FaultMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: FillMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: FlushMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: HeatDisinfectMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InitPOSTMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RecircMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ServiceMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbySoloMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.broadcastOperationMode test cases Running: broadcastOperationMode_Broadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: broadcastOperationMode_NotTime Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES/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/3540987929/PRESSURES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:13:27 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:30: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/3540987929/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env" Initializing search list Creating the Environment Directory Creating Environment "PRESSURES" @@ -8950,7 +10340,7 @@ Generating harness code Saving unit data Parsing Pressures - Unit 9 (tdd-sbf-source): Pressures + Unit 9 (stub-by-function): Pressures Loading stored IL Initializing parse data Generating harness code @@ -8969,18 +10359,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:13:29 +COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:30:04 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/3540987929/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -8993,119 +10383,173 @@ 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 + Processing script line 550 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp (I) @LINE: 24 + >>> Processing Test Case: checkInletPressure_In_Range_Clear_Alarm +(S) @LINE: 29 + >>> Processed Test Case: checkInletPressure_In_Range_Clear_Alarm +(I) @LINE: 35 + >>> Processing Test Case: checkInletPressure_In_Range_Pressure +(S) @LINE: 41 + >>> Processed Test Case: checkInletPressure_In_Range_Pressure +(I) @LINE: 47 + >>> Processing Test Case: checkInletPressure_Low_Pressure_No_Alarm +(S) @LINE: 51 + >>> Processed Test Case: checkInletPressure_Low_Pressure_No_Alarm +(I) @LINE: 57 + >>> Processing Test Case: checkInletPressure_Low_Pressure_Persistence +(S) @LINE: 62 + >>> Processed Test Case: checkInletPressure_Low_Pressure_Persistence +(I) @LINE: 70 + >>> Processing Test Case: execPressureSelfTest_Complete_State +(S) @LINE: 74 + >>> Processed Test Case: execPressureSelfTest_Complete_State +(I) @LINE: 80 + >>> Processing Test Case: execPressureSelfTest_Illegal_State +(S) @LINE: 81 + >>> Warning: Setting data to out-of-range value. The value 10 does not correspond to an enumeral value. +(I) @LINE: 84 + >>> 'SW_FAULT_ID_TEMPERATURE_SENSORS_INVALID_SELF_TEST_STATE' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 87 + >>> Processed Test Case: execPressureSelfTest_Illegal_State +(I) @LINE: 93 + >>> Processing Test Case: execPressureSelfTest_InProgress_State +(S) @LINE: 99 + >>> Processed Test Case: execPressureSelfTest_InProgress_State +(I) @LINE: 105 + >>> Processing Test Case: execPressureSelfTest_Start_State +(S) @LINE: 109 + >>> Processed Test Case: execPressureSelfTest_Start_State +(I) @LINE: 117 >>> Processing Test Case: execPressures_InitState -(S) @LINE: 27 +(S) @LINE: 120 >>> Processed Test Case: execPressures_InitState -(I) @LINE: 33 +(I) @LINE: 126 >>> Processing Test Case: execPressures_InvalidState -(S) @LINE: 39 +(S) @LINE: 132 >>> Processed Test Case: execPressures_InvalidState -(I) @LINE: 45 +(I) @LINE: 138 >>> Processing Test Case: execPressures_ReadState -(S) @LINE: 65 +(S) @LINE: 158 >>> Processed Test Case: execPressures_ReadState -(I) @LINE: 73 +(I) @LINE: 166 >>> Processing Test Case: getMeasuredDGPressure_InvalidSensor -(S) @LINE: 81 +(S) @LINE: 174 >>> Processed Test Case: getMeasuredDGPressure_InvalidSensor -(I) @LINE: 87 +(I) @LINE: 180 >>> Processing Test Case: getMeasuredDGPressure_NominalPath -(S) @LINE: 96 +(S) @LINE: 189 >>> Processed Test Case: getMeasuredDGPressure_NominalPath -(I) @LINE: 102 +(I) @LINE: 195 >>> Processing Test Case: getMeasuredDGPressure_Override -(S) @LINE: 111 +(S) @LINE: 204 >>> Processed Test Case: getMeasuredDGPressure_Override -(I) @LINE: 119 +(I) @LINE: 212 >>> Processing Test Case: getPublishPressuresDataInterval_NominalPath -(S) @LINE: 124 +(S) @LINE: 217 >>> Processed Test Case: getPublishPressuresDataInterval_NominalPath -(I) @LINE: 130 +(I) @LINE: 223 >>> Processing Test Case: getPublishPressuresDataInterval_Override -(S) @LINE: 135 +(S) @LINE: 228 >>> Processed Test Case: getPublishPressuresDataInterval_Override -(I) @LINE: 143 +(I) @LINE: 236 >>> Processing Test Case: handlePressuresContReadState_CalcAvg -(S) @LINE: 163 +(S) @LINE: 256 >>> Processed Test Case: handlePressuresContReadState_CalcAvg -(I) @LINE: 169 +(I) @LINE: 262 >>> Processing Test Case: handlePressuresContReadState_NominalPath -(S) @LINE: 192 +(S) @LINE: 285 >>> Processed Test Case: handlePressuresContReadState_NominalPath -(I) @LINE: 200 +(I) @LINE: 293 >>> Processing Test Case: handlePressuresInitState_NominalPath -(S) @LINE: 203 +(S) @LINE: 296 >>> Processed Test Case: handlePressuresInitState_NominalPath -(I) @LINE: 211 +(I) @LINE: 304 + >>> Processing Test Case: handleSelfTestADCCheck_Equal_FullScale +(S) @LINE: 307 + >>> Processed Test Case: handleSelfTestADCCheck_Equal_FullScale +(I) @LINE: 313 + >>> Processing Test Case: handleSelfTestADCCheck_Greater_Than_FullScale_ADC +(S) @LINE: 316 + >>> Processed Test Case: handleSelfTestADCCheck_Greater_Than_FullScale_ADC +(I) @LINE: 322 + >>> Processing Test Case: handleSelfTestADCCheck_Valid_ADC +(S) @LINE: 326 + >>> Processed Test Case: handleSelfTestADCCheck_Valid_ADC +(I) @LINE: 332 + >>> Processing Test Case: handleSelfTestADCCheck_Zero_ADC +(S) @LINE: 336 + >>> Processed Test Case: handleSelfTestADCCheck_Zero_ADC +(I) @LINE: 344 >>> Processing Test Case: initPressures_NominalPath -(S) @LINE: 220 +(S) @LINE: 351 >>> Processed Test Case: initPressures_NominalPath -(I) @LINE: 228 +(I) @LINE: 359 >>> Processing Test Case: publishPressuresData_NoPublish -(S) @LINE: 236 +(S) @LINE: 367 >>> Processed Test Case: publishPressuresData_NoPublish -(I) @LINE: 242 +(I) @LINE: 373 >>> Processing Test Case: publishPressuresData_Publish -(S) @LINE: 255 +(S) @LINE: 386 >>> Processed Test Case: publishPressuresData_Publish -(I) @LINE: 263 +(I) @LINE: 394 >>> Processing Test Case: testResetDGPressureSensorOverride_InvalidSensor -(S) @LINE: 274 +(S) @LINE: 405 >>> Processed Test Case: testResetDGPressureSensorOverride_InvalidSensor -(I) @LINE: 280 +(I) @LINE: 411 >>> Processing Test Case: testResetDGPressureSensorOverride_NotLoggedIn -(S) @LINE: 292 +(S) @LINE: 423 >>> Processed Test Case: testResetDGPressureSensorOverride_NotLoggedIn -(I) @LINE: 298 +(I) @LINE: 429 >>> Processing Test Case: testResetDGPressureSensorOverride_Reset -(S) @LINE: 310 +(S) @LINE: 441 >>> Processed Test Case: testResetDGPressureSensorOverride_Reset -(I) @LINE: 318 +(I) @LINE: 449 >>> Processing Test Case: testResetPressuresDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 329 +(S) @LINE: 460 >>> Processed Test Case: testResetPressuresDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 335 +(I) @LINE: 466 >>> Processing Test Case: testResetPressuresDataPublishIntervalOverride_Reset -(S) @LINE: 346 +(S) @LINE: 477 >>> Processed Test Case: testResetPressuresDataPublishIntervalOverride_Reset -(I) @LINE: 354 +(I) @LINE: 485 >>> Processing Test Case: testSetDGPressureSensorOverride_InvalidSensor -(S) @LINE: 366 +(S) @LINE: 497 >>> Processed Test Case: testSetDGPressureSensorOverride_InvalidSensor -(I) @LINE: 372 +(I) @LINE: 503 >>> Processing Test Case: testSetDGPressureSensorOverride_NotLoggedIn -(S) @LINE: 385 +(S) @LINE: 516 >>> Processed Test Case: testSetDGPressureSensorOverride_NotLoggedIn -(I) @LINE: 391 +(I) @LINE: 522 >>> Processing Test Case: testSetDGPressureSensorOverride_Override -(S) @LINE: 404 +(S) @LINE: 535 >>> Processed Test Case: testSetDGPressureSensorOverride_Override -(I) @LINE: 412 +(I) @LINE: 543 >>> Processing Test Case: testSetPressuresDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 424 +(S) @LINE: 555 >>> Processed Test Case: testSetPressuresDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 430 +(I) @LINE: 561 >>> Processing Test Case: testSetPressuresDataPublishIntervalOverride_Override -(S) @LINE: 442 +(S) @LINE: 573 >>> Processed Test Case: testSetPressuresDataPublishIntervalOverride_Override -(S) @LINE: 442 +(S) @LINE: 573 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:13:31 +COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:30: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/3540987929/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -9114,35 +10558,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/PRESSURES/PRESSURES_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:13:31 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Coverage Import Script File - Script Creation Completed --------------------------------------------------------------------------------- -Coverage Import/Export Log --------------------------------------------------------------------------------- -(S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/PRESSURES/PRESSURES_cba.cvr -(S) @LINE: 45 - >>> Source file matched Pressures.c -(S) @LINE: 83 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/PRESSURES/PRESSURES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:13:32 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:30:07 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/3540987929/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -9151,189 +10573,276 @@ Running: initPressures_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.execPressures test cases Running: execPressures_InitState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPressures_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execPressures_ReadState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.handlePressuresInitState test cases Running: handlePressuresInitState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.handlePressuresContReadState test cases Running: handlePressuresContReadState_CalcAvg Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handlePressuresContReadState_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.getPublishPressuresDataInterval test cases Running: getPublishPressuresDataInterval_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishPressuresDataInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Pressures.checkInletPressure test cases + Running: checkInletPressure_In_Range_Clear_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkInletPressure_In_Range_Pressure + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkInletPressure_Low_Pressure_No_Alarm + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: checkInletPressure_Low_Pressure_Persistence + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Pressures.getMeasuredDGPressure test cases Running: getMeasuredDGPressure_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getMeasuredDGPressure_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getMeasuredDGPressure_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.publishPressuresData test cases Running: publishPressuresData_NoPublish Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: publishPressuresData_Publish Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Pressures.execPressureSelfTest test cases + Running: execPressureSelfTest_Complete_State + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execPressureSelfTest_Illegal_State + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execPressureSelfTest_InProgress_State + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execPressureSelfTest_Start_State + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Pressures.handleSelfTestADCCheck test cases + Running: handleSelfTestADCCheck_Equal_FullScale + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestADCCheck_Greater_Than_FullScale_ADC + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestADCCheck_Valid_ADC + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestADCCheck_Zero_ADC + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Pressures.testSetPressuresDataPublishIntervalOverride test cases Running: testSetPressuresDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetPressuresDataPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.testResetPressuresDataPublishIntervalOverride test cases Running: testResetPressuresDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetPressuresDataPublishIntervalOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.testSetDGPressureSensorOverride test cases Running: testSetDGPressureSensorOverride_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetDGPressureSensorOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetDGPressureSensorOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Pressures.testResetDGPressureSensorOverride test cases Running: testResetDGPressureSensorOverride_InvalidSensor Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetDGPressureSensorOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetDGPressureSensorOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES/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/148424956/RESERVOIRS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:13:33 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:30:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env" Initializing search list Creating the Environment Directory Creating Environment "RESERVOIRS" @@ -9362,18 +10871,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:13:36 +COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:30:12 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/148424956/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -9393,7 +10902,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execReservoirs_Broadcast (S) @LINE: 34 @@ -9552,13 +11061,13 @@ >>> Processed Test Case: testSetReservoirFillVolumeMlOverride_NotLoggedIn (S) @LINE: 589 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:13:37 +COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:30:13 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/148424956/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -9568,12 +11077,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:13:38 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:30:14 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/148424956/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -9582,301 +11091,301 @@ Running: initReservoirs_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.execReservoirs test cases Running: execReservoirs_Broadcast 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execReservoirs_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.setActiveReservoirCmd test cases Running: setActiveReservoirCmd_InvalidMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setActiveReservoirCmd_InvalidReservoir 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setActiveReservoirCmd_Res1 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setActiveReservoirCmd_Res2 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.startFillCmd test cases Running: startFillCmd_InvalidFillVolume 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startFillCmd_InvalidMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startFillCmd_InvalidSubMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startFillCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.stopFillCmd test cases Running: stopFillCmd_InvalidMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: stopFillCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.startDrainCmd test cases Running: startDrainCmd_InvalidMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startDrainCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startDrainCmd_VolumeTooHigh 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: startDrainCmd_VolumeTooLow 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.stopDrainCmd test cases Running: stopDrainCmd_InvalidMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: stopDrainCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.startTrimmerHeaterCmd test cases Running: startTrimmerHeaterCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.stopTrimmerHeaterCmd test cases Running: stopTrimmerHeaterCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.getActiveReservoir test cases Running: getActiveReservoir_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getActiveReservoir_Override 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.getReservoirFillVolumeTargetMl test cases Running: getReservoirFillVolumeTargetMl_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getReservoirFillVolumeTargetMl_Override 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.getReservoirDrainVolumeTargetMl test cases Running: getReservoirDrainVolumeTargetMl_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getReservoirDrainVolumeTargetMl_Override 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testSetDGActiveReservoirOverride test cases Running: testSetDGActiveReservoirOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetDGActiveReservoirOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testResetDGActiveReservoirOverride test cases Running: testResetDGActiveReservoirOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetDGActiveReservoirOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testSetReservoirFillVolumeMlOverride test cases Running: testSetReservoirFillVolumeMlOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetReservoirFillVolumeMlOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testResetReservoirFillVolumeMlOverride test cases Running: testResetReservoirFillVolumeMlOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetReservoirFillVolumeMlOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testSetReservoirDrainVolumeMlOverride test cases Running: testSetReservoirDrainVolumeMlOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetReservoirDrainVolumeMlOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Reservoirs.testResetReservoirDrainVolumeMlOverride test cases Running: testResetReservoirDrainVolumeMlOverride_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetReservoirDrainVolumeMlOverride_NotLoggedIn 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS/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/1091159810/ROPUMP.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:13:39 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:30: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 - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env" Initializing search list Creating the Environment Directory Creating Environment "ROPUMP" @@ -9906,18 +11415,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:13:42 +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:30:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -9940,7 +11449,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execROPumpController_ControlState (S) @LINE: 45 @@ -10103,13 +11612,13 @@ >>> Processed Test Case: testSetTargetROPumpPressureOverride_Override (S) @LINE: 742 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:13:43 +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:30:22 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/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -10118,13 +11627,13 @@ Building Test Case Script Test Case Script Created Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:13:44 +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:30:23 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/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -10135,18 +11644,18 @@ Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr (S) @LINE: 45 >>> Source file matched ROPump.c (S) @LINE: 82 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:13:45 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:30:24 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/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -10155,310 +11664,310 @@ Running: initROPump_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.setROPumpTargetPressure test cases Running: setROPumpTargetPressure_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setROPumpTargetPressure_PresTooHigh Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setROPumpTargetPressure_PresTooLow Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.signalROPumpHardStop test cases Running: signalROPumpHardStop_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.execROPumpMonitor test cases Running: execROPumpMonitor_CalcAvg Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpMonitor_CalcAvg_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpMonitor_CalcAvg_Zero2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpMonitor_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.execROPumpController test cases Running: execROPumpController_ControlState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpController_InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execROPumpController_OffState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.isReverseOsmosisPumpOn test cases Running: isReverseOsmosisPumpOn_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.handleROPumpOffState test cases Running: handleROPumpOffState_NoStart Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleROPumpOffState_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.handleROPumpControlToTargetState test cases Running: handleROPumpControlToTargetState_ControlClosedLoop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleROPumpControlToTargetState_ControlOpenLoop Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleROPumpControlToTargetState_NoControl Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.setROPumpControlSignalPWM test cases Running: setROPumpControlSignalPWM_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.stopROPump test cases Running: stopROPump_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.getPublishROPumpDataInterval test cases Running: getPublishROPumpDataInterval_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishROPumpDataInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.getTargetROPumpPressure test cases Running: getTargetROPumpPressure_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getTargetROPumpPressure_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.getMeasuredROFlowRate test cases Running: getMeasuredROFlowRate_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getMeasuredROFlowRate_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.publishROPumpData test cases Running: publishROPumpData_NotTime Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: publishROPumpData_TimeToBroadcast Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testSetROPumpDataPublishIntervalOverride test cases Running: testSetROPumpDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetROPumpDataPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testResetROPumpDataPublishIntervalOverride test cases Running: testResetROPumpDataPublishIntervalOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetROPumpDataPublishIntervalOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testSetTargetROPumpPressureOverride test cases Running: testSetTargetROPumpPressureOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetTargetROPumpPressureOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testResetTargetROPumpPressureOverride test cases Running: testResetTargetROPumpPressureOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetTargetROPumpPressureOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testSetMeasuredROFlowRateOverride test cases Running: testSetMeasuredROFlowRateOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetMeasuredROFlowRateOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all ROPump.testResetMeasuredROFlowRateOverride test cases Running: testResetMeasuredROFlowRateOverride_NotLoggedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetMeasuredROFlowRateOverride_Reset Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP/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/480960922/SYSTEMCOMM.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-31 15:13:46 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-08-19 14:30: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/480960922/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env" Initializing search list Creating the Environment Directory Creating Environment "SYSTEMCOMM" @@ -10487,18 +11996,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-31 15:13:49 +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-08-19 14:30:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -10509,370 +12018,412 @@ Translated 0 script lines Processing script line 50 Processing script line 100 - Processing script line 150 Processing script line 200 - Processing script line 250 - Processing script line 300 Processing script line 350 + Processing script line 400 Processing script line 450 - Processing script line 550 + Processing script line 500 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 1000 + Processing script line 1050 Processing script line 1100 Processing script line 1200 - Processing script line 1350 - Processing script line 1400 + Processing script line 1300 + Processing script line 1450 + Processing script line 1600 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp (I) @LINE: 24 >>> Processing Test Case: addMsgToPendingACKList_ACKListFull -(S) @LINE: 74 +(S) @LINE: 75 >>> Processed Test Case: addMsgToPendingACKList_ACKListFull -(I) @LINE: 80 +(I) @LINE: 81 >>> Processing Test Case: addMsgToPendingACKList_NominalPath -(S) @LINE: 127 +(S) @LINE: 130 >>> Processed Test Case: addMsgToPendingACKList_NominalPath -(I) @LINE: 135 +(I) @LINE: 138 >>> Processing Test Case: checkForCommTimeouts_CommTimeout -(S) @LINE: 143 +(S) @LINE: 146 >>> Processed Test Case: checkForCommTimeouts_CommTimeout -(I) @LINE: 149 +(I) @LINE: 152 >>> Processing Test Case: checkForCommTimeouts_NominalPath -(S) @LINE: 156 +(S) @LINE: 159 >>> Processed Test Case: checkForCommTimeouts_NominalPath -(I) @LINE: 164 +(I) @LINE: 167 >>> Processing Test Case: checkPendingACKList_NominalPath -(S) @LINE: 227 +(S) @LINE: 234 >>> Processed Test Case: checkPendingACKList_NominalPath -(I) @LINE: 235 +(I) @LINE: 242 >>> Processing Test Case: checkTooManyBadMsgCRCs_Alarm -(S) @LINE: 254 +(S) @LINE: 248 >>> Processed Test Case: checkTooManyBadMsgCRCs_Alarm -(I) @LINE: 260 +(I) @LINE: 254 >>> Processing Test Case: checkTooManyBadMsgCRCs_NoAlarm -(S) @LINE: 278 +(S) @LINE: 257 >>> Processed Test Case: checkTooManyBadMsgCRCs_NoAlarm -(I) @LINE: 286 +(I) @LINE: 265 + >>> Processing Test Case: clearCANXmitBuffers_NominalPath +(S) @LINE: 267 + >>> Processed Test Case: clearCANXmitBuffers_NominalPath +(I) @LINE: 275 >>> Processing Test Case: BufferEmpty -(S) @LINE: 290 +(S) @LINE: 279 >>> Processed Test Case: BufferEmpty -(I) @LINE: 296 +(I) @LINE: 285 >>> Processing Test Case: RemoveSomePadding -(S) @LINE: 303 +(S) @LINE: 296 >>> Processed Test Case: RemoveSomePadding -(I) @LINE: 311 +(I) @LINE: 304 >>> Processing Test Case: OneMessageToProcessInBuffers -(S) @LINE: 340 +(S) @LINE: 363 >>> Processed Test Case: OneMessageToProcessInBuffers -(I) @LINE: 348 +(I) @LINE: 371 + >>> Processing Test Case: CAN1TransmitterBusy_DGOnlyCANNode +(S) @LINE: 387 + >>> Processed Test Case: CAN1TransmitterBusy_DGOnlyCANNode +(I) @LINE: 393 >>> Processing Test Case: CAN1TransmitterBusy_NoTimeout -(S) @LINE: 355 +(S) @LINE: 401 >>> Processed Test Case: CAN1TransmitterBusy_NoTimeout -(I) @LINE: 361 +(I) @LINE: 407 >>> Processing Test Case: CAN1TransmitterBusy_Timeout -(S) @LINE: 386 +(S) @LINE: 435 >>> Processed Test Case: CAN1TransmitterBusy_Timeout -(I) @LINE: 392 +(I) @LINE: 441 + >>> Processing Test Case: CAN1TransmitterBusy_Timeout_NoMoreRetries +(S) @LINE: 460 + >>> Processed Test Case: CAN1TransmitterBusy_Timeout_NoMoreRetries +(I) @LINE: 466 + >>> Processing Test Case: CAN1TransmitterBusy_Timeout_NoPriorPacketSent +(S) @LINE: 485 + >>> Processed Test Case: CAN1TransmitterBusy_Timeout_NoPriorPacketSent +(I) @LINE: 491 + >>> Processing Test Case: CAN1TransmitterBusy_Timeout_NoPriorPacketSent2 +(S) @LINE: 510 + >>> Processed Test Case: CAN1TransmitterBusy_Timeout_NoPriorPacketSent2 +(I) @LINE: 516 >>> Processing Test Case: execSystemCommTx_NominalPath -(S) @LINE: 398 +(S) @LINE: 523 >>> Processed Test Case: execSystemCommTx_NominalPath -(I) @LINE: 406 +(I) @LINE: 531 >>> Processing Test Case: BufferFound -(S) @LINE: 410 +(S) @LINE: 535 >>> Processed Test Case: BufferFound -(I) @LINE: 416 +(I) @LINE: 541 >>> Processing Test Case: NoBufferFound -(S) @LINE: 420 +(S) @LINE: 545 >>> Processed Test Case: NoBufferFound -(I) @LINE: 428 +(I) @LINE: 553 >>> Processing Test Case: InvalidCANBox -(S) @LINE: 434 +(S) @LINE: 559 >>> Processed Test Case: InvalidCANBox -(I) @LINE: 440 +(I) @LINE: 565 >>> Processing Test Case: NoPacket -(S) @LINE: 444 +(S) @LINE: 569 >>> Processed Test Case: NoPacket -(I) @LINE: 450 +(I) @LINE: 575 >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 458 +(S) @LINE: 583 >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 464 +(I) @LINE: 589 >>> Processing Test Case: ReceiveCANBox_NoPacket -(S) @LINE: 470 +(S) @LINE: 595 >>> Processed Test Case: ReceiveCANBox_NoPacket -(I) @LINE: 476 +(I) @LINE: 601 >>> Processing Test Case: TransmitCANBox -(S) @LINE: 485 +(S) @LINE: 610 >>> Processed Test Case: TransmitCANBox -(I) @LINE: 491 +(I) @LINE: 616 >>> Processing Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(S) @LINE: 495 +(S) @LINE: 620 >>> Processed Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(I) @LINE: 503 +(I) @LINE: 628 >>> Processing Test Case: NominalPath -(S) @LINE: 510 +(S) @LINE: 633 >>> Processed Test Case: NominalPath -(I) @LINE: 518 +(I) @LINE: 641 >>> Processing Test Case: NotReceiveCANBox -(S) @LINE: 521 +(S) @LINE: 644 >>> Processed Test Case: NotReceiveCANBox -(I) @LINE: 527 +(I) @LINE: 650 >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 530 +(S) @LINE: 653 >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 538 +(I) @LINE: 661 >>> Processing Test Case: NotTransmitCANBox -(S) @LINE: 541 +(S) @LINE: 664 >>> Processed Test Case: NotTransmitCANBox -(I) @LINE: 547 +(I) @LINE: 670 >>> Processing Test Case: TransmitCANBox -(S) @LINE: 550 +(S) @LINE: 673 >>> Processed Test Case: TransmitCANBox -(I) @LINE: 558 +(I) @LINE: 681 + >>> Processing Test Case: isDGOnlyCANNode_NominalPath +(S) @LINE: 684 + >>> Processed Test Case: isDGOnlyCANNode_NominalPath +(I) @LINE: 692 >>> Processing Test Case: isHDCommunicating_NominalPath -(S) @LINE: 562 +(S) @LINE: 696 >>> Processed Test Case: isHDCommunicating_NominalPath -(I) @LINE: 570 +(I) @LINE: 704 >>> Processing Test Case: matchACKtoPendingACKList_Matched -(S) @LINE: 579 +(S) @LINE: 713 >>> Processed Test Case: matchACKtoPendingACKList_Matched -(I) @LINE: 585 +(I) @LINE: 719 >>> Processing Test Case: matchACKtoPendingACKList_NoMatch -(S) @LINE: 594 +(S) @LINE: 728 >>> Processed Test Case: matchACKtoPendingACKList_NoMatch -(I) @LINE: 602 +(I) @LINE: 736 >>> Processing Test Case: FullMessageFound_CRC_BAD -(S) @LINE: 617 +(S) @LINE: 751 >>> Processed Test Case: FullMessageFound_CRC_BAD -(I) @LINE: 623 +(I) @LINE: 757 >>> Processing Test Case: FullMessageFound_CRC_OK -(S) @LINE: 638 +(S) @LINE: 772 >>> Processed Test Case: FullMessageFound_CRC_OK -(I) @LINE: 644 +(I) @LINE: 778 >>> Processing Test Case: NoMessageCouldBeParsed -(S) @LINE: 656 +(S) @LINE: 790 >>> Processed Test Case: NoMessageCouldBeParsed -(I) @LINE: 662 +(I) @LINE: 796 >>> Processing Test Case: NoSyncFound -(S) @LINE: 672 +(S) @LINE: 806 >>> Processed Test Case: NoSyncFound -(I) @LINE: 678 +(I) @LINE: 812 >>> Processing Test Case: NotEnoughDataForMinMessage -(S) @LINE: 688 +(S) @LINE: 822 >>> Processed Test Case: NotEnoughDataForMinMessage -(I) @LINE: 696 - >>> Processing Test Case: MessageOnHDBroadcastChannel -(S) @LINE: 715 - >>> Processed Test Case: MessageOnHDBroadcastChannel -(I) @LINE: 721 +(I) @LINE: 830 + >>> Processing Test Case: MessageOnDGBroadcastChannel +(S) @LINE: 850 + >>> Processed Test Case: MessageOnDGBroadcastChannel +(I) @LINE: 856 >>> Processing Test Case: MoreDataInBufferThanMaxMsgSize -(S) @LINE: 738 +(S) @LINE: 873 >>> Processed Test Case: MoreDataInBufferThanMaxMsgSize -(I) @LINE: 744 +(I) @LINE: 879 >>> Processing Test Case: MoreDataInBufferThanMaxMsgSize_BadCRC -(S) @LINE: 761 +(S) @LINE: 904 >>> Processed Test Case: MoreDataInBufferThanMaxMsgSize_BadCRC -(I) @LINE: 767 +(I) @LINE: 910 >>> Processing Test Case: MsgFoundButIncompleteMsgRetrieved -(S) @LINE: 785 +(S) @LINE: 928 >>> Processed Test Case: MsgFoundButIncompleteMsgRetrieved -(I) @LINE: 791 +(I) @LINE: 934 >>> Processing Test Case: NoMsgFound -(S) @LINE: 801 +(S) @LINE: 944 >>> Processed Test Case: NoMsgFound -(I) @LINE: 809 +(I) @LINE: 952 >>> Processing Test Case: 000E_PowerOffWarning -(S) @LINE: 816 +(S) @LINE: 959 >>> Processed Test Case: 000E_PowerOffWarning -(I) @LINE: 822 +(I) @LINE: 965 >>> Processing Test Case: 0019_SetDialysateTemperatureTargets -(S) @LINE: 829 +(S) @LINE: 972 >>> Processed Test Case: 0019_SetDialysateTemperatureTargets -(I) @LINE: 835 +(I) @LINE: 978 >>> Processing Test Case: 001C_RequestFWVersions -(S) @LINE: 842 +(S) @LINE: 985 >>> Processed Test Case: 001C_RequestFWVersions -(I) @LINE: 848 +(I) @LINE: 991 >>> Processing Test Case: 0021_SwitchReservoirCmd -(S) @LINE: 855 +(S) @LINE: 998 >>> Processed Test Case: 0021_SwitchReservoirCmd -(I) @LINE: 861 +(I) @LINE: 1004 >>> Processing Test Case: 0022_FillCmd -(S) @LINE: 868 +(S) @LINE: 1011 >>> Processed Test Case: 0022_FillCmd -(I) @LINE: 874 +(I) @LINE: 1017 >>> Processing Test Case: 0023_DrainCmd -(S) @LINE: 881 +(S) @LINE: 1024 >>> Processed Test Case: 0023_DrainCmd -(I) @LINE: 887 +(I) @LINE: 1030 >>> Processing Test Case: 0026_DGStartStopTreatmentCmd -(S) @LINE: 894 +(S) @LINE: 1037 >>> Processed Test Case: 0026_DGStartStopTreatmentCmd -(I) @LINE: 900 +(I) @LINE: 1043 >>> Processing Test Case: 0029_SampleWaterCmd -(S) @LINE: 907 +(S) @LINE: 1050 >>> Processed Test Case: 0029_SampleWaterCmd -(I) @LINE: 913 +(I) @LINE: 1056 >>> Processing Test Case: 002B_StartStopTrimmerHeaterCmd -(S) @LINE: 920 +(S) @LINE: 1063 >>> Processed Test Case: 002B_StartStopTrimmerHeaterCmd -(I) @LINE: 926 +(I) @LINE: 1069 >>> Processing Test Case: A000_TestLogin -(S) @LINE: 935 +(S) @LINE: 1078 >>> Processed Test Case: A000_TestLogin -(I) @LINE: 941 +(I) @LINE: 1084 >>> Processing Test Case: A001_AlarmStateOverride -(S) @LINE: 949 +(S) @LINE: 1092 >>> Processed Test Case: A001_AlarmStateOverride -(I) @LINE: 955 +(I) @LINE: 1098 >>> Processing Test Case: A002_WatchdogTaskCheckInOverride -(S) @LINE: 963 +(S) @LINE: 1106 >>> Processed Test Case: A002_WatchdogTaskCheckInOverride -(I) @LINE: 969 +(I) @LINE: 1112 >>> Processing Test Case: A004_RTCSetDateAndTime -(S) @LINE: 977 +(S) @LINE: 1120 >>> Processed Test Case: A004_RTCSetDateAndTime -(I) @LINE: 983 +(I) @LINE: 1126 >>> Processing Test Case: A005_LoadCellOverride -(S) @LINE: 991 +(S) @LINE: 1134 >>> Processed Test Case: A005_LoadCellOverride -(I) @LINE: 997 +(I) @LINE: 1140 >>> Processing Test Case: A006_PressureOverride -(S) @LINE: 1005 +(S) @LINE: 1148 >>> Processed Test Case: A006_PressureOverride -(I) @LINE: 1011 +(I) @LINE: 1154 >>> Processing Test Case: A007_PressureBroadcastIntervalOverride -(S) @LINE: 1019 +(S) @LINE: 1162 >>> Processed Test Case: A007_PressureBroadcastIntervalOverride -(I) @LINE: 1025 +(I) @LINE: 1168 >>> Processing Test Case: A008_ROPumpSetPtOverride -(S) @LINE: 1033 +(S) @LINE: 1176 >>> Processed Test Case: A008_ROPumpSetPtOverride -(I) @LINE: 1039 +(I) @LINE: 1182 >>> Processing Test Case: A009_ROMeasFlowOverride -(S) @LINE: 1047 +(S) @LINE: 1190 >>> Processed Test Case: A009_ROMeasFlowOverride -(I) @LINE: 1053 +(I) @LINE: 1196 >>> Processing Test Case: A00A_ROPumpBroadcastIntervalOverride -(S) @LINE: 1061 +(S) @LINE: 1204 >>> Processed Test Case: A00A_ROPumpBroadcastIntervalOverride -(I) @LINE: 1067 +(I) @LINE: 1210 >>> Processing Test Case: A00B_DrainPumpSetPtOverride -(S) @LINE: 1075 +(S) @LINE: 1218 >>> Processed Test Case: A00B_DrainPumpSetPtOverride -(I) @LINE: 1081 +(I) @LINE: 1224 >>> Processing Test Case: A00C_DrainPumpBroadcastIntervalOverride -(S) @LINE: 1089 +(S) @LINE: 1232 >>> Processed Test Case: A00C_DrainPumpBroadcastIntervalOverride -(I) @LINE: 1095 +(I) @LINE: 1238 >>> Processing Test Case: A00D_LoadCellBroadcastIntervalOverride -(S) @LINE: 1103 +(S) @LINE: 1246 >>> Processed Test Case: A00D_LoadCellBroadcastIntervalOverride -(I) @LINE: 1109 +(I) @LINE: 1252 >>> Processing Test Case: A00E_ValveStateOverride -(S) @LINE: 1117 +(S) @LINE: 1260 >>> Processed Test Case: A00E_ValveStateOverride -(I) @LINE: 1123 +(I) @LINE: 1266 >>> Processing Test Case: A00F_ValveBroadcastIntervalOverride -(S) @LINE: 1131 +(S) @LINE: 1274 >>> Processed Test Case: A00F_ValveBroadcastIntervalOverride -(I) @LINE: 1137 +(I) @LINE: 1280 >>> Processing Test Case: A010_TemperatureOverride -(S) @LINE: 1145 +(S) @LINE: 1288 >>> Processed Test Case: A010_TemperatureOverride -(I) @LINE: 1151 +(I) @LINE: 1294 >>> Processing Test Case: A011_StartStopPrimaryHeaterCmd -(S) @LINE: 1160 +(S) @LINE: 1303 >>> Processed Test Case: A011_StartStopPrimaryHeaterCmd -(I) @LINE: 1166 +(I) @LINE: 1309 >>> Processing Test Case: A012_TemperatureBroadcastIntervalOverride -(S) @LINE: 1174 +(S) @LINE: 1317 >>> Processed Test Case: A012_TemperatureBroadcastIntervalOverride -(I) @LINE: 1180 +(I) @LINE: 1323 >>> Processing Test Case: A013_HeatersBroadcastIntervalOverride -(S) @LINE: 1188 +(S) @LINE: 1331 >>> Processed Test Case: A013_HeatersBroadcastIntervalOverride -(I) @LINE: 1194 +(I) @LINE: 1337 >>> Processing Test Case: A014_SafetyShutdownOverride -(S) @LINE: 1202 +(S) @LINE: 1345 >>> Processed Test Case: A014_SafetyShutdownOverride -(I) @LINE: 1208 +(I) @LINE: 1351 >>> Processing Test Case: A015_ConductivityOverride -(S) @LINE: 1217 +(S) @LINE: 1360 >>> Processed Test Case: A015_ConductivityOverride -(I) @LINE: 1223 +(I) @LINE: 1366 >>> Processing Test Case: A016_ConductivityBroadcastIntervalOverride -(E) @LINE: 1232 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 +(E) @LINE: 1380 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 >>> Expected a field name from the record type MESSAGE_HEADER_T >>> Read: msgID::EXPECTED_BASE=16 -(S) @LINE: 1233 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1375 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestSetConductivityOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::EXPECTED_BASE=16 +(S) @LINE: 1381 >>> Processed Test Case: A016_ConductivityBroadcastIntervalOverride -(I) @LINE: 1239 +(I) @LINE: 1387 + >>> Processing Test Case: A017_AccelAxisOverride +(S) @LINE: 1395 + >>> Processed Test Case: A017_AccelAxisOverride +(I) @LINE: 1401 + >>> Processing Test Case: A018_AccelMaxOverride +(S) @LINE: 1409 + >>> Processed Test Case: A018_AccelMaxOverride +(I) @LINE: 1415 + >>> Processing Test Case: A019_AccelBroadcastIntervalOverride +(S) @LINE: 1423 + >>> Processed Test Case: A019_AccelBroadcastIntervalOverride +(I) @LINE: 1429 + >>> Processing Test Case: A01A_SetAccelCalibration +(S) @LINE: 1437 + >>> Processed Test Case: A01A_SetAccelCalibration +(I) @LINE: 1443 >>> Processing Test Case: InvalidMessageID -(S) @LINE: 1246 +(S) @LINE: 1450 >>> Processed Test Case: InvalidMessageID -(I) @LINE: 1252 +(I) @LINE: 1456 >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 1261 +(S) @LINE: 1464 >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 1267 +(I) @LINE: 1470 >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 1278 +(S) @LINE: 1481 >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 1284 +(I) @LINE: 1487 >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 1295 +(S) @LINE: 1498 >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 1303 +(I) @LINE: 1506 >>> Processing Test Case: processReceivedMessages_ACKReceived -(S) @LINE: 1314 +(S) @LINE: 1517 >>> Processed Test Case: processReceivedMessages_ACKReceived -(I) @LINE: 1320 +(I) @LINE: 1523 >>> Processing Test Case: processReceivedMessages_ACKRequired -(S) @LINE: 1331 +(S) @LINE: 1534 >>> Processed Test Case: processReceivedMessages_ACKRequired -(I) @LINE: 1337 +(I) @LINE: 1540 >>> Processing Test Case: processReceivedMessages_BadCRC -(S) @LINE: 1343 +(S) @LINE: 1546 >>> Processed Test Case: processReceivedMessages_BadCRC -(I) @LINE: 1349 +(I) @LINE: 1552 >>> Processing Test Case: processReceivedMessages_NoMessagesReceived -(S) @LINE: 1352 +(S) @LINE: 1555 >>> Processed Test Case: processReceivedMessages_NoMessagesReceived -(I) @LINE: 1358 +(I) @LINE: 1561 >>> Processing Test Case: processReceivedMessages_OneMessageReceived -(S) @LINE: 1364 +(S) @LINE: 1567 >>> Processed Test Case: processReceivedMessages_OneMessageReceived -(I) @LINE: 1372 +(I) @LINE: 1575 >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 1376 +(S) @LINE: 1579 >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 1382 +(I) @LINE: 1585 >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 1391 +(S) @LINE: 1594 >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 1397 +(I) @LINE: 1600 >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 1405 +(S) @LINE: 1608 >>> Processed Test Case: PendingCANPacketIsPartial -(S) @LINE: 1405 +(S) @LINE: 1608 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-31 15:13:51 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-08-19 14:30:33 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -10881,603 +12432,675 @@ Running: NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.isHDCommunicating test cases Running: isHDCommunicating_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemComm.isDGOnlyCANNode test cases + Running: isDGOnlyCANNode_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemComm.execSystemCommRx test cases Running: OneMessageToProcessInBuffers 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.execSystemCommTx test cases + Running: CAN1TransmitterBusy_DGOnlyCANNode + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: CAN1TransmitterBusy_NoTimeout 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: CAN1TransmitterBusy_Timeout 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: CAN1TransmitterBusy_Timeout_NoMoreRetries + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: CAN1TransmitterBusy_Timeout_NoPriorPacketSent + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: CAN1TransmitterBusy_Timeout_NoPriorPacketSent2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: execSystemCommTx_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.handleCANMsgInterrupt test cases Running: InvalidCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoPacket 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ReceiveCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ReceiveCANBox_NoPacket 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TransmitCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleCANMsgInterrupt_NoMoreMessagesToXmit 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.isCANBoxForXmit test cases Running: NotTransmitCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TransmitCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.isCANBoxForRecv test cases Running: NotReceiveCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ReceiveCANBox 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemComm.clearCANXmitBuffers test cases + Running: clearCANXmitBuffers_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemComm.findNextHighestPriorityCANPacketToTransmit test cases Running: BufferFound 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoBufferFound 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.transmitNextCANPacket test cases Running: NoPendingCANPackets 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PendingCANPacketFound 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PendingCANPacketIsPartial 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processIncomingData test cases - Running: MessageOnHDBroadcastChannel + Running: MessageOnDGBroadcastChannel 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: MoreDataInBufferThanMaxMsgSize 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: MoreDataInBufferThanMaxMsgSize_BadCRC 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: MsgFoundButIncompleteMsgRetrieved 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoMsgFound 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.consumeBufferPaddingBeforeSync test cases Running: BufferEmpty 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RemoveSomePadding 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.parseMessageFromBuffer test cases Running: FullMessageFound_CRC_BAD 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: FullMessageFound_CRC_OK 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoMessageCouldBeParsed 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoSyncFound 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NotEnoughDataForMinMessage 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processReceivedMessages test cases Running: processReceivedMessages_ACKReceived 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processReceivedMessages_ACKRequired 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processReceivedMessages_BadCRC 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processReceivedMessages_NoMessagesReceived 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processReceivedMessages_OneMessageReceived 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.checkForCommTimeouts test cases Running: checkForCommTimeouts_CommTimeout 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkForCommTimeouts_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.checkTooManyBadMsgCRCs test cases Running: checkTooManyBadMsgCRCs_Alarm 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkTooManyBadMsgCRCs_NoAlarm 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.addMsgToPendingACKList test cases Running: addMsgToPendingACKList_ACKListFull 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: addMsgToPendingACKList_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.matchACKtoPendingACKList test cases Running: matchACKtoPendingACKList_Matched 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: matchACKtoPendingACKList_NoMatch 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.checkPendingACKList test cases Running: checkPendingACKList_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemComm.processReceivedMessage test cases Running: 000E_PowerOffWarning 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0019_SetDialysateTemperatureTargets 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 001C_RequestFWVersions 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0021_SwitchReservoirCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0022_FillCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0023_DrainCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0026_DGStartStopTreatmentCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 0029_SampleWaterCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: 002B_StartStopTrimmerHeaterCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A000_TestLogin 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A001_AlarmStateOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A002_WatchdogTaskCheckInOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A004_RTCSetDateAndTime 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A005_LoadCellOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A006_PressureOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A007_PressureBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A008_ROPumpSetPtOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A009_ROMeasFlowOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00A_ROPumpBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00B_DrainPumpSetPtOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00C_DrainPumpBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00D_LoadCellBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00E_ValveStateOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A00F_ValveBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A010_TemperatureOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A011_StartStopPrimaryHeaterCmd 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A012_TemperatureBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A013_HeatersBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A014_SafetyShutdownOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A015_ConductivityOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: A016_ConductivityBroadcastIntervalOverride 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A017_AccelAxisOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A018_AccelMaxOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A019_AccelBroadcastIntervalOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A01A_SetAccelCalibration + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: InvalidMessageID 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidTestMessageID 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidTestMessageIDInRange 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestWithoutLogin 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM/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/456249163/SYSTEMCOMMMESSAGES.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:13:53 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:30:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env" Initializing search list Creating the Environment Directory Creating Environment "SYSTEMCOMMMESSAGES" @@ -11506,18 +13129,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:13:56 +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:30:41 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/456249163/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -11529,21 +13152,21 @@ Processing script line 50 Processing script line 100 Processing script line 150 - Processing script line 200 Processing script line 250 Processing script line 300 Processing script line 350 Processing script line 400 + Processing script line 450 Processing script line 500 Processing script line 600 - Processing script line 700 + Processing script line 650 Processing script line 750 Processing script line 800 Processing script line 850 Processing script line 900 Processing script line 950 + Processing script line 1100 Processing script line 1150 - Processing script line 1200 Processing script line 1250 Processing script line 1300 Processing script line 1350 @@ -11552,510 +13175,876 @@ 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 1850 Processing script line 1900 + Processing script line 1950 Processing script line 2000 Processing script line 2050 Processing script line 2100 - Processing script line 2150 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 2550 + Processing script line 2600 Processing script line 2650 + Processing script line 2700 Processing script line 2750 Processing script line 2800 + Processing script line 2850 + Processing script line 2900 + Processing script line 3000 + Processing script line 3050 + Processing script line 3100 + Processing script line 3150 + Processing script line 3250 + Processing script line 3350 + Processing script line 3400 + Processing script line 3450 + Processing script line 3500 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp (I) @LINE: 24 + >>> Processing Test Case: broadcastAccelData_NominalPath +(S) @LINE: 88 + >>> Processed Test Case: broadcastAccelData_NominalPath +(I) @LINE: 96 >>> Processing Test Case: broadcastAlarmCleared_NominalPath -(S) @LINE: 42 +(S) @LINE: 122 >>> Processed Test Case: broadcastAlarmCleared_NominalPath -(I) @LINE: 50 +(I) @LINE: 130 >>> Processing Test Case: broadcastAlarmTriggered_NominalPath -(I) @LINE: 52 +(I) @LINE: 132 >>> 'ALARM_ID_STUCK_BUTTON_TEST_FAILED' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 86 +(S) @LINE: 166 >>> Processed Test Case: broadcastAlarmTriggered_NominalPath -(I) @LINE: 94 +(I) @LINE: 174 >>> Processing Test Case: broadcastConductivityData_NominalPath -(S) @LINE: 118 +(S) @LINE: 198 >>> Processed Test Case: broadcastConductivityData_NominalPath -(I) @LINE: 126 +(I) @LINE: 206 >>> Processing Test Case: broadcastDGOperationMode_NominalPath -(S) @LINE: 150 +(S) @LINE: 230 >>> Processed Test Case: broadcastDGOperationMode_NominalPath -(I) @LINE: 158 +(I) @LINE: 238 >>> Processing Test Case: broadcastDrainPumpData_NominalPath -(S) @LINE: 182 +(S) @LINE: 262 >>> Processed Test Case: broadcastDrainPumpData_NominalPath -(I) @LINE: 190 +(I) @LINE: 270 >>> Processing Test Case: broadcastHeatersData_NominalPath -(S) @LINE: 220 +(E) @LINE: 318 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 327 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 280 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 275 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 271 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 268 TEST.ATTRIBUTES:SystemCommMessages.handleSetRTCTimestamp.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 321 >>> Processed Test Case: broadcastHeatersData_NominalPath -(I) @LINE: 228 +(I) @LINE: 329 >>> Processing Test Case: broadcastLoadCellData_NominalPath -(S) @LINE: 262 +(S) @LINE: 363 >>> Processed Test Case: broadcastLoadCellData_NominalPath -(I) @LINE: 270 +(I) @LINE: 371 >>> Processing Test Case: broadcastPressureSensorsData_NominalPath -(S) @LINE: 300 +(S) @LINE: 401 >>> Processed Test Case: broadcastPressureSensorsData_NominalPath -(I) @LINE: 308 +(I) @LINE: 409 >>> Processing Test Case: broadcastROPumpData_NominalPath -(S) @LINE: 337 +(S) @LINE: 438 >>> Processed Test Case: broadcastROPumpData_NominalPath -(I) @LINE: 345 +(I) @LINE: 446 >>> Processing Test Case: broadcastRTCEpoch_NominalPath -(S) @LINE: 367 +(S) @LINE: 468 >>> Processed Test Case: broadcastRTCEpoch_NominalPath -(I) @LINE: 375 +(I) @LINE: 476 >>> Processing Test Case: broadcastReservoirData_NominalPath -(S) @LINE: 404 +(S) @LINE: 505 >>> Processed Test Case: broadcastReservoirData_NominalPath -(I) @LINE: 412 +(I) @LINE: 513 >>> Processing Test Case: broadcastTemperatureSensorsData_NominalPath -(S) @LINE: 424 +(S) @LINE: 525 >>> Processed Test Case: broadcastTemperatureSensorsData_NominalPath -(I) @LINE: 432 +(I) @LINE: 533 >>> Processing Test Case: broadcastValvesStates_NominalPath -(S) @LINE: 447 +(S) @LINE: 548 >>> Processed Test Case: broadcastValvesStates_NominalPath -(I) @LINE: 455 +(I) @LINE: 556 >>> Processing Test Case: handleDrainCmd_InvalidPayloadLength -(S) @LINE: 467 +(S) @LINE: 568 >>> Processed Test Case: handleDrainCmd_InvalidPayloadLength -(I) @LINE: 473 +(I) @LINE: 574 >>> Processing Test Case: handleDrainCmd_NominalPath -(S) @LINE: 491 +(S) @LINE: 592 >>> Processed Test Case: handleDrainCmd_NominalPath -(I) @LINE: 499 +(I) @LINE: 600 >>> Processing Test Case: handleFWVersionCmd_NominalPath -(S) @LINE: 525 +(S) @LINE: 622 >>> Processed Test Case: handleFWVersionCmd_NominalPath -(I) @LINE: 533 +(I) @LINE: 630 >>> Processing Test Case: handleFillCmd_InvalidPayloadLength -(S) @LINE: 546 +(S) @LINE: 643 >>> Processed Test Case: handleFillCmd_InvalidPayloadLength -(I) @LINE: 552 +(I) @LINE: 649 >>> Processing Test Case: handleFillCmd_NominalPath -(S) @LINE: 571 +(S) @LINE: 668 >>> Processed Test Case: handleFillCmd_NominalPath -(I) @LINE: 579 +(I) @LINE: 676 + >>> Processing Test Case: handlePowerOffWarning_InvalidPayloadLen +(S) @LINE: 683 + >>> Processed Test Case: handlePowerOffWarning_InvalidPayloadLen +(I) @LINE: 689 + >>> Processing Test Case: handlePowerOffWarning_NominalPath +(S) @LINE: 697 + >>> Processed Test Case: handlePowerOffWarning_NominalPath +(I) @LINE: 705 >>> Processing Test Case: handleSampleWaterCmd_InvalidPayloadLength -(S) @LINE: 591 +(S) @LINE: 717 >>> Processed Test Case: handleSampleWaterCmd_InvalidPayloadLength -(I) @LINE: 597 +(I) @LINE: 723 >>> Processing Test Case: handleSampleWaterCmd_NominalPath -(S) @LINE: 611 +(S) @LINE: 737 >>> Processed Test Case: handleSampleWaterCmd_NominalPath -(I) @LINE: 617 +(I) @LINE: 743 >>> Processing Test Case: handleSampleWaterCmd_NotStandbyMode -(S) @LINE: 629 +(S) @LINE: 756 >>> Processed Test Case: handleSampleWaterCmd_NotStandbyMode -(I) @LINE: 637 +(I) @LINE: 764 + >>> Processing Test Case: handleSetAccelCalibration_InvalidPayloadLen +(S) @LINE: 776 + >>> Processed Test Case: handleSetAccelCalibration_InvalidPayloadLen +(I) @LINE: 782 + >>> Processing Test Case: handleSetAccelCalibration_NominalPath +(S) @LINE: 810 + >>> Processed Test Case: handleSetAccelCalibration_NominalPath +(I) @LINE: 818 >>> Processing Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(S) @LINE: 649 +(S) @LINE: 830 >>> Processed Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(I) @LINE: 655 +(I) @LINE: 836 >>> Processing Test Case: handleSetDialysateTemperatureCmd_NominalPath -(S) @LINE: 677 +(S) @LINE: 858 >>> Processed Test Case: handleSetDialysateTemperatureCmd_NominalPath -(I) @LINE: 685 +(I) @LINE: 866 >>> Processing Test Case: handleSetRTCTimestamp -(S) @LINE: 720 +(S) @LINE: 901 >>> Processed Test Case: handleSetRTCTimestamp -(I) @LINE: 728 +(I) @LINE: 909 >>> Processing Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(S) @LINE: 743 +(S) @LINE: 924 >>> Processed Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(I) @LINE: 749 +(I) @LINE: 930 >>> Processing Test Case: handleStartStopPrimaryHeater_Start -(S) @LINE: 759 +(S) @LINE: 940 >>> Processed Test Case: handleStartStopPrimaryHeater_Start -(I) @LINE: 765 +(I) @LINE: 946 >>> Processing Test Case: handleStartStopPrimaryHeater_Stop -(S) @LINE: 774 +(S) @LINE: 955 >>> Processed Test Case: handleStartStopPrimaryHeater_Stop -(I) @LINE: 782 +(I) @LINE: 963 >>> Processing Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(S) @LINE: 794 +(S) @LINE: 975 >>> Processed Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(I) @LINE: 800 +(I) @LINE: 981 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(S) @LINE: 817 +(S) @LINE: 998 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(I) @LINE: 823 +(I) @LINE: 1004 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(S) @LINE: 841 +(S) @LINE: 1022 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(I) @LINE: 847 +(I) @LINE: 1028 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(S) @LINE: 864 +(S) @LINE: 1045 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(I) @LINE: 870 +(I) @LINE: 1051 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(S) @LINE: 888 +(S) @LINE: 1069 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(I) @LINE: 896 +(I) @LINE: 1077 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(S) @LINE: 908 +(S) @LINE: 1089 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(I) @LINE: 914 +(I) @LINE: 1095 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Start -(S) @LINE: 931 +(S) @LINE: 1112 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Start -(I) @LINE: 937 +(I) @LINE: 1118 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Stop -(S) @LINE: 954 +(S) @LINE: 1135 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Stop -(I) @LINE: 962 +(I) @LINE: 1143 >>> Processing Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(S) @LINE: 974 +(S) @LINE: 1155 >>> Processed Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(I) @LINE: 980 +(I) @LINE: 1161 >>> Processing Test Case: handleSwitchReservoirCmd_NominalPath -(S) @LINE: 998 +(S) @LINE: 1179 >>> Processed Test Case: handleSwitchReservoirCmd_NominalPath -(I) @LINE: 1006 +(I) @LINE: 1187 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 1016 +(S) @LINE: 1197 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 1022 +(I) @LINE: 1203 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 1047 +(S) @LINE: 1228 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 1053 +(I) @LINE: 1234 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 1077 +(S) @LINE: 1258 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 1085 +(I) @LINE: 1266 + >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen +(S) @LINE: 1278 + >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen +(I) @LINE: 1284 + >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override +(S) @LINE: 1306 + >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override +(I) @LINE: 1312 + >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset +(S) @LINE: 1333 + >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset +(I) @LINE: 1341 + >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen +(S) @LINE: 1353 + >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen +(I) @LINE: 1359 + >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Override +(S) @LINE: 1386 + >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Override +(I) @LINE: 1392 + >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Reset +(S) @LINE: 1418 + >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Reset +(I) @LINE: 1426 + >>> Processing Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen +(E) @LINE: 1453 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1459 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1409 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1366 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1337 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1454 + >>> Processed Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen +(I) @LINE: 1460 + >>> Processing Test Case: handleTestDGAccelOverrideRequest_Override +(E) @LINE: 1502 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1505 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1452 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1405 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1371 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1503 + >>> Processed Test Case: handleTestDGAccelOverrideRequest_Override +(I) @LINE: 1509 + >>> Processing Test Case: handleTestDGAccelOverrideRequest_Reset +(E) @LINE: 1550 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1550 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1494 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1443 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1404 TEST.ATTRIBUTES:SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1551 + >>> Processed Test Case: handleTestDGAccelOverrideRequest_Reset +(I) @LINE: 1559 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(S) @LINE: 1098 +(S) @LINE: 1572 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(I) @LINE: 1104 +(I) @LINE: 1578 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(S) @LINE: 1127 +(S) @LINE: 1601 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(I) @LINE: 1133 +(I) @LINE: 1607 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(S) @LINE: 1155 +(S) @LINE: 1629 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(I) @LINE: 1163 +(I) @LINE: 1637 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1175 +(S) @LINE: 1649 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1181 +(I) @LINE: 1655 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1203 +(S) @LINE: 1677 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1209 +(I) @LINE: 1683 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1230 +(S) @LINE: 1704 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1238 +(I) @LINE: 1712 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 1250 +(S) @LINE: 1724 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 1256 +(I) @LINE: 1730 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(S) @LINE: 1278 +(S) @LINE: 1752 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(I) @LINE: 1284 +(I) @LINE: 1758 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(S) @LINE: 1305 +(S) @LINE: 1779 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(I) @LINE: 1313 +(I) @LINE: 1787 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 1325 +(E) @LINE: 1817 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2003 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1755 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1701 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1658 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1373 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1818 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 1331 +(I) @LINE: 1824 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(S) @LINE: 1354 +(E) @LINE: 1865 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2048 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1797 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1740 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1693 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1403 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1866 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(I) @LINE: 1360 +(I) @LINE: 1872 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(S) @LINE: 1382 +(E) @LINE: 1912 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2092 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1838 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1778 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1727 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1432 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 1913 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(I) @LINE: 1390 +(I) @LINE: 1921 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1402 +(S) @LINE: 1933 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1408 +(I) @LINE: 1939 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1430 +(S) @LINE: 1961 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1436 +(I) @LINE: 1967 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1457 +(S) @LINE: 1988 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1465 +(I) @LINE: 1996 >>> Processing Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(S) @LINE: 1477 +(S) @LINE: 2008 >>> Processed Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(I) @LINE: 1483 +(I) @LINE: 2014 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Override -(S) @LINE: 1510 +(S) @LINE: 2041 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Override -(I) @LINE: 1516 +(I) @LINE: 2047 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Reset -(S) @LINE: 1542 +(S) @LINE: 2073 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Reset -(I) @LINE: 1550 +(I) @LINE: 2081 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1562 +(S) @LINE: 2093 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1568 +(I) @LINE: 2099 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1590 +(S) @LINE: 2121 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1596 +(I) @LINE: 2127 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1617 +(S) @LINE: 2148 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1625 +(I) @LINE: 2156 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(S) @LINE: 1637 +(S) @LINE: 2168 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(I) @LINE: 1643 +(I) @LINE: 2174 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Override -(S) @LINE: 1670 +(S) @LINE: 2201 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Override -(I) @LINE: 1676 +(I) @LINE: 2207 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Reset -(S) @LINE: 1702 +(S) @LINE: 2233 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Reset -(I) @LINE: 1710 +(I) @LINE: 2241 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(S) @LINE: 1722 +(S) @LINE: 2253 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(I) @LINE: 1728 +(I) @LINE: 2259 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(S) @LINE: 1750 +(S) @LINE: 2281 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(I) @LINE: 1756 +(I) @LINE: 2287 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(S) @LINE: 1777 +(S) @LINE: 2308 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(I) @LINE: 1785 +(I) @LINE: 2316 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1797 +(S) @LINE: 2328 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1803 +(I) @LINE: 2334 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1825 +(S) @LINE: 2356 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1831 +(I) @LINE: 2362 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1852 +(S) @LINE: 2383 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1860 +(I) @LINE: 2391 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 1872 +(S) @LINE: 2403 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 1878 +(I) @LINE: 2409 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Override -(S) @LINE: 1900 +(S) @LINE: 2431 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Override -(I) @LINE: 1906 +(I) @LINE: 2437 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(S) @LINE: 1927 +(S) @LINE: 2458 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(I) @LINE: 1935 +(I) @LINE: 2466 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 1947 +(E) @LINE: 2487 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1576 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2113 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2488 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 1953 +(I) @LINE: 2494 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(S) @LINE: 1975 +(E) @LINE: 2525 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1610 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2142 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2526 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(I) @LINE: 1981 +(I) @LINE: 2532 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(S) @LINE: 2001 +(E) @LINE: 2561 TEST.ATTRIBUTES:SystemCommMessages.handleTestROPumpSetPointOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1642 TEST.ATTRIBUTES:SystemCommMessages.handleTestROPumpSetPointOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2169 TEST.ATTRIBUTES:SystemCommMessages.handleTestROPumpSetPointOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2562 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(I) @LINE: 2009 +(I) @LINE: 2570 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(S) @LINE: 2021 +(S) @LINE: 2582 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(I) @LINE: 2027 +(I) @LINE: 2588 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Override -(S) @LINE: 2054 +(E) @LINE: 2624 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1701 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2223 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2625 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Override -(I) @LINE: 2060 +(I) @LINE: 2631 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Reset -(S) @LINE: 2086 +(E) @LINE: 2666 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1739 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2256 TEST.ATTRIBUTES:SystemCommMessages.handleTestLoadCellOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2667 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Reset -(I) @LINE: 2094 +(I) @LINE: 2675 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2106 +(E) @LINE: 2708 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2676 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2419 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2356 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2302 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2003 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 1996 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2710 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2112 +(I) @LINE: 2716 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(S) @LINE: 2133 +(E) @LINE: 2758 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2723 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2463 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2397 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2340 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2037 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2025 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2762 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(I) @LINE: 2139 +(I) @LINE: 2768 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(S) @LINE: 2159 +(E) @LINE: 2809 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2771 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2508 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2439 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2379 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2072 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2055 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2813 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(I) @LINE: 2167 +(I) @LINE: 2821 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2179 +(E) @LINE: 2854 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2813 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2547 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2475 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2412 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2101 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2079 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2857 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2185 +(I) @LINE: 2863 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(S) @LINE: 2212 +(E) @LINE: 2913 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2865 TEST.EXPECTED:uut_prototype_stubs.testSetMeasuredTemperatureOverride.sensor:1 + >>> >>> Unknown parameter/object name sensor + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 2867 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2598 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2523 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2457 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2142 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2115 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2920 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(I) @LINE: 2218 +(I) @LINE: 2926 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(S) @LINE: 2244 +(E) @LINE: 2975 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> Read: msgID::INPUT_BASE=16 +(E) Errors from previous script import(s) + >>> (E) @LINE: 2923 TEST.EXPECTED:uut_prototype_stubs.testResetMeasuredTemperatureOverride.sensor:1 + >>> >>> Unknown parameter/object name sensor + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 2924 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2652 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2574 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2505 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2186 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 + >>> (E) @LINE: 2154 TEST.ATTRIBUTES:SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 + >>> >>> Expected a field name from the record type MESSAGE_HEADER_T + >>> >>> Read: msgID::INPUT_BASE=16 +(S) @LINE: 2982 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(I) @LINE: 2252 +(I) @LINE: 2990 >>> Processing Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 2266 +(S) @LINE: 3004 >>> Processed Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 2272 +(I) @LINE: 3010 >>> Processing Test Case: handleTestValveStateOverrideRequest_Override -(S) @LINE: 2301 +(S) @LINE: 3039 >>> Processed Test Case: handleTestValveStateOverrideRequest_Override -(I) @LINE: 2307 +(I) @LINE: 3045 >>> Processing Test Case: handleTestValveStateOverrideRequest_Reset -(S) @LINE: 2335 +(S) @LINE: 3073 >>> Processed Test Case: handleTestValveStateOverrideRequest_Reset -(I) @LINE: 2343 +(I) @LINE: 3081 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 2356 +(S) @LINE: 3094 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 2362 +(I) @LINE: 3100 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(S) @LINE: 2385 +(S) @LINE: 3123 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(I) @LINE: 2391 +(I) @LINE: 3129 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(S) @LINE: 2413 +(S) @LINE: 3151 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(I) @LINE: 2421 +(I) @LINE: 3159 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 2432 +(S) @LINE: 3170 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 2438 +(I) @LINE: 3176 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 2457 +(S) @LINE: 3195 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 2463 +(I) @LINE: 3201 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 2481 +(S) @LINE: 3219 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 2489 +(I) @LINE: 3227 >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 2498 +(S) @LINE: 3236 >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 2504 +(I) @LINE: 3242 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 2513 +(S) @LINE: 3251 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 2519 +(I) @LINE: 3257 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 2528 +(S) @LINE: 3266 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 2534 +(I) @LINE: 3272 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 2543 +(S) @LINE: 3281 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 2549 +(I) @LINE: 3287 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 2559 +(S) @LINE: 3297 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 2567 +(I) @LINE: 3305 >>> Processing Test Case: NominalPath -(S) @LINE: 2570 +(S) @LINE: 3308 >>> Processed Test Case: NominalPath -(I) @LINE: 2578 +(I) @LINE: 3316 >>> Processing Test Case: sendACKMsg_NominalPath -(S) @LINE: 2596 +(S) @LINE: 3334 >>> Processed Test Case: sendACKMsg_NominalPath -(I) @LINE: 2604 +(I) @LINE: 3342 >>> Processing Test Case: sendAckResponseMsg_NominalPath -(S) @LINE: 2624 +(S) @LINE: 3362 >>> Processed Test Case: sendAckResponseMsg_NominalPath -(I) @LINE: 2632 +(I) @LINE: 3370 >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 2650 +(S) @LINE: 3388 >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 2658 +(I) @LINE: 3396 >>> Processing Test Case: serializeMessage_ACK -(S) @LINE: 2696 +(S) @LINE: 3435 >>> Processed Test Case: serializeMessage_ACK -(I) @LINE: 2702 +(I) @LINE: 3441 >>> Processing Test Case: serializeMessage_ACKListFull -(S) @LINE: 2723 +(S) @LINE: 3462 >>> Processed Test Case: serializeMessage_ACKListFull -(I) @LINE: 2729 +(I) @LINE: 3468 >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 2770 +(S) @LINE: 3509 >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 2776 +(I) @LINE: 3515 >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 2807 +(S) @LINE: 3546 >>> Processed Test Case: serializeMessage_NominalPath -(I) @LINE: 2813 +(I) @LINE: 3552 >>> Processing Test Case: serializeMessage_SeqWrap -(S) @LINE: 2844 +(S) @LINE: 3583 >>> Processed Test Case: serializeMessage_SeqWrap -(S) @LINE: 2844 +(S) @LINE: 3583 >>> 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-07-31 15:13:59 +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES tools import_coverage /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:30: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/456249163/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/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 SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:14:00 -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/456249163/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open Processing Coverage Import Script File Script Creation Completed -------------------------------------------------------------------------------- Coverage Import/Export Log -------------------------------------------------------------------------------- (S) @LINE: 1 - >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr -(S) @LINE: 45 - >>> Source file matched SystemCommMessages.c -(S) @LINE: 71 - >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr + >>> Script processing started for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr +(E) @LINE: 1 + >>> Script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr did not contain any relevant coverage data +(S) @LINE: 1 + >>> File processing completed for /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:14:00 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:30: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/456249163/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -12064,814 +14053,918 @@ Running: serializeMessage_ACK 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: serializeMessage_ACKListFull 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: serializeMessage_MessageNeedsPadding 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: serializeMessage_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: serializeMessage_SeqWrap 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.sendACKMsg test cases Running: sendACKMsg_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.sendAckResponseMsg test cases Running: sendAckResponseMsg_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastAlarmTriggered test cases Running: broadcastAlarmTriggered_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastAlarmCleared test cases Running: broadcastAlarmCleared_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.broadcastAccelData test cases + Running: broadcastAccelData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.broadcastRTCEpoch test cases Running: broadcastRTCEpoch_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastDGOperationMode test cases Running: broadcastDGOperationMode_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastLoadCellData test cases Running: broadcastLoadCellData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastValvesStates test cases Running: broadcastValvesStates_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastHeatersData test cases Running: broadcastHeatersData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastROPumpData test cases Running: broadcastROPumpData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastDrainPumpData test cases Running: broadcastDrainPumpData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastPressureSensorsData test cases Running: broadcastPressureSensorsData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastReservoirData test cases Running: broadcastReservoirData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastTemperatureSensorsData test cases Running: broadcastTemperatureSensorsData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.broadcastConductivityData test cases Running: broadcastConductivityData_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handlePowerOffWarning test cases + Running: handlePowerOffWarning_InvalidPayloadLen + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handlePowerOffWarning_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleSetDialysateTemperatureCmd test cases Running: handleSetDialysateTemperatureCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSetDialysateTemperatureCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleFWVersionCmd test cases Running: handleFWVersionCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSwitchReservoirCmd test cases Running: handleSwitchReservoirCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSwitchReservoirCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleFillCmd test cases Running: handleFillCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleFillCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleDrainCmd test cases Running: handleDrainCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleDrainCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTreatmentMsg test cases Running: handleStartStopTreatmentMsg_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTreatmentMsg_Start_NotStandbyMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTreatmentMsg_Start_StandbyMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTreatmentMsg_Stop_NotRecircMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTreatmentMsg_Stop_RecircMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopTrimmerHeaterCmd test cases Running: handleStartStopTrimmerHeaterCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTrimmerHeaterCmd_Start 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopTrimmerHeaterCmd_Stop 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSampleWaterCmd test cases Running: handleSampleWaterCmd_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSampleWaterCmd_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSampleWaterCmd_NotStandbyMode 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleSetRTCTimestamp test cases Running: handleSetRTCTimestamp 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleStartStopPrimaryHeater test cases Running: handleStartStopPrimaryHeater_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopPrimaryHeater_Start 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleStartStopPrimaryHeater_Stop 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.isTestingActivated test cases Running: NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.sendTestAckResponseMsg test cases Running: sendTestAckResponseMsg_NominalPath 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTesterLogInRequest test cases Running: handleTesterLogInRequest_LoginSuccessful 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest test cases Running: handleTestWatchdogCheckInStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestWatchdogCheckInStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestWatchdogCheckInStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestAlarmStateOverrideRequest test cases Running: handleTestAlarmStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestAlarmStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestAlarmStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestLoadCellOverrideRequest test cases Running: handleTestLoadCellOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestLoadCellOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestLoadCellOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestTemperatureSensorsOverrideRequest test cases Running: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestTemperatureSensorsDataPublishOverrideRequest test cases Running: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsDataPublishOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestTemperatureSensorsDataPublishOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestHeatersDataPublishOverrideRequest test cases Running: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length 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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestHeatersDataPublishOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestHeatersDataPublishOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestLoadCellDataBroadcastIntervalOverrideRequest test cases Running: handleTestLoadCellDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestLoadCellDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestLoadCellDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestPressureSensorOverrideRequest test cases Running: handleTestPressureSensorOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestPressureSensorOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestPressureSensorOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestPressureDataBroadcastIntervalOverrideRequest test cases Running: handleTestPressureDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestPressureDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestPressureDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROPumpSetPointOverrideRequest test cases Running: handleTestROPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROMeasuredFlowOverrideRequest test cases Running: handleTestROMeasuredFlowOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROMeasuredFlowOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROMeasuredFlowOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROPumpDataBroadcastIntervalOverrideRequest test cases Running: handleTestROPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestROPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpSetPointOverrideRequest test cases Running: handleTestDrainPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDrainPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDrainPumpSetPointOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpDataBroadcastIntervalOverrideRequest test cases Running: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestValveStateOverrideRequest test cases Running: handleTestValveStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestValveStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestValveStateOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestValvesStatesPublishIntervalOverrideRequest test cases Running: handleTestValvesStatesPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestValvesStatesPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestValvesStatesPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestDGSafetyShutdownOverrideRequest test cases Running: handleTestDGSafetyShutdownOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDGSafetyShutdownOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestDGSafetyShutdownOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelOverrideRequest test cases + Running: handleTestDGAccelOverrideRequest_InvalidPayloadLen + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelOverrideRequest_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelMaxOverrideRequest test cases + Running: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelMaxOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelMaxOverrideRequest_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestDGAccelBroadcastIntervalOverrideRequest test cases + Running: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelBroadcastIntervalOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleSetAccelCalibration test cases + Running: handleSetAccelCalibration_InvalidPayloadLen + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSetAccelCalibration_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleTestSetConductivityOverrideRequest test cases Running: handleTestSetConductivityOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestSetConductivityOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestSetConductivityOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestSetConductivityDataPublishIntervalOverrideRequest test cases Running: handleTestSetConductivityDataPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestSetConductivityDataPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleTestSetConductivityDataPublishIntervalOverrideRequest_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 + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/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/3934269912/TEMPERATURESENSORS.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-31 15:14:03 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 +TIME: 2020-08-19 14:30: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/3934269912/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env" Initializing search list Creating the Environment Directory Creating Environment "TEMPERATURESENSORS" @@ -12900,40 +14993,47 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-31 15:14:06 +COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 +TIME: 2020-08-19 14:30:53 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/3934269912/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 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 Processing script line 500 + Processing script line 550 Processing script line 600 Processing script line 650 Processing script line 700 - Processing script line 800 + Processing script line 750 + Processing script line 850 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: checkInletWaterTemperature_In_Range_Active_Alarm (S) @LINE: 28 @@ -12996,181 +15096,212 @@ >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Not_Zero (I) @LINE: 195 >>> Processing Test Case: getADC2TempConversion_Conversion_Coeff_Zero -(S) @LINE: 203 +(S) @LINE: 202 >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Zero -(I) @LINE: 211 +(I) @LINE: 208 + >>> Processing Test Case: getADC2TempConversion_Conversion_Coeff_Zero2 +(S) @LINE: 215 + >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Zero2 +(I) @LINE: 223 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Negative -(S) @LINE: 218 +(S) @LINE: 230 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Negative -(I) @LINE: 224 +(I) @LINE: 236 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater -(S) @LINE: 231 +(S) @LINE: 243 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater -(I) @LINE: 237 +(I) @LINE: 249 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater -(S) @LINE: 244 +(S) @LINE: 256 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater -(I) @LINE: 252 +(I) @LINE: 264 >>> Processing Test Case: getPublishTemperatureSensorsDataInterval_No_Override -(S) @LINE: 258 +(S) @LINE: 270 >>> Processed Test Case: getPublishTemperatureSensorsDataInterval_No_Override -(I) @LINE: 264 +(I) @LINE: 276 >>> Processing Test Case: getPublishTemperatureSensorsDataInterval_Override -(S) @LINE: 270 +(S) @LINE: 282 >>> Processed Test Case: getPublishTemperatureSensorsDataInterval_Override -(I) @LINE: 278 +(I) @LINE: 290 + >>> Processing Test Case: getTemperatureValue_InvalidSensor +(S) @LINE: 293 + >>> Processed Test Case: getTemperatureValue_InvalidSensor +(I) @LINE: 299 >>> Processing Test Case: getTemperatureValue_No_Override -(S) @LINE: 283 +(S) @LINE: 304 >>> Processed Test Case: getTemperatureValue_No_Override -(I) @LINE: 289 +(I) @LINE: 310 >>> Processing Test Case: getTemperatureValue_Override -(S) @LINE: 294 +(S) @LINE: 315 >>> Processed Test Case: getTemperatureValue_Override -(I) @LINE: 302 +(I) @LINE: 323 >>> Processing Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc -(S) @LINE: 305 +(S) @LINE: 326 >>> Processed Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc -(I) @LINE: 311 +(I) @LINE: 332 >>> Processing Test Case: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override -(S) @LINE: 316 +(S) @LINE: 337 >>> Processed Test Case: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override -(I) @LINE: 324 +(I) @LINE: 345 >>> Processing Test Case: handleExecStart_Running -(S) @LINE: 329 +(S) @LINE: 350 >>> Processed Test Case: handleExecStart_Running -(I) @LINE: 335 +(I) @LINE: 356 >>> Processing Test Case: handleExecStart_Time_Elapsed -(S) @LINE: 341 +(S) @LINE: 362 >>> Processed Test Case: handleExecStart_Time_Elapsed -(I) @LINE: 347 +(I) @LINE: 368 >>> Processing Test Case: handleExecStart_Time_Zero -(S) @LINE: 353 +(S) @LINE: 374 >>> Processed Test Case: handleExecStart_Time_Zero -(I) @LINE: 361 +(I) @LINE: 382 + >>> Processing Test Case: handleSelfTestADCCheck_Equal_FullScale +(S) @LINE: 385 + >>> Processed Test Case: handleSelfTestADCCheck_Equal_FullScale +(I) @LINE: 391 >>> Processing Test Case: handleSelfTestADCCheck_Greater_Than_Full_Scale -(S) @LINE: 364 +(S) @LINE: 394 >>> Processed Test Case: handleSelfTestADCCheck_Greater_Than_Full_Scale -(I) @LINE: 370 +(I) @LINE: 400 >>> Processing Test Case: handleSelfTestADCCheck_In_Range -(S) @LINE: 374 +(S) @LINE: 404 >>> Processed Test Case: handleSelfTestADCCheck_In_Range -(I) @LINE: 380 +(I) @LINE: 410 >>> Processing Test Case: handleSelfTestADCCheck_Less_Than_Zero -(S) @LINE: 383 +(S) @LINE: 413 >>> Processed Test Case: handleSelfTestADCCheck_Less_Than_Zero -(I) @LINE: 391 +(I) @LINE: 421 >>> Processing Test Case: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff -(S) @LINE: 403 +(S) @LINE: 433 >>> Processed Test Case: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff -(I) @LINE: 409 +(I) @LINE: 439 >>> Processing Test Case: handleSelfTestConsistencyCheck_In_Range -(S) @LINE: 421 +(S) @LINE: 451 >>> Processed Test Case: handleSelfTestConsistencyCheck_In_Range -(I) @LINE: 429 +(I) @LINE: 459 >>> Processing Test Case: handleSelfTestStart_NominalPath -(S) @LINE: 434 +(S) @LINE: 464 >>> Processed Test Case: handleSelfTestStart_NominalPath -(I) @LINE: 442 +(I) @LINE: 472 >>> Processing Test Case: initTemperatureSensors_NominalPath -(S) @LINE: 547 +(S) @LINE: 577 >>> Processed Test Case: initTemperatureSensors_NominalPath -(I) @LINE: 555 +(I) @LINE: 585 >>> Processing Test Case: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time -(S) @LINE: 564 +(S) @LINE: 594 >>> Processed Test Case: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time -(I) @LINE: 570 +(I) @LINE: 600 >>> Processing Test Case: isADCReadValid_FPGA_Error_Not_Zero -(S) @LINE: 575 +(S) @LINE: 605 >>> Processed Test Case: isADCReadValid_FPGA_Error_Not_Zero -(I) @LINE: 581 +(I) @LINE: 611 >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(S) @LINE: 591 +(S) @LINE: 621 >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(I) @LINE: 597 +(I) @LINE: 627 >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(S) @LINE: 605 +(S) @LINE: 635 >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(I) @LINE: 611 +(I) @LINE: 641 >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(S) @LINE: 621 +(S) @LINE: 651 >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(I) @LINE: 627 +(I) @LINE: 657 >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(S) @LINE: 637 +(S) @LINE: 667 >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(I) @LINE: 645 +(I) @LINE: 675 >>> Processing Test Case: processADCRead_Index_Wrap -(S) @LINE: 653 +(E) Errors from previous script import(s) + >>> (E) @LINE: 677 TEST.VALUE:TemperatureSensors.<>.rawADCReads[TEMPSENSORS_INLET_PRIMARY_HEATER_TEMP_SENSOR][0]:25 + >>> >>> Unknown parameter/object name rawADCReads + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 678 TEST.VALUE:TemperatureSensors.<>.runningSumAndIndex[TEMPSENSORS_INLET_PRIMARY_HEATER_TEMP_SENSOR][0]:0 + >>> >>> Unknown parameter/object name runningSumAndIndex + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 679 TEST.VALUE:TemperatureSensors.<>.runningSumAndIndex[TEMPSENSORS_INLET_PRIMARY_HEATER_TEMP_SENSOR][1]:125 + >>> >>> Unknown parameter/object name runningSumAndIndex + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 680 ======= + >>> >>> Invalid data value: 'Expected legal test script command' + >>> >>> Read: "=======" + >>> (E) @LINE: 681 TEST.NAME:processADCRead_Index_Wrap + >>> >>> Warning: Test name already set + >>> >>> Previous name processADCRead_No_Index_Wrap will be ignored. + >>> (E) @LINE: 685 >>>>>>> master + >>> >>> Invalid data value: 'Expected legal test script command' + >>> >>> Read: ">>>>>>> master" +(S) @LINE: 703 >>> Processed Test Case: processADCRead_Index_Wrap -(I) @LINE: 659 +(I) @LINE: 709 >>> Processing Test Case: processADCRead_No_Index_Wrap -(S) @LINE: 670 +(S) @LINE: 720 >>> Processed Test Case: processADCRead_No_Index_Wrap -(I) @LINE: 678 +(I) @LINE: 728 >>> Processing Test Case: processHtrsTempSnsrsADCRead_NominalPath -(S) @LINE: 687 +(S) @LINE: 737 >>> Processed Test Case: processHtrsTempSnsrsADCRead_NominalPath -(I) @LINE: 695 +(I) @LINE: 745 >>> Processing Test Case: processTempSnsrsADCRead_NominalPath -(S) @LINE: 704 +(S) @LINE: 754 >>> Processed Test Case: processTempSnsrsADCRead_NominalPath -(I) @LINE: 712 +(I) @LINE: 762 >>> Processing Test Case: publishTemperatureSensorsData_Time_Elapsed -(S) @LINE: 723 +(S) @LINE: 773 >>> Processed Test Case: publishTemperatureSensorsData_Time_Elapsed -(I) @LINE: 729 +(I) @LINE: 779 >>> Processing Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(S) @LINE: 734 +(S) @LINE: 784 >>> Processed Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(I) @LINE: 742 +(I) @LINE: 792 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 747 +(S) @LINE: 797 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 753 +(I) @LINE: 803 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 763 +(S) @LINE: 813 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 769 +(I) @LINE: 819 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 774 +(S) @LINE: 824 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 782 +(I) @LINE: 832 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(S) @LINE: 791 +(S) @LINE: 841 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(I) @LINE: 797 +(I) @LINE: 847 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(S) @LINE: 806 +(S) @LINE: 856 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(I) @LINE: 814 +(I) @LINE: 864 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 819 +(S) @LINE: 869 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 825 +(I) @LINE: 875 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 833 +(S) @LINE: 883 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 839 +(I) @LINE: 889 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 845 +(S) @LINE: 895 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 853 +(I) @LINE: 903 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(S) @LINE: 862 +(S) @LINE: 912 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(I) @LINE: 868 +(I) @LINE: 918 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 877 +(S) @LINE: 927 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 877 +(S) @LINE: 927 >>> 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-07-31 15:14:07 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 +TIME: 2020-08-19 14:30:55 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/3934269912/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -13179,433 +15310,754 @@ Running: initTemperatureSensors_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.execTemperatureSensorsSelfTest test cases Running: execTemperatureSensorsSelfTest_ADC_Check Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensorsSelfTest_Complete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensorsSelfTest_Consistency_Check Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensorsSelfTest_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensorsSelfTest_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.execTemperatureSensors test cases Running: execTemperatureSensors_Start Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensors_Start_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execTemperatureSensors_Start_Get_ADC_Values Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.checkInletWaterTemperature test cases Running: checkInletWaterTemperature_In_Range_Active_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterTemperature_In_Range_Clear_Active_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterTemperature_Too_High_Temp_Trigger_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterTemperature_Too_High_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterTemperature_Too_Low_Temp_Trigger_Alarm Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkInletWaterTemperature_Too_Low_Temperature Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.getTemperatureValue test cases + Running: getTemperatureValue_InvalidSensor + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: getTemperatureValue_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getTemperatureValue_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.getADC2TempConversion test cases Running: getADC2TempConversion_Conversion_Coeff_Not_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getADC2TempConversion_Conversion_Coeff_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: getADC2TempConversion_Conversion_Coeff_Zero2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all TemperatureSensors.getHeaterInternalTemp test cases Running: getHeaterInternalTemp_Cold_Junction_Negative Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.processTempSnsrsADCRead test cases Running: processTempSnsrsADCRead_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.processHtrsTempSnsrsADCRead test cases Running: processHtrsTempSnsrsADCRead_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.isADCReadValid test cases Running: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isADCReadValid_FPGA_Error_Not_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isADCReadValid_FPGA_Read_Count_Not_Changed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.processADCRead test cases Running: processADCRead_Index_Wrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: processADCRead_No_Index_Wrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.handleSelfTestStart test cases Running: handleSelfTestStart_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.handleSelfTestADCCheck test cases + Running: handleSelfTestADCCheck_Equal_FullScale + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: handleSelfTestADCCheck_Greater_Than_Full_Scale Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSelfTestADCCheck_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSelfTestADCCheck_Less_Than_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.handleSelfTestConsistencyCheck test cases Running: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleSelfTestConsistencyCheck_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.handleExecStart test cases Running: handleExecStart_Running Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleExecStart_Time_Elapsed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleExecStart_Time_Zero Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.handleExecGetADCValues test cases Running: handleExecGetADCValues_Internal_Heaters_Temp_Calc Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.getPublishTemperatureSensorsDataInterval test cases Running: getPublishTemperatureSensorsDataInterval_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishTemperatureSensorsDataInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.publishTemperatureSensorsData test cases Running: publishTemperatureSensorsData_Time_Elapsed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: publishTemperatureSensorsData_Time_Not_Elapsed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.testSetMeasuredTemperatureOverride test cases Running: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetMeasuredTemperatureOverride_Test_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetMeasuredTemperatureOverride_Test_Not_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.testResetMeasuredTemperatureOverride test cases Running: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetMeasuredTemperatureOverride_Test_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetMeasuredTemperatureOverride_Test_Not_Activated Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.testSetTemperatureSensorsPublishIntervalOverride test cases Running: testSetTemperatureSensorsPublishIntervalOverride_Log_Active Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.testResetTemperatureSensorsPublishIntervalOverride test cases Running: testResetTemperatureSensorsPublishIntervalOverride._Log_Active Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/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-07-31 15:14:09 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:30: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/754038457/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env" Initializing search list Creating the Environment Directory + Creating Environment "UTILITIES" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Utilities + Unit 9 (tdd-sbf-source): 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 Statement+MC/DC Coverage + Instrumenting file Utilities + Compiling file Utilities + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:31:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Processing script line 100 + Processing script line 200 + Processing script line 250 + Processing script line 350 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: NominalPath +(S) @LINE: 37 + >>> Processed Test Case: NominalPath +(I) @LINE: 43 + >>> Processing Test Case: ZeroLength +(S) @LINE: 51 + >>> Processed Test Case: ZeroLength +(I) @LINE: 59 + >>> Processing Test Case: NominalPath +(S) @LINE: 65 + >>> Processed Test Case: NominalPath +(I) @LINE: 73 + >>> Processing Test Case: getCriticalData_Corrupted +(S) @LINE: 84 + >>> Processed Test Case: getCriticalData_Corrupted +(I) @LINE: 90 + >>> Processing Test Case: getCriticalData_InvalidDataType +(S) @LINE: 101 + >>> Processed Test Case: getCriticalData_InvalidDataType +(I) @LINE: 107 + >>> Processing Test Case: getCriticalData_NominalPath +(S) @LINE: 114 + >>> Processed Test Case: getCriticalData_NominalPath +(I) @LINE: 120 + >>> Processing Test Case: getCriticalData_NotSet +(S) @LINE: 131 + >>> Processed Test Case: getCriticalData_NotSet +(I) @LINE: 139 + >>> Processing Test Case: incTimeWindowedCount_InvalidCount +(S) @LINE: 147 + >>> Processed Test Case: incTimeWindowedCount_InvalidCount +(I) @LINE: 153 + >>> Processing Test Case: incTimeWindowedCount_NotInitialized +(S) @LINE: 162 + >>> Processed Test Case: incTimeWindowedCount_NotInitialized +(I) @LINE: 168 + >>> Processing Test Case: incTimeWindowedCount_NotTooManyInstances +(S) @LINE: 185 + >>> Processed Test Case: incTimeWindowedCount_NotTooManyInstances +(I) @LINE: 191 + >>> Processing Test Case: incTimeWindowedCount_NotTooManyInstances2 +(S) @LINE: 210 + >>> Processed Test Case: incTimeWindowedCount_NotTooManyInstances2 +(I) @LINE: 216 + >>> Processing Test Case: incTimeWindowedCount_TooManyInstances +(S) @LINE: 235 + >>> Processed Test Case: incTimeWindowedCount_TooManyInstances +(I) @LINE: 243 + >>> Processing Test Case: initTimeWindowedCount_InvalidCount +(S) @LINE: 252 + >>> Processed Test Case: initTimeWindowedCount_InvalidCount +(I) @LINE: 258 + >>> Processing Test Case: initTimeWindowedCount_InvalidMaxCount +(S) @LINE: 269 + >>> Processed Test Case: initTimeWindowedCount_InvalidMaxCount +(I) @LINE: 275 + >>> Processing Test Case: initTimeWindowedCount_NominalPath +(S) @LINE: 299 + >>> Processed Test Case: initTimeWindowedCount_NominalPath +(I) @LINE: 307 + >>> Processing Test Case: resetCriticalData_NominalPath +(S) @LINE: 317 + >>> Processed Test Case: resetCriticalData_NominalPath +(I) @LINE: 325 + >>> Processing Test Case: setCriticalData_InvalidDataType +(S) @LINE: 337 + >>> Processed Test Case: setCriticalData_InvalidDataType +(I) @LINE: 343 + >>> Processing Test Case: setCriticalData_NominalPath +(S) @LINE: 354 + >>> Processed Test Case: setCriticalData_NominalPath +(S) @LINE: 354 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:31:02 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/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 UTILITIES -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:31:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Utilities.crc16 test cases + Running: NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: ZeroLength + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.crc8 test cases + Running: NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.initTimeWindowedCount test cases + Running: initTimeWindowedCount_InvalidCount + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: initTimeWindowedCount_InvalidMaxCount + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: initTimeWindowedCount_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.incTimeWindowedCount test cases + Running: incTimeWindowedCount_InvalidCount + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: incTimeWindowedCount_NotInitialized + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: incTimeWindowedCount_NotTooManyInstances + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: incTimeWindowedCount_NotTooManyInstances2 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: incTimeWindowedCount_TooManyInstances + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.getCriticalData test cases + Running: getCriticalData_Corrupted + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getCriticalData_InvalidDataType + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getCriticalData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getCriticalData_NotSet + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.setCriticalData test cases + Running: setCriticalData_InvalidDataType + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setCriticalData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Utilities.resetCriticalData test cases + Running: resetCriticalData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-08-19 14:31:04 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env" + Initializing search list + Creating the Environment Directory Creating Environment "VALVES" Unit 8 (not-stubbed): User Defined Globals Parsing @@ -13632,18 +16084,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-07-31 15:14:11 +COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-08-19 14:31:08 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/754038457/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -13657,27 +16109,23 @@ Processing script line 250 Processing script line 300 Processing script line 350 + Processing script line 400 Processing script line 500 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 1350 + Processing script line 1300 + Processing script line 1500 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: checkValveStateName_VBF_Valve_State_Closed (S) @LINE: 31 @@ -13768,380 +16216,404 @@ >>> Processed Test Case: checkValveStateName_VSP_Valve_State_Open (I) @LINE: 310 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Closed -(S) @LINE: 311 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. (S) @LINE: 314 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 317 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Closed -(I) @LINE: 323 - >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Drain_C_To_NO +(I) @LINE: 320 + >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Drain_C_To_NC (S) @LINE: 324 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 327 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 330 + >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Drain_C_To_NC +(I) @LINE: 330 + >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Drain_C_To_NO +(S) @LINE: 334 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Drain_C_To_NO -(I) @LINE: 336 +(I) @LINE: 340 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Fill_C_To_NC -(S) @LINE: 337 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 340 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 343 +(S) @LINE: 344 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Fill_C_To_NC -(I) @LINE: 349 +(I) @LINE: 350 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_NoFill_C_To_NO -(S) @LINE: 350 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 353 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 356 +(S) @LINE: 354 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_NoFill_C_To_NO -(I) @LINE: 362 +(I) @LINE: 360 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Open -(S) @LINE: 363 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 366 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 369 +(S) @LINE: 364 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Open -(I) @LINE: 375 +(I) @LINE: 370 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Open_C_To_NO -(S) @LINE: 376 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 379 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 382 +(S) @LINE: 374 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Open_C_To_NO -(I) @LINE: 388 +(I) @LINE: 380 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_R1_C_To_NC -(S) @LINE: 389 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 392 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 395 +(S) @LINE: 384 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_R1_C_To_NC -(I) @LINE: 401 +(I) @LINE: 390 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_R1_C_To_NO -(S) @LINE: 402 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 405 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 408 +(S) @LINE: 394 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_R1_C_To_NO -(I) @LINE: 414 +(I) @LINE: 400 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_R2_C_To_NC -(S) @LINE: 415 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 418 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 421 +(S) @LINE: 404 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_R2_C_To_NC -(I) @LINE: 427 +(I) @LINE: 410 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_R2_C_To_NO -(S) @LINE: 428 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 431 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 434 +(S) @LINE: 414 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_R2_C_To_NO -(I) @LINE: 440 +(I) @LINE: 420 >>> Processing Test Case: checkValveStateName_Wrong_Valve_State_Recirc_C_To_NC -(S) @LINE: 441 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 444 - >>> Warning: Setting data to out-of-range value. The value 15 does not correspond to an enumeral value. -(S) @LINE: 447 +(S) @LINE: 424 >>> Processed Test Case: checkValveStateName_Wrong_Valve_State_Recirc_C_To_NC -(I) @LINE: 455 +(I) @LINE: 432 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Closed -(S) @LINE: 460 +(S) @LINE: 437 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Closed -(I) @LINE: 466 +(I) @LINE: 443 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Default -(S) @LINE: 467 +(S) @LINE: 444 >>> Warning: Setting data to out-of-range value. The value 14 does not correspond to an enumeral value. -(S) @LINE: 469 +(S) @LINE: 446 >>> Warning: Setting data to out-of-range value. The value 14 does not correspond to an enumeral value. -(S) @LINE: 471 +(S) @LINE: 448 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Default -(I) @LINE: 477 +(I) @LINE: 454 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Drain_C_To_NC -(S) @LINE: 482 +(S) @LINE: 459 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Drain_C_To_NC -(I) @LINE: 488 +(I) @LINE: 465 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Drain_C_To_NO -(S) @LINE: 493 +(S) @LINE: 470 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Drain_C_To_NO -(I) @LINE: 499 +(I) @LINE: 476 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Fill_C_To_NC -(S) @LINE: 504 +(S) @LINE: 481 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Fill_C_To_NC -(I) @LINE: 510 +(I) @LINE: 487 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_NoFill_C_To_NO -(S) @LINE: 515 +(S) @LINE: 492 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_NoFill_C_To_NO -(I) @LINE: 521 +(I) @LINE: 498 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Open -(S) @LINE: 526 +(S) @LINE: 503 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Open -(I) @LINE: 532 +(I) @LINE: 509 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Open_C_To_NO -(S) @LINE: 537 +(S) @LINE: 514 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Open_C_To_NO -(I) @LINE: 543 +(I) @LINE: 520 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_R1_C_To_NC -(S) @LINE: 548 +(S) @LINE: 525 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_R1_C_To_NC -(I) @LINE: 554 +(I) @LINE: 531 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_R1_C_To_NO -(S) @LINE: 559 +(S) @LINE: 536 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_R1_C_To_NO -(I) @LINE: 565 +(I) @LINE: 542 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_R2_C_To_NC -(S) @LINE: 570 +(S) @LINE: 547 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_R2_C_To_NC -(I) @LINE: 576 +(I) @LINE: 553 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_R2_C_To_NO -(S) @LINE: 581 +(S) @LINE: 558 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_R2_C_To_NO -(I) @LINE: 587 +(I) @LINE: 564 >>> Processing Test Case: convertValveStateNameToValveState_Valve_State_Recirc_C_To_NC -(S) @LINE: 592 +(S) @LINE: 569 >>> Processed Test Case: convertValveStateNameToValveState_Valve_State_Recirc_C_To_NC -(I) @LINE: 600 +(I) @LINE: 577 >>> Processing Test Case: execValves_Valves_Matched -(S) @LINE: 605 +(S) @LINE: 582 >>> Processed Test Case: execValves_Valves_Matched -(I) @LINE: 611 +(I) @LINE: 588 >>> Processing Test Case: execValves_Valves_Not_Matched_0 -(S) @LINE: 617 +(S) @LINE: 594 >>> Processed Test Case: execValves_Valves_Not_Matched_0 -(I) @LINE: 623 +(I) @LINE: 600 >>> Processing Test Case: execValves_Valves_Not_Matched_1 -(S) @LINE: 629 +(S) @LINE: 606 >>> Processed Test Case: execValves_Valves_Not_Matched_1 -(I) @LINE: 635 +(I) @LINE: 612 >>> Processing Test Case: execValves_Valves_Not_Matched_2 -(S) @LINE: 641 +(S) @LINE: 618 >>> Processed Test Case: execValves_Valves_Not_Matched_2 -(I) @LINE: 647 +(I) @LINE: 624 >>> Processing Test Case: execValves_Valves_Not_Matched_3 -(S) @LINE: 653 +(S) @LINE: 630 >>> Processed Test Case: execValves_Valves_Not_Matched_3 -(I) @LINE: 661 +(I) @LINE: 638 >>> Processing Test Case: fromU32ArrayToU16_All_Denergized -(S) @LINE: 664 +(S) @LINE: 641 >>> Processed Test Case: fromU32ArrayToU16_All_Denergized -(I) @LINE: 670 +(I) @LINE: 647 >>> Processing Test Case: fromU32ArrayToU16_All_Energized -(S) @LINE: 701 +(E) Errors from previous script import(s) + >>> (E) @LINE: 672 TEST.VALUE:Valves.fromU32ArrayToU16.array[VRF].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 673 TEST.VALUE:Valves.fromU32ArrayToU16.array[VRI].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 674 TEST.VALUE:Valves.fromU32ArrayToU16.array[VRD].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 675 TEST.VALUE:Valves.fromU32ArrayToU16.array[VRO].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 676 TEST.VALUE:Valves.fromU32ArrayToU16.array[VPO].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 677 TEST.VALUE:Valves.fromU32ArrayToU16.array[VBF].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 678 TEST.VALUE:Valves.fromU32ArrayToU16.array[VRC].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 679 TEST.VALUE:Valves.fromU32ArrayToU16.array[VDR].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 680 TEST.VALUE:Valves.fromU32ArrayToU16.array[VPI].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 681 TEST.VALUE:Valves.fromU32ArrayToU16.array[VSP].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 682 TEST.VALUE:Valves.fromU32ArrayToU16.array[VR1].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 683 TEST.VALUE:Valves.fromU32ArrayToU16.array[VR2].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 684 TEST.VALUE:Valves.fromU32ArrayToU16.array[VPD].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 687 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VRF].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 688 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VRI].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 689 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VRD].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 690 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VRO].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 691 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VPO].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 692 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VBF].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 693 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VRC].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 694 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VDR].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 695 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VPI].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 696 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VSP].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 697 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VR1].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 698 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VR2].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 699 TEST.EXPECTED:Valves.fromU32ArrayToU16.array[VPD].data:1 + >>> >>> Unknown parameter/object name array + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 732 >>> Processed Test Case: fromU32ArrayToU16_All_Energized -(I) @LINE: 709 +(I) @LINE: 740 >>> Processing Test Case: getPublishValvesStatesInterval_No_Override -(S) @LINE: 714 +(S) @LINE: 745 >>> Processed Test Case: getPublishValvesStatesInterval_No_Override -(I) @LINE: 720 +(I) @LINE: 751 >>> Processing Test Case: getPublishValvesStatesInterval_Override -(S) @LINE: 729 +(S) @LINE: 760 >>> Processed Test Case: getPublishValvesStatesInterval_Override -(I) @LINE: 737 +(I) @LINE: 768 >>> Processing Test Case: getValveState_VBF_No_Override -(S) @LINE: 751 +(S) @LINE: 782 >>> Processed Test Case: getValveState_VBF_No_Override -(I) @LINE: 757 +(I) @LINE: 788 >>> Processing Test Case: getValveState_VBF_Override -(S) @LINE: 768 +(S) @LINE: 799 >>> Processed Test Case: getValveState_VBF_Override -(I) @LINE: 774 +(I) @LINE: 805 >>> Processing Test Case: getValveState_VDR_No_Override -(S) @LINE: 790 +(S) @LINE: 821 >>> Processed Test Case: getValveState_VDR_No_Override -(I) @LINE: 796 +(I) @LINE: 827 >>> Processing Test Case: getValveState_VDR_Override -(S) @LINE: 807 +(S) @LINE: 838 >>> Processed Test Case: getValveState_VDR_Override -(I) @LINE: 813 +(I) @LINE: 844 >>> Processing Test Case: getValveState_VPD_No_Override -(S) @LINE: 834 +(S) @LINE: 865 >>> Processed Test Case: getValveState_VPD_No_Override -(I) @LINE: 840 +(I) @LINE: 871 >>> Processing Test Case: getValveState_VPD_Override -(S) @LINE: 851 +(S) @LINE: 882 >>> Processed Test Case: getValveState_VPD_Override -(I) @LINE: 857 +(I) @LINE: 888 >>> Processing Test Case: getValveState_VPI_No_Override -(S) @LINE: 874 +(S) @LINE: 905 >>> Processed Test Case: getValveState_VPI_No_Override -(I) @LINE: 880 +(I) @LINE: 911 >>> Processing Test Case: getValveState_VPI_Override -(S) @LINE: 891 +(S) @LINE: 922 >>> Processed Test Case: getValveState_VPI_Override -(I) @LINE: 897 +(I) @LINE: 928 >>> Processing Test Case: getValveState_VPO_No_Override -(S) @LINE: 910 +(S) @LINE: 941 >>> Processed Test Case: getValveState_VPO_No_Override -(I) @LINE: 916 +(I) @LINE: 947 >>> Processing Test Case: getValveState_VPO_Override -(S) @LINE: 927 +(S) @LINE: 958 >>> Processed Test Case: getValveState_VPO_Override -(I) @LINE: 933 +(I) @LINE: 964 >>> Processing Test Case: getValveState_VR1_No_Override -(S) @LINE: 952 +(S) @LINE: 983 >>> Processed Test Case: getValveState_VR1_No_Override -(I) @LINE: 958 +(I) @LINE: 989 >>> Processing Test Case: getValveState_VR1_Override -(S) @LINE: 969 +(S) @LINE: 1000 >>> Processed Test Case: getValveState_VR1_Override -(I) @LINE: 975 +(I) @LINE: 1006 >>> Processing Test Case: getValveState_VR2_No_Override -(S) @LINE: 995 +(S) @LINE: 1026 >>> Processed Test Case: getValveState_VR2_No_Override -(I) @LINE: 1001 +(I) @LINE: 1032 >>> Processing Test Case: getValveState_VR2_Override -(S) @LINE: 1012 +(S) @LINE: 1043 >>> Processed Test Case: getValveState_VR2_Override -(I) @LINE: 1018 +(I) @LINE: 1049 >>> Processing Test Case: getValveState_VRC_No_Override -(S) @LINE: 1033 +(S) @LINE: 1064 >>> Processed Test Case: getValveState_VRC_No_Override -(I) @LINE: 1039 +(I) @LINE: 1070 >>> Processing Test Case: getValveState_VRC_Override -(S) @LINE: 1050 +(S) @LINE: 1081 >>> Processed Test Case: getValveState_VRC_Override -(I) @LINE: 1056 +(I) @LINE: 1087 >>> Processing Test Case: getValveState_VRD_No_Override -(S) @LINE: 1067 +(S) @LINE: 1098 >>> Processed Test Case: getValveState_VRD_No_Override -(I) @LINE: 1073 +(I) @LINE: 1104 >>> Processing Test Case: getValveState_VRD_Override -(S) @LINE: 1084 +(S) @LINE: 1115 >>> Processed Test Case: getValveState_VRD_Override -(I) @LINE: 1090 +(I) @LINE: 1121 >>> Processing Test Case: getValveState_VRF_No_Override -(S) @LINE: 1100 +(S) @LINE: 1131 >>> Processed Test Case: getValveState_VRF_No_Override -(I) @LINE: 1106 +(I) @LINE: 1137 >>> Processing Test Case: getValveState_VRF_Override -(S) @LINE: 1117 +(S) @LINE: 1148 >>> Processed Test Case: getValveState_VRF_Override -(I) @LINE: 1123 +(I) @LINE: 1154 >>> Processing Test Case: getValveState_VRI_No_Override -(S) @LINE: 1133 +(S) @LINE: 1164 >>> Processed Test Case: getValveState_VRI_No_Override -(I) @LINE: 1139 +(I) @LINE: 1170 >>> Processing Test Case: getValveState_VRI_Override -(S) @LINE: 1150 +(S) @LINE: 1181 >>> Processed Test Case: getValveState_VRI_Override -(I) @LINE: 1156 +(I) @LINE: 1187 >>> Processing Test Case: getValveState_VRO_No_Override -(S) @LINE: 1168 +(S) @LINE: 1199 >>> Processed Test Case: getValveState_VRO_No_Override -(I) @LINE: 1174 +(I) @LINE: 1205 >>> Processing Test Case: getValveState_VRO_Override -(S) @LINE: 1185 +(S) @LINE: 1216 >>> Processed Test Case: getValveState_VRO_Override -(I) @LINE: 1191 +(I) @LINE: 1222 >>> Processing Test Case: getValveState_VSP_No_Override -(S) @LINE: 1209 +(S) @LINE: 1240 >>> Processed Test Case: getValveState_VSP_No_Override -(I) @LINE: 1215 +(I) @LINE: 1246 >>> Processing Test Case: getValveState_VSP_Override -(S) @LINE: 1226 +(S) @LINE: 1257 >>> Processed Test Case: getValveState_VSP_Override -(I) @LINE: 1232 +(I) @LINE: 1263 >>> Processing Test Case: getValveState_Wrong_Valve -(S) @LINE: 1250 +(S) @LINE: 1281 >>> Processed Test Case: getValveState_Wrong_Valve -(I) @LINE: 1258 +(I) @LINE: 1289 >>> Processing Test Case: initValves_NominalPath -(S) @LINE: 1280 +(S) @LINE: 1311 >>> Processed Test Case: initValves_NominalPath -(I) @LINE: 1288 +(I) @LINE: 1319 >>> Processing Test Case: publishValvesStates_Nominal_Path -(S) @LINE: 1293 +(S) @LINE: 1324 >>> Processed Test Case: publishValvesStates_Nominal_Path -(I) @LINE: 1301 +(I) @LINE: 1332 >>> Processing Test Case: setValveState_Valve_ID_&_Valve_State_Name_Invalid -(S) @LINE: 1306 +(S) @LINE: 1337 >>> Processed Test Case: setValveState_Valve_ID_&_Valve_State_Name_Invalid -(I) @LINE: 1312 +(I) @LINE: 1343 >>> Processing Test Case: setValveState_Valve_ID_&_Valve_State_Name_Valid -(S) @LINE: 1317 +(S) @LINE: 1348 >>> Processed Test Case: setValveState_Valve_ID_&_Valve_State_Name_Valid -(I) @LINE: 1323 +(I) @LINE: 1354 >>> Processing Test Case: setValveState_Valve_ID_Invalid_Valve_State_Name_Valid -(S) @LINE: 1328 +(S) @LINE: 1359 >>> Processed Test Case: setValveState_Valve_ID_Invalid_Valve_State_Name_Valid -(I) @LINE: 1334 +(I) @LINE: 1365 >>> Processing Test Case: setValveState_Valve_ID_Valid_Valve_State_Name_Invalid -(S) @LINE: 1339 +(S) @LINE: 1370 >>> Processed Test Case: setValveState_Valve_ID_Valid_Valve_State_Name_Invalid -(I) @LINE: 1347 +(I) @LINE: 1378 >>> Processing Test Case: testResetValveStateOverride_No_Override -(S) @LINE: 1353 +(S) @LINE: 1384 >>> Processed Test Case: testResetValveStateOverride_No_Override -(I) @LINE: 1359 +(I) @LINE: 1390 >>> Processing Test Case: testResetValveStateOverride_Override -(S) @LINE: 1365 +(S) @LINE: 1396 >>> Processed Test Case: testResetValveStateOverride_Override -(I) @LINE: 1371 +(I) @LINE: 1402 >>> Processing Test Case: testResetValveStateOverride_Override_Wrong_Valve -(S) @LINE: 1377 +(S) @LINE: 1408 >>> Processed Test Case: testResetValveStateOverride_Override_Wrong_Valve -(I) @LINE: 1385 +(I) @LINE: 1416 >>> Processing Test Case: testResetValvesStatesPublishIntervalOverride_No_Override -(S) @LINE: 1389 +(S) @LINE: 1420 >>> Processed Test Case: testResetValvesStatesPublishIntervalOverride_No_Override -(I) @LINE: 1395 +(I) @LINE: 1426 >>> Processing Test Case: testResetValvesStatesPublishIntervalOverride_Override -(S) @LINE: 1399 +(S) @LINE: 1430 >>> Processed Test Case: testResetValvesStatesPublishIntervalOverride_Override -(I) @LINE: 1407 +(I) @LINE: 1438 >>> Processing Test Case: testSetValveStateOverride_No_Override -(S) @LINE: 1415 +(S) @LINE: 1446 >>> Processed Test Case: testSetValveStateOverride_No_Override -(I) @LINE: 1421 +(I) @LINE: 1452 >>> Processing Test Case: testSetValveStateOverride_Override -(S) @LINE: 1429 +(S) @LINE: 1460 >>> Processed Test Case: testSetValveStateOverride_Override -(I) @LINE: 1435 +(I) @LINE: 1466 >>> Processing Test Case: testSetValveStateOverride_Override_Wrong_Valve -(S) @LINE: 1443 +(S) @LINE: 1474 >>> Processed Test Case: testSetValveStateOverride_Override_Wrong_Valve -(I) @LINE: 1451 +(I) @LINE: 1482 >>> Processing Test Case: testSetValvesStatesPublishIntervalOverride_No_Override -(S) @LINE: 1457 +(S) @LINE: 1488 >>> Processed Test Case: testSetValvesStatesPublishIntervalOverride_No_Override -(I) @LINE: 1463 +(I) @LINE: 1494 >>> Processing Test Case: testSetValvesStatesPublishIntervalOverride_Override -(S) @LINE: 1469 +(S) @LINE: 1500 >>> Processed Test Case: testSetValvesStatesPublishIntervalOverride_Override -(S) @LINE: 1469 +(S) @LINE: 1500 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-07-31 15:14:13 -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/754038457/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 VALVES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-07-31 15:14:14 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-08-19 14:31:10 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/754038457/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -14150,709 +16622,716 @@ Running: initValves_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.execValves test cases Running: execValves_Valves_Matched Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execValves_Valves_Not_Matched_0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execValves_Valves_Not_Matched_1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execValves_Valves_Not_Matched_2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execValves_Valves_Not_Matched_3 Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.checkValveStateName test cases Running: checkValveStateName_VBF_Valve_State_Closed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VBF_Valve_State_Open Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VDR_Valve_State_Drain_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VDR_Valve_State_Recirc_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPD_Valve_State_Open_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPD_Valve_State_Open_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPI_Valve_State_Closed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPI_Valve_State_Open Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPO_Valve_State_Fill_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VPO_Valve_State_NoFill_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRC_Valve_State_Drain_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRC_Valve_State_Recirc_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRD_Valve_State_R1_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRD_Valve_State_R2_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRF_Valve_State_R1_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRF_Valve_State_R2_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRI_Valve_State_R1_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRI_Valve_State_R2_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRO_Valve_State_R1_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VRO_Valve_State_R2_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VSP_Valve_State_Closed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_VSP_Valve_State_Open Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Closed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: checkValveStateName_Wrong_Valve_State_Drain_C_To_NC + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Drain_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Fill_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_NoFill_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Open Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Open_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_R1_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_R1_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_R2_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_R2_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: checkValveStateName_Wrong_Valve_State_Recirc_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.getPublishValvesStatesInterval test cases Running: getPublishValvesStatesInterval_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getPublishValvesStatesInterval_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.fromU32ArrayToU16 test cases Running: fromU32ArrayToU16_All_Denergized Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: fromU32ArrayToU16_All_Energized Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.convertValveStateNameToValveState test cases Running: convertValveStateNameToValveState_Valve_State_Closed Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Default Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Drain_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Drain_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Fill_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_NoFill_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Open Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Open_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_R1_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_R1_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_R2_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_R2_C_To_NO Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: convertValveStateNameToValveState_Valve_State_Recirc_C_To_NC Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.setValveState test cases Running: setValveState_Valve_ID_&_Valve_State_Name_Invalid Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setValveState_Valve_ID_&_Valve_State_Name_Valid Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setValveState_Valve_ID_Invalid_Valve_State_Name_Valid Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setValveState_Valve_ID_Valid_Valve_State_Name_Invalid Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.getValveState test cases Running: getValveState_VBF_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VBF_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VDR_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VDR_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPD_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPD_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPI_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPI_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPO_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VPO_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VR1_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VR1_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VR2_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VR2_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRC_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRC_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRD_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRD_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRF_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRF_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRI_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRI_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRO_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VRO_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VSP_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_VSP_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: getValveState_Wrong_Valve Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.publishValvesStates test cases Running: publishValvesStates_Nominal_Path Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.testSetValvesStatesPublishIntervalOverride test cases Running: testSetValvesStatesPublishIntervalOverride_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetValvesStatesPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.testResetValvesStatesPublishIntervalOverride test cases Running: testResetValvesStatesPublishIntervalOverride_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetValvesStatesPublishIntervalOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.testSetValveStateOverride test cases Running: testSetValveStateOverride_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetValveStateOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testSetValveStateOverride_Override_Wrong_Valve Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Valves.testResetValveStateOverride test cases Running: testResetValveStateOverride_No_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetValveStateOverride_Override Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: testResetValveStateOverride_Override_Wrong_Valve Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES/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/1297968848/WATCHDOGMGMT.env -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:14:16 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:31: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/1297968848/CCAST_.CFG - Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env" + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG + Reading environment script "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env" Initializing search list Creating the Environment Directory Creating Environment "WATCHDOGMGMT" @@ -14881,18 +17360,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:14:19 +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:31:16 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/1297968848/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -14909,7 +17388,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp + >>> Opening script file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp (I) @LINE: 24 >>> Processing Test Case: InvalidTask (S) @LINE: 34 @@ -15024,13 +17503,13 @@ >>> Processed Test Case: TestingInactive (S) @LINE: 486 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:14:20 +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:31:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -15040,12 +17519,12 @@ Test Case Script Created Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:14:20 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:31:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -15054,205 +17533,205 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.execWatchdogMgmt test cases Running: AllTasksCheckedInAndMinTimeReached Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: AllTasksCheckedInAndNotTime Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OneTaskNotCheckedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: WDExpired Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: WDExpired_WDPOSTInProgress Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.checkInWithWatchdogMgmt test cases Running: InvalidTask Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.execWatchdogTest test cases Running: InProgressToRecover Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidState Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StartToRecover Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestFailure Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestPasses Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execWatchdogTest_Complete Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: execWatchdogTest_RecoverWait Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.resetWDTaskCheckIns test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.haveAllTasksCheckedIn test cases Running: AllTasksCheckedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OneTaskNotCheckedIn Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.hasTaskGeneralCheckedIn test cases Running: InvalidTask Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OverridePath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.petWatchdog test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.testSetWatchdogTaskCheckInOverride test cases Running: InvalidTask Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestingInactive Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all WatchdogMgmt.testResetWatchdogTaskCheckInOverride test cases Running: InvalidTask Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TestingInactive Preparing Test Data Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST + Running Test with command: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete @@ -15269,931 +17748,1003 @@ Generating Management Reports 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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:31:23 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_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-07-31 15:14:24 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:31:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:14:25 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:31:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:14:25 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:31:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:14:26 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:31:27 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/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:14:27 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:31:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:14:28 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14:31:29 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/3499035493/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:31:30 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-31 15:14:28 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:31:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:14:29 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:31:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:14:30 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:31:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-31 15:14:31 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-08-19 14:31:33 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/865302348/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:14:31 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:31:34 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/1672699515/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:14:32 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:31:35 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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:14:33 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:31: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/4235259824/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:14:34 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:31: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/1236077553/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:14:34 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:31:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:14:35 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:31: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/3336905608/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-07-31 15:14:36 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14:31:40 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/553544110/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:14:37 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:31:41 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/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:14:37 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:31:42 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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:14:38 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:31:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:14:39 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:31:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-31 15:14:40 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14:31: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/2084893629/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:14:40 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:31:46 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/3585417238/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:14:41 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:31:47 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/1396715880/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-31 15:14:42 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:31:48 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:14:43 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:31: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/3431170211/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:14:43 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:31:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:14:44 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:31:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:14:45 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:31:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:14:45 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:31:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:14:46 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:31:53 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/3540987929/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:14:47 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:31:54 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/148424956/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:14:48 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:31:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-31 15:14:48 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-08-19 14:31:57 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:14:49 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:31:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-31 15:14:50 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 +TIME: 2020-08-19 14:31:59 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/3934269912/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_management_report.html". +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:32:00 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/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-07-31 15:14:51 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-08-19 14:32:01 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/754038457/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:14:52 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:32:02 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/1297968848/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT_management_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT_management_report.html". /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management Exit Code: 0 Command is done running! Generating Test Case Execution Reports 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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-08-19 14:32:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_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-07-31 15:14:54 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-08-19 14:32:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-07-31 15:14:55 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-08-19 14:32:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-07-31 15:14:56 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 +TIME: 2020-08-19 14:32: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/2400209084/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-07-31 15:14:56 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-08-19 14:32:07 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/1963167139/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-07-31 15:14:57 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 +TIME: 2020-08-19 14:32:09 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/3825867763/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-07-31 15:14:58 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-08-19 14:32:09 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/3499035493/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/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/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-08-19 14:32:10 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-07-31 15:14:59 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-08-19 14:32:11 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/925127052/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-07-31 15:15:00 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-08-19 14:32:12 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/3065853561/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-07-31 15:15:00 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 +TIME: 2020-08-19 14:32:13 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/194968077/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-07-31 15:15:01 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-08-19 14:32:14 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/865302348/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-07-31 15:15:02 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-08-19 14:32:15 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/1672699515/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-07-31 15:15:03 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-08-19 14:32:16 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/9217169/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-07-31 15:15:04 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 +TIME: 2020-08-19 14:32:17 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-07-31 15:15:04 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-08-19 14:32:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-07-31 15:15:05 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-08-19 14:32:19 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/3433100860/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-07-31 15:15:06 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-08-19 14:32:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-07-31 15:15:07 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-08-19 14:32:21 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/553544110/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-07-31 15:15:07 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-08-19 14:32:22 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/1468105384/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-07-31 15:15:08 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 +TIME: 2020-08-19 14:32:23 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/3023750484/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-07-31 15:15:09 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-08-19 14:32:24 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/3092074925/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-07-31 15:15:10 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 +TIME: 2020-08-19 14:32:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-07-31 15:15:11 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 +TIME: 2020-08-19 14:32:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-07-31 15:15:11 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-08-19 14:32:27 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/3585417238/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-07-31 15:15:12 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-08-19 14:32:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-07-31 15:15:13 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 +TIME: 2020-08-19 14:32:29 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-07-31 15:15:14 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 +TIME: 2020-08-19 14:32:29 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 + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-07-31 15:15:14 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-08-19 14:32:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-07-31 15:15:15 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-08-19 14:32:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-07-31 15:15:16 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-08-19 14:32:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-07-31 15:15:17 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-08-19 14:32:33 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/241608158/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-07-31 15:15:18 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-08-19 14:32:34 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/3540987929/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-07-31 15:15:18 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-08-19 14:32:35 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/148424956/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-07-31 15:15:19 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-08-19 14:32: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/1091159810/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-07-31 15:15:20 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 +TIME: 2020-08-19 14:32:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-07-31 15:15:21 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 +TIME: 2020-08-19 14:32:40 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/456249163/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-07-31 15:15:23 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 +TIME: 2020-08-19 14:32:41 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/3934269912/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_execution_results_report.html". +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-08-19 14:32:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + The HTML report was saved to "/home/fw/wsdg/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-07-31 15:15:23 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-08-19 14:32:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-07-31 15:15:24 +DIRECTORY: /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-08-19 14:32: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/1297968848/CCAST_.CFG + Processing options file /home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT_execution_results_report.html". + The HTML report was saved to "/home/fw/wsdg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT_execution_results_report.html". /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual Exit Code: 0 Command is done running! -Moved VectorCAST XML files to Bamboo working directory /home/fw/workspace_dg/dgfirmware/vectorcast -Moved VectorCAST HTML files to Bamboo working directory /home/fw/workspace_dg/dgfirmware/vectorcast +Moved VectorCAST XML files to Bamboo working directory /home/fw/wsdg/dgfirmware/vectorcast +Moved VectorCAST HTML files to Bamboo working directory /home/fw/wsdg/dgfirmware/vectorcast cleaning up... Index: results/cppcheck.log =================================================================== diff -u -r110a5fef2962a0011148c3332a87e711e3ed65cd -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- results/cppcheck.log (.../cppcheck.log) (revision 110a5fef2962a0011148c3332a87e711e3ed65cd) +++ results/cppcheck.log (.../cppcheck.log) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -2,7 +2,9 @@ 1/46 files checked 2% done Checking dgfirmware/firmware/App/Controllers/DrainPump.c ... Checking dgfirmware/firmware/App/Controllers/DrainPump.c: DEBUG_ENABLED... +Checking dgfirmware/firmware/App/Controllers/DrainPump.c: DEBUG_ENABLED;EMC_TEST_BUILD;ENABLE_DIP_SWITCHES... Checking dgfirmware/firmware/App/Controllers/DrainPump.c: DEBUG_ENABLED;ENABLE_DIP_SWITCHES... +Checking dgfirmware/firmware/App/Controllers/DrainPump.c: EMC_TEST_BUILD... 2/46 files checked 4% done Checking dgfirmware/firmware/App/Controllers/Heaters.c ... Checking dgfirmware/firmware/App/Controllers/Heaters.c: DEBUG_ENABLED... @@ -25,7 +27,7 @@ Checking dgfirmware/firmware/App/Controllers/ROPump.c: ENABLE_DIP_SWITCHES... 6/46 files checked 12% done Checking dgfirmware/firmware/App/Controllers/TemperatureSensors.c ... -7/46 files checked 15% done +7/46 files checked 14% done Checking dgfirmware/firmware/App/Controllers/Valves.c ... 8/46 files checked 17% done Checking dgfirmware/firmware/App/Drivers/CPLD.c ... @@ -40,79 +42,70 @@ Checking dgfirmware/firmware/App/Modes/ModeChemicalDisinfect.c ... 13/46 files checked 27% done Checking dgfirmware/firmware/App/Modes/ModeDrain.c ... -Checking dgfirmware/firmware/App/Modes/ModeDrain.c: BETA_V1_BUILD... -14/46 files checked 30% done +14/46 files checked 29% done Checking dgfirmware/firmware/App/Modes/ModeFault.c ... 15/46 files checked 32% done Checking dgfirmware/firmware/App/Modes/ModeFill.c ... -Checking dgfirmware/firmware/App/Modes/ModeFill.c: BETA_V1_BUILD... 16/46 files checked 34% done Checking dgfirmware/firmware/App/Modes/ModeFlush.c ... 17/46 files checked 36% done Checking dgfirmware/firmware/App/Modes/ModeHeatDisinfect.c ... 18/46 files checked 38% done Checking dgfirmware/firmware/App/Modes/ModeInitPOST.c ... +Checking dgfirmware/firmware/App/Modes/ModeInitPOST.c: DISABLE_ACCELS... +Checking dgfirmware/firmware/App/Modes/ModeInitPOST.c: SKIP_POST... 19/46 files checked 40% done Checking dgfirmware/firmware/App/Modes/ModeRecirculate.c ... 20/46 files checked 42% done Checking dgfirmware/firmware/App/Modes/ModeService.c ... -21/46 files checked 45% done +21/46 files checked 44% done Checking dgfirmware/firmware/App/Modes/ModeSolo.c ... 22/46 files checked 47% done Checking dgfirmware/firmware/App/Modes/ModeStandby.c ... 23/46 files checked 49% done Checking dgfirmware/firmware/App/Modes/OperationModes.c ... -Checking dgfirmware/firmware/App/Modes/OperationModes.c: CAN_TEST... 24/46 files checked 51% done Checking dgfirmware/firmware/App/Services/AlarmMgmt.c ... Checking dgfirmware/firmware/App/Services/AlarmMgmt.c: ALARMS_DEBUG;DEBUG_ENABLED... -Checking dgfirmware/firmware/App/Services/AlarmMgmt.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/AlarmMgmt.c: DEBUG_ENABLED... 25/46 files checked 53% done Checking dgfirmware/firmware/App/Services/CommBuffers.c ... -Checking dgfirmware/firmware/App/Services/CommBuffers.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/CommBuffers.c: DEBUG_ENABLED... 26/46 files checked 55% done Checking dgfirmware/firmware/App/Services/FPGA.c ... -Checking dgfirmware/firmware/App/Services/FPGA.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/FPGA.c: DEBUG_ENABLED... Checking dgfirmware/firmware/App/Services/FPGA.c: RM46_EVAL_BOARD_TARGET... 27/46 files checked 57% done Checking dgfirmware/firmware/App/Services/Interrupts.c ... -Checking dgfirmware/firmware/App/Services/Interrupts.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/Interrupts.c: DEBUG_ENABLED... -28/46 files checked 60% done +28/46 files checked 59% done Checking dgfirmware/firmware/App/Services/MsgQueues.c ... 29/46 files checked 62% done Checking dgfirmware/firmware/App/Services/PIControllers.c ... -Checking dgfirmware/firmware/App/Services/PIControllers.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/PIControllers.c: DEBUG_ENABLED... 30/46 files checked 64% done Checking dgfirmware/firmware/App/Services/Reservoirs.c ... -Checking dgfirmware/firmware/App/Services/Reservoirs.c: BETA_V1_BUILD... -Checking dgfirmware/firmware/App/Services/Reservoirs.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/Reservoirs.c: DEBUG_ENABLED... 31/46 files checked 66% done Checking dgfirmware/firmware/App/Services/SystemComm.c ... -Checking dgfirmware/firmware/App/Services/SystemComm.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/SystemComm.c: DEBUG_ENABLED... 32/46 files checked 68% done Checking dgfirmware/firmware/App/Services/SystemCommMessages.c ... -Checking dgfirmware/firmware/App/Services/SystemCommMessages.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/SystemCommMessages.c: DEBUG_ENABLED... 33/46 files checked 70% done Checking dgfirmware/firmware/App/Services/WatchdogMgmt.c ... -Checking dgfirmware/firmware/App/Services/WatchdogMgmt.c: CAN_TEST... Checking dgfirmware/firmware/App/Services/WatchdogMgmt.c: DEBUG_ENABLED... 34/46 files checked 72% done Checking dgfirmware/firmware/App/Tasks/TaskBG.c ... -35/46 files checked 75% done +35/46 files checked 74% done Checking dgfirmware/firmware/App/Tasks/TaskGeneral.c ... -Checking dgfirmware/firmware/App/Tasks/TaskGeneral.c: CAN_TEST... +Checking dgfirmware/firmware/App/Tasks/TaskGeneral.c: TASK_TIMING_OUTPUT_ENABLED... 36/46 files checked 77% done Checking dgfirmware/firmware/App/Tasks/TaskPriority.c ... +Checking dgfirmware/firmware/App/Tasks/TaskPriority.c: TASK_TIMING_OUTPUT_ENABLED... 37/46 files checked 79% done Checking dgfirmware/firmware/App/Tasks/TaskTimer.c ... +Checking dgfirmware/firmware/App/Tasks/TaskTimer.c: TASK_TIMING_OUTPUT_ENABLED... 38/46 files checked 81% done Checking dgfirmware/firmware/FWCommon/Accel.c ... Checking dgfirmware/firmware/FWCommon/Accel.c: _DG_... @@ -140,7 +133,7 @@ Checking dgfirmware/firmware/FWCommon/RTC.c ... Checking dgfirmware/firmware/FWCommon/RTC.c: _DG_... Checking dgfirmware/firmware/FWCommon/RTC.c: _VECTORCAST_... -42/46 files checked 90% done +42/46 files checked 89% done Checking dgfirmware/firmware/FWCommon/Timers.c ... Checking dgfirmware/firmware/FWCommon/Timers.c: _DG_... Checking dgfirmware/firmware/FWCommon/Timers.c: _VECTORCAST_... Index: results/cppcheckError.csv =================================================================== diff -u -r110a5fef2962a0011148c3332a87e711e3ed65cd -rf308cc4c35eab630ebbbde405cfe47d049afeafb --- results/cppcheckError.csv (.../cppcheckError.csv) (revision 110a5fef2962a0011148c3332a87e711e3ed65cd) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision f308cc4c35eab630ebbbde405cfe47d049afeafb) @@ -1,97 +1,87 @@ File, Line No., Severity, Issue, Description -dgfirmware/firmware/App/Controllers/DrainPump.c,168,style,unreadVariable,Variable 'drnPumpSpd' is assigned a value that is never used. -dgfirmware/firmware/App/Controllers/ROPump.c,350,style,unreadVariable,Variable 'tgtPres' is assigned a value that is never used. -dgfirmware/firmware/App/Controllers/ROPump.c,351,style,unreadVariable,Variable 'actPres' is assigned a value that is never used. -dgfirmware/firmware/App/Controllers/ROPump.c,352,style,unusedVariable,Unused variable: newPWM -dgfirmware/firmware/App/Controllers/TemperatureSensors.c,568,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. -dgfirmware/firmware/App/Services/Interrupts.c,100,style,variableScope,The scope of the variable 'debugStr' can be reduced. -dgfirmware/firmware/App/Services/PIControllers.c,80,style,variableScope,The scope of the variable 'controller' can be reduced. -dgfirmware/firmware/App/Services/Reservoirs.c,272,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Controllers/DrainPump.c,173,style,unreadVariable,Variable 'drnPumpSpd' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,347,style,unreadVariable,Variable 'tgtPres' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,348,style,unreadVariable,Variable 'actPres' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,349,style,unusedVariable,Unused variable: newPWM +dgfirmware/firmware/App/Controllers/TemperatureSensors.c,571,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,119,warning,redundantAssignInSwitch,Variable 'testStatus' is reassigned a value before the old one has been used. 'break;' missing? +dgfirmware/firmware/App/Services/Interrupts.c,171,style,variableScope,The scope of the variable 'debugStr' can be reduced. +dgfirmware/firmware/App/Services/PIControllers.c,77,style,variableScope,The scope of the variable 'controller' can be reduced. +dgfirmware/firmware/App/Services/Reservoirs.c,258,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,1551,style,variableScope,The scope of the variable 'quotient' can be reduced. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,1552,style,variableScope,The scope of the variable 'modulus' can be reduced. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,1555,style,variableScope,The scope of the variable 'i' can be reduced. -dgfirmware/firmware/FWCommon/RTC.c,1204,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. -dgfirmware/firmware/FWCommon/RTC.c,778,style,variableScope,The scope of the variable 'decimalHigh' can be reduced. -dgfirmware/firmware/FWCommon/RTC.c,779,style,variableScope,The scope of the variable 'decimalLow' can be reduced. -dgfirmware/firmware/FWCommon/RTC.c,701,style,unreadVariable,Variable 'controlReg2' is assigned a value that is never used. -dgfirmware/firmware/FWCommon/Utilities.c,198,style,variableScope,The scope of the variable 'timeInMS' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1531,style,variableScope,The scope of the variable 'quotient' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1532,style,variableScope,The scope of the variable 'modulus' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1535,style,variableScope,The scope of the variable 'i' can be reduced. +dgfirmware/firmware/FWCommon/RTC.c,1178,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. +dgfirmware/firmware/FWCommon/RTC.c,764,style,variableScope,The scope of the variable 'decimalHigh' can be reduced. +dgfirmware/firmware/FWCommon/RTC.c,765,style,variableScope,The scope of the variable 'decimalLow' can be reduced. +dgfirmware/firmware/FWCommon/RTC.c,689,style,unreadVariable,Variable 'controlReg2' is assigned a value that is never used. +dgfirmware/firmware/FWCommon/Utilities.c,214,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,119,style,unusedFunction,The function 'adcNotification' is never used. +dgfirmware/firmware/App/Drivers/InternalADC.c,118,style,unusedFunction,The function 'adcNotification' is never used. dgfirmware/firmware/FWCommon/Timers.c,147,style,unusedFunction,The function 'calcTimeBetween' is never used. -dgfirmware/firmware/App/Services/Interrupts.c,96,style,unusedFunction,The function 'canErrorNotification' is never used. -dgfirmware/firmware/App/Services/Interrupts.c,75,style,unusedFunction,The function 'canMessageNotification' is never used. -dgfirmware/firmware/App/Services/Interrupts.c,225,style,unusedFunction,The function 'dmaGroupANotification' is never used. -dgfirmware/firmware/FWCommon/Accel.c,129,style,unusedFunction,The function 'execAccel' is never used. -dgfirmware/firmware/FWCommon/Accel.c,476,style,unusedFunction,The function 'execAccelTest' is never used. -dgfirmware/firmware/App/Services/AlarmMgmt.c,77,style,unusedFunction,The function 'execAlarmMgmt' is never used. -dgfirmware/firmware/App/Controllers/DrainPump.c,384,style,unusedFunction,The function 'execDrainPumpTest' is never used. +dgfirmware/firmware/App/Services/Interrupts.c,168,style,unusedFunction,The function 'canErrorNotification' is never used. +dgfirmware/firmware/App/Services/Interrupts.c,147,style,unusedFunction,The function 'canMessageNotification' is never used. +dgfirmware/firmware/App/Services/Interrupts.c,313,style,unusedFunction,The function 'dmaGroupANotification' is never used. +dgfirmware/firmware/App/Services/AlarmMgmt.c,75,style,unusedFunction,The function 'execAlarmMgmt' is never used. +dgfirmware/firmware/App/Controllers/DrainPump.c,398,style,unusedFunction,The function 'execDrainPumpTest' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,736,style,unusedFunction,The function 'execNVDataMgmt' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,610,style,unusedFunction,The function 'execNVDataMgmtSelfTest' is never used. -dgfirmware/firmware/App/Controllers/Pressures.c,327,style,unusedFunction,The function 'execPressuresTest' is never used. -dgfirmware/firmware/App/Controllers/ROPump.c,505,style,unusedFunction,The function 'execROPumpTest' is never used. -dgfirmware/firmware/FWCommon/RTC.c,359,style,unusedFunction,The function 'execRTC' is never used. -dgfirmware/firmware/FWCommon/RTC.c,301,style,unusedFunction,The function 'execRTCSelfTest' is never used. -dgfirmware/firmware/FWCommon/Accel.c,586,style,unusedFunction,The function 'getAccelCalibration' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,722,style,unusedFunction,The function 'getBootloaderFlag' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,613,style,unusedFunction,The function 'execNVDataMgmtSelfTest' is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,502,style,unusedFunction,The function 'execROPumpTest' is never used. +dgfirmware/firmware/FWCommon/RTC.c,355,style,unusedFunction,The function 'execRTC' is never used. +dgfirmware/firmware/FWCommon/RTC.c,298,style,unusedFunction,The function 'execRTCSelfTest' is never used. +dgfirmware/firmware/FWCommon/Accel.c,670,style,unusedFunction,The function 'getAccelCalibration' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,723,style,unusedFunction,The function 'getBootloaderFlag' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,254,style,unusedFunction,The function 'getCriticalData' is never used. dgfirmware/firmware/App/Modes/ModeChemicalDisinfect.c,95,style,unusedFunction,The function 'getCurrentChemicalDisinfectState' is never used. -dgfirmware/firmware/App/Modes/ModeDrain.c,154,style,unusedFunction,The function 'getCurrentDrainState' is never used. +dgfirmware/firmware/App/Modes/ModeDrain.c,151,style,unusedFunction,The function 'getCurrentDrainState' is never used. dgfirmware/firmware/App/Modes/ModeFault.c,93,style,unusedFunction,The function 'getCurrentFaultState' is never used. -dgfirmware/firmware/App/Modes/ModeFill.c,192,style,unusedFunction,The function 'getCurrentFillState' is never used. +dgfirmware/firmware/App/Modes/ModeFill.c,188,style,unusedFunction,The function 'getCurrentFillState' is never used. dgfirmware/firmware/App/Modes/ModeFlush.c,95,style,unusedFunction,The function 'getCurrentFlushState' is never used. dgfirmware/firmware/App/Modes/ModeHeatDisinfect.c,94,style,unusedFunction,The function 'getCurrentHeatDisinfectState' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,210,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,225,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. dgfirmware/firmware/App/Modes/ModeService.c,93,style,unusedFunction,The function 'getCurrentServiceState' is never used. -dgfirmware/firmware/App/Modes/ModeSolo.c,95,style,unusedFunction,The function 'getCurrentSoloState' is never used. -dgfirmware/firmware/App/Modes/ModeStandby.c,235,style,unusedFunction,The function 'getCurrentStandbyState' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,588,style,unusedFunction,The function 'getDisinfectionDate' is never used. -dgfirmware/firmware/App/Services/FPGA.c,1477,style,unusedFunction,The function 'getFPGACPo' is never used. -dgfirmware/firmware/App/Services/FPGA.c,961,style,unusedFunction,The function 'getFPGAId' is never used. -dgfirmware/firmware/App/Services/FPGA.c,976,style,unusedFunction,The function 'getFPGARev' is never used. -dgfirmware/firmware/App/Services/FPGA.c,991,style,unusedFunction,The function 'getFPGAStatus' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,315,style,unusedFunction,The function 'getMfgData' is never used. -dgfirmware/firmware/App/Services/PIControllers.c,192,style,unusedFunction,The function 'getPIControllerSignals' is never used. -dgfirmware/firmware/FWCommon/RTC.c,419,style,unusedFunction,The function 'getRTCTimestamp' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,409,style,unusedFunction,The function 'getServiceDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,506,style,unusedFunction,The function 'getTreatmentTime' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,546,style,unusedFunction,The function 'getWaterConsumption' is never used. -dgfirmware/firmware/FWCommon/Accel.c,100,style,unusedFunction,The function 'initAccel' is never used. +dgfirmware/firmware/App/Modes/ModeSolo.c,125,style,unusedFunction,The function 'getCurrentSoloState' is never used. +dgfirmware/firmware/App/Modes/ModeStandby.c,237,style,unusedFunction,The function 'getCurrentStandbyState' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,592,style,unusedFunction,The function 'getDisinfectionDate' is never used. +dgfirmware/firmware/App/Services/FPGA.c,1491,style,unusedFunction,The function 'getFPGACPo' is never used. +dgfirmware/firmware/App/Services/FPGA.c,946,style,unusedFunction,The function 'getFPGAId' is never used. +dgfirmware/firmware/App/Services/FPGA.c,960,style,unusedFunction,The function 'getFPGARev' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,328,style,unusedFunction,The function 'getMfgData' is never used. +dgfirmware/firmware/App/Services/PIControllers.c,189,style,unusedFunction,The function 'getPIControllerSignals' is never used. +dgfirmware/firmware/FWCommon/RTC.c,414,style,unusedFunction,The function 'getRTCTimestamp' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,421,style,unusedFunction,The function 'getServiceDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,514,style,unusedFunction,The function 'getTreatmentTime' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,552,style,unusedFunction,The function 'getWaterConsumption' is never used. dgfirmware/firmware/FWCommon/NVDataMgmt.c,273,style,unusedFunction,The function 'initNVDataMgmt' is never used. -dgfirmware/firmware/App/Services/AlarmMgmt.c,254,style,unusedFunction,The function 'isAlarmActive' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,156,style,unusedFunction,The function 'isPOSTCompleted' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,170,style,unusedFunction,The function 'isPOSTPassed' is never used. -dgfirmware/firmware/App/Drivers/Comm.c,292,style,unusedFunction,The function 'isSCI2DMATransmitInProgress' is never used. +dgfirmware/firmware/App/Services/AlarmMgmt.c,259,style,unusedFunction,The function 'isAlarmActive' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,171,style,unusedFunction,The function 'isPOSTCompleted' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,185,style,unusedFunction,The function 'isPOSTPassed' is never used. +dgfirmware/firmware/App/Drivers/Comm.c,276,style,unusedFunction,The function 'isSCI2DMATransmitInProgress' is never used. dgfirmware/firmware/App/Drivers/SafetyShutdown.c,75,style,unusedFunction,The function 'isSafetyShutdownActivated' is never used. -dgfirmware/firmware/App/Services/Interrupts.c,60,style,unusedFunction,The function 'phantomInterrupt' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,456,style,unusedFunction,The function 'readLogData' is never used. -dgfirmware/firmware/App/Services/Interrupts.c,158,style,unusedFunction,The function 'sciNotification' is never used. -dgfirmware/firmware/FWCommon/Accel.c,547,style,unusedFunction,The function 'setAccelCalibration' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,699,style,unusedFunction,The function 'setBootloaderFlag' is never used. -dgfirmware/firmware/App/Drivers/CPLD.c,132,style,unusedFunction,The function 'setCPLDLampBlue' is never used. -dgfirmware/firmware/App/Drivers/CPLD.c,110,style,unusedFunction,The function 'setCPLDLampGreen' is never used. -dgfirmware/firmware/App/Drivers/CPLD.c,154,style,unusedFunction,The function 'setCPLDLampRed' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,562,style,unusedFunction,The function 'setDisinfectionDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,297,style,unusedFunction,The function 'setMfgData' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,383,style,unusedFunction,The function 'setServiceDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,480,style,unusedFunction,The function 'setTreatmentTime' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,521,style,unusedFunction,The function 'setWaterConsumption' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,244,style,unusedFunction,The function 'stopDrainCmd' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,193,style,unusedFunction,The function 'stopFillCmd' is never used. -dgfirmware/firmware/App/Tasks/TaskGeneral.c,42,style,unusedFunction,The function 'taskGeneral' is never used. -dgfirmware/firmware/App/Tasks/TaskPriority.c,42,style,unusedFunction,The function 'taskPriority' is never used. -dgfirmware/firmware/App/Tasks/TaskTimer.c,33,style,unusedFunction,The function 'taskTimer' is never used. -dgfirmware/firmware/FWCommon/Accel.c,679,style,unusedFunction,The function 'testResetAccelAxisOverride' is never used. -dgfirmware/firmware/FWCommon/Accel.c,628,style,unusedFunction,The function 'testResetAccelDataPublishIntervalOverride' is never used. -dgfirmware/firmware/FWCommon/Accel.c,733,style,unusedFunction,The function 'testResetAccelMaxOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,400,style,unusedFunction,The function 'testResetDGActiveReservoirOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,494,style,unusedFunction,The function 'testResetReservoirDrainVolumeMlOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,447,style,unusedFunction,The function 'testResetReservoirFillVolumeMlOverride' is never used. -dgfirmware/firmware/FWCommon/Accel.c,652,style,unusedFunction,The function 'testSetAccelAxisOverride' is never used. -dgfirmware/firmware/FWCommon/Accel.c,603,style,unusedFunction,The function 'testSetAccelDataPublishIntervalOverride' is never used. -dgfirmware/firmware/FWCommon/Accel.c,706,style,unusedFunction,The function 'testSetAccelMaxOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,377,style,unusedFunction,The function 'testSetDGActiveReservoirOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,471,style,unusedFunction,The function 'testSetReservoirDrainVolumeMlOverride' is never used. -dgfirmware/firmware/App/Services/Reservoirs.c,424,style,unusedFunction,The function 'testSetReservoirFillVolumeMlOverride' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,432,style,unusedFunction,The function 'writeLogData' is never used. +dgfirmware/firmware/App/Services/Interrupts.c,88,style,unusedFunction,The function 'phantomInterrupt' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,466,style,unusedFunction,The function 'readLogData' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,320,style,unusedFunction,The function 'resetCriticalData' is never used. +dgfirmware/firmware/App/Services/Interrupts.c,111,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,701,style,unusedFunction,The function 'setBootloaderFlag' is never used. +dgfirmware/firmware/App/Drivers/CPLD.c,129,style,unusedFunction,The function 'setCPLDLampBlue' is never used. +dgfirmware/firmware/App/Drivers/CPLD.c,107,style,unusedFunction,The function 'setCPLDLampGreen' is never used. +dgfirmware/firmware/App/Drivers/CPLD.c,151,style,unusedFunction,The function 'setCPLDLampRed' is never used. +dgfirmware/firmware/FWCommon/Utilities.c,291,style,unusedFunction,The function 'setCriticalData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,567,style,unusedFunction,The function 'setDisinfectionDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,311,style,unusedFunction,The function 'setMfgData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,396,style,unusedFunction,The function 'setServiceDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,489,style,unusedFunction,The function 'setTreatmentTime' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,528,style,unusedFunction,The function 'setWaterConsumption' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,230,style,unusedFunction,The function 'stopDrainCmd' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,179,style,unusedFunction,The function 'stopFillCmd' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,386,style,unusedFunction,The function 'testResetDGActiveReservoirOverride' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,480,style,unusedFunction,The function 'testResetReservoirDrainVolumeMlOverride' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,433,style,unusedFunction,The function 'testResetReservoirFillVolumeMlOverride' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,363,style,unusedFunction,The function 'testSetDGActiveReservoirOverride' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,457,style,unusedFunction,The function 'testSetReservoirDrainVolumeMlOverride' is never used. +dgfirmware/firmware/App/Services/Reservoirs.c,410,style,unusedFunction,The function 'testSetReservoirFillVolumeMlOverride' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,443,style,unusedFunction,The function 'writeLogData' is never used. ,,information,missingInclude,Cppcheck cannot find all the include files (use --check-config for details)