Index: firmware/.launches/DG.launch =================================================================== diff -u -r439894cb0508e69af3ece09ae57a62feac09e3f2 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/.launches/DG.launch (.../DG.launch) (revision 439894cb0508e69af3ece09ae57a62feac09e3f2) +++ firmware/.launches/DG.launch (.../DG.launch) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1,9 +1,13 @@ + + + + Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -r3461c140ba07e74863dee1d4c51d0119076fecf8 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -162,8 +162,9 @@ F32 const cp1Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP1 ) - concentratePumps[ CONCENTRATEPUMPS_CP1 ].currentPumpSpeed ) / concentratePumps[ CONCENTRATEPUMPS_CP1 ].currentPumpSpeed; F32 const cp2Error = fabs( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP2 ) - concentratePumps[ CONCENTRATEPUMPS_CP2 ].currentPumpSpeed ) / concentratePumps[ CONCENTRATEPUMPS_CP2 ].currentPumpSpeed; - checkPersistentAlarm( PERSISTENT_ALARM_CP1_SPEED_CONTROL_ERROR, cp1Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp1Error ); - checkPersistentAlarm( PERSISTENT_ALARM_CP2_SPEED_CONTROL_ERROR, cp2Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp2Error ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_CP1_SPEED_CONTROL_ERROR, cp1Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp1Error, 0 ); + checkPersistentAlarm( PERSISTENT_ALARM_CP2_SPEED_CONTROL_ERROR, cp2Error > CONCENTRATE_PUMP_ERROR_TOLERANCE, cp2Error, 0 ); concentratePumpMonitorTimerCounter = 0U; broadcastConcentratePumpData( &data ); Index: firmware/App/Controllers/ConductivitySensors.c =================================================================== diff -u -r273f797e1b0f70a9d5720d1ffff29d26ff5144af -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 273f797e1b0f70a9d5720d1ffff29d26ff5144af) +++ firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -199,8 +199,9 @@ BOOL const isCondTooHigh = ( conductivity > COND_SENSOR_CPI_CPO_MAX_VALUE ); BOOL const isCondTooLow = ( conductivity < COND_SENSOR_CPI_CPO_MIN_VALUE ); - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_CONDUCTIVITY, isCondTooHigh, conductivity ); - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_CONDUCTIVITY, isCondTooLow, conductivity ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_CONDUCTIVITY, isCondTooHigh, conductivity, 0 ); + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_CONDUCTIVITY, isCondTooLow, conductivity, 0 ); } /*********************************************************************//** @@ -218,7 +219,8 @@ F32 const cpo = getConductivityValue( CONDUCTIVITYSENSORS_CPO_SENSOR ); BOOL const isRORejectionRatioOutOfRange = ( roRejectionRatio > MAX_RO_REJECTION_RATIO_ALLOW ) || ( cpo >= MAX_CPO_CONDUCTIVITY_ALLOW ); - checkPersistentAlarm( PERSISTENT_ALARM_RO_REJECTION_RATIO_OUT_OF_RANGE, isRORejectionRatioOutOfRange, roRejectionRatio ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_RO_REJECTION_RATIO_OUT_OF_RANGE, isRORejectionRatioOutOfRange, roRejectionRatio, 0 ); #endif } @@ -238,8 +240,9 @@ BOOL const isPostAcidConductivityOutOfRange = ( postAcidConductivity <= CONCENTRATE_POST_ACID_MIN_CONDUCTIVITY ) || ( postAcidConductivity >= CONCENTRATE_POST_ACID_MAX_CONDUCTIVITY ); BOOL const isPostBicarbConductivityOutOfRange = ( postBicarbonateConductivity <= CONCENTRATE_POST_BICARB_MIN_CONDUCTIVITY ) || ( postBicarbonateConductivity >= CONCENTRATE_POST_BICARB_MAX_CONDUCTIVITY ); - checkPersistentAlarm( PERSISTENT_ALARM_POST_ACID_CONDUCTIVITY_OUT_OF_RANGE, isPostAcidConductivityOutOfRange, postAcidConductivity ); - checkPersistentAlarm( PERSISTENT_ALARM_POST_BICARB_CONDUCTIVITY_OUT_OF_RANGE, isPostBicarbConductivityOutOfRange, postBicarbonateConductivity ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_POST_ACID_CONDUCTIVITY_OUT_OF_RANGE, isPostAcidConductivityOutOfRange, postAcidConductivity, 0 ); + checkPersistentAlarm( PERSISTENT_ALARM_POST_BICARB_CONDUCTIVITY_OUT_OF_RANGE, isPostBicarbConductivityOutOfRange, postBicarbonateConductivity, 0 ); } /*********************************************************************//** Index: firmware/App/Controllers/Fans.c =================================================================== diff -u -rec15e94e1e51aceeceedf7398d648a8f4830fada -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/Fans.c (.../Fans.c) (revision ec15e94e1e51aceeceedf7398d648a8f4830fada) +++ firmware/App/Controllers/Fans.c (.../Fans.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -31,9 +31,10 @@ #define MIN_TARGET_RPM_IN_SELF_TEST 1000 ///< Fans min target RPM that they should be during POST. #define FANS_SELF_TEST_WAIT_INTERVAL ( MS_PER_SECOND / TASK_GENERAL_INTERVAL ) ///< Fans self test wait time for the fans to get to RPM. #define FANS_SELF_TEST_TARGET_PWM 0.5 ///< Fans self test target PWM for testing the fans are running. -#define FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_COUNT ( ( 3 * MS_PER_SECOND ) / TASK_GENERAL_INTERVAL ) ///< Fans max allowed RPM out of range count. -#define FANS_MAX_ALLOWED_RPM 9000 ///< Fans max allowed RPM value. -#define FANS_MONITOR_INTERVAL ( MS_PER_SECOND / TASK_GENERAL_INTERVAL ) ///< Fans monitor time interval in counts. +#define FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_INTERVAL ( 3 * MS_PER_SECOND ) ///< Fans max allowed RPM out of range time interval. +#define FANS_MAX_ALLOWED_RPM 5000 ///< Fans max allowed RPM value. +#define FANS_MIN_ALLOWED_RPM 150 ///< Fans max allowed RPM value. +#define FANS_MONITOR_INTERVAL_COUNT ( MS_PER_SECOND / TASK_GENERAL_INTERVAL ) ///< Fans monitor time interval in counts. /// Fans self test states typedef enum fans_Self_Test @@ -59,13 +60,13 @@ U32 rpm[ NUM_OF_FANS_NAMES ]; ///< Fan's current tachometers reading in RPM } FAN_STATUS_T; -static FAN_STATUS_T fansStatus; ///< Fans status -static SELF_TEST_STATUS_T fansSelfTestResult = SELF_TEST_STATUS_IN_PROGRESS; ///< Fans self test result -static FANS_SELF_TEST_STATES_T fansSelfTestState = FANS_SELF_TEST_START_STATE; ///< Fans self test state -static FANS_EXEC_STATES_T fansExecState = FANS_EXEC_STATE_WAIT_FOR_POST_STATE; ///< Fans exec state -static U32 fansControlCounter = 0; ///< Fans control interval counter -static U32 fansPublishCounter = 0; ///< Fans data publish interval counter -static U32 fansMonitorCounter = 0; ///< Fans monitor interval counter +static FAN_STATUS_T fansStatus; ///< Fans status. +static SELF_TEST_STATUS_T fansSelfTestResult = SELF_TEST_STATUS_IN_PROGRESS; ///< Fans self test result. +static FANS_SELF_TEST_STATES_T fansSelfTestState = FANS_SELF_TEST_START_STATE; ///< Fans self test state. +static FANS_EXEC_STATES_T fansExecState = FANS_EXEC_STATE_WAIT_FOR_POST_STATE; ///< Fans exec state. +static U32 fansControlCounter = 0; ///< Fans control interval counter. +static U32 fansPublishCounter = 0; ///< Fans data publish interval counter. +static U32 fansMonitorCounter = 0; ///< Fans monitor interval counter. /// Temperature to duty cycle conversion slope (duty cycle not in percent) static const F32 SLOPE = ( FANS_MAX_DUTY_CYCLE - FANS_MIN_DUTY_CYCLE ) / ( MAX_ALLOWED_AMBINET_TEMPERATURE - MIN_ALLOWED_AMBIENT_TEMPERATURE ); @@ -111,7 +112,7 @@ // Initialize a persistent alarm for fans RPM out of range initPersistentAlarm( PERSISTENT_ALARM_FANS_RPM_OUT_RANGE, ALARM_ID_DG_FAN_RPM_OUT_OF_RANGE, - TRUE, FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_COUNT, FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_COUNT ); + TRUE, FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_INTERVAL, FANS_MAX_ALLOWED_RPM_OUT_OF_RANGE_INTERVAL ); } /*********************************************************************//** @@ -207,45 +208,19 @@ * @brief * The handleSelfTestStart function handles the start state of the fans' * self test. - * @details Inputs: fansStatus + * @details Inputs: none * @details Outputs: none * @return next state of self test *************************************************************************/ static FANS_SELF_TEST_STATES_T handleSelfTestStart( void ) { - FANS_SELF_TEST_STATES_T state; - U32 failureCount = 0; - FAN_NAMES_T fan; + FANS_SELF_TEST_STATES_T state = FANS_SELF_TEST_CHECK_RPM_STATE; - // Get the raw toggle periods from FPGA and convert them to RPM. They all should be 0 upon staring - // the device - convertTogglePeriod2RPM(); + // Set the fans to the target PWM for the next stage + setInletFansDutyCycle( FANS_SELF_TEST_TARGET_PWM ); + setOutletFansDutyCycle( FANS_SELF_TEST_TARGET_PWM ); + state = FANS_SELF_TEST_CHECK_RPM_STATE; - // Loop through all the fans to check their RPM - // Upon starting the device the RPM of the fans should be 0 - for( fan = FAN_INLET_1; fan < NUM_OF_FANS_NAMES; fan++ ) - { - if ( fansStatus.rpm[ fan ] > 0 ) - { - SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_FAN_RPM_OUT_OF_RANGE, fan, fansStatus.rpm[ fan ] ); - failureCount++; - } - } - - // If there was a failure, go to complete - if ( failureCount > 0 ) - { - fansSelfTestResult = SELF_TEST_STATUS_FAILED; - state = FAN_SELF_TEST_COMPLETE_STATE; - } - else - { - // Set the fans to the target PWM for the next stage - setInletFansDutyCycle( FANS_SELF_TEST_TARGET_PWM ); - setOutletFansDutyCycle( FANS_SELF_TEST_TARGET_PWM ); - state = FANS_SELF_TEST_CHECK_RPM_STATE; - } - return state; } @@ -344,7 +319,7 @@ //TODO REMOVE FOR TESTING only // Solve the linear equation to calculate the duty cycle from temperature - F32 dutyCycle = SLOPE * ( temperature - MIN_ALLOWED_AMBIENT_TEMPERATURE ) + FANS_MIN_DUTY_CYCLE; + F32 dutyCycle = ( SLOPE * ( temperature - MIN_ALLOWED_AMBIENT_TEMPERATURE ) ) + FANS_MIN_DUTY_CYCLE; // Check whether the duty cycle is not outside of the range and cap it if needed if ( dutyCycle < FANS_MIN_DUTY_CYCLE ) @@ -373,8 +348,17 @@ } else { - // If we are ramping down, set the target duty cycle to max allowed ramp down PWM - fansStatus.targetDutyCycle -= FANS_MAX_ALLOWED_RAMP_DOWN_DELTA_DUTY_CYCLE; + // If the delta duty cycle from the previous duty cycle is greater than the max allowed ramp down duty cycle, + // otherwise, only add the delta duty cycle + if ( ( fansStatus.targetDutyCycle - dutyCycle ) >= FANS_MAX_ALLOWED_RAMP_DOWN_DELTA_DUTY_CYCLE ) + { + // If we are ramping down, set the target duty cycle to max allowed ramp down duty cycle + fansStatus.targetDutyCycle -= FANS_MAX_ALLOWED_RAMP_DOWN_DELTA_DUTY_CYCLE; + } + else + { + fansStatus.targetDutyCycle = dutyCycle; + } } // Set the PWM to inlet and outlet fans @@ -492,17 +476,21 @@ { FAN_NAMES_T fan; - if ( ++fansMonitorCounter >= FANS_MONITOR_INTERVAL ) + if ( ++fansMonitorCounter >= FANS_MONITOR_INTERVAL_COUNT ) { convertTogglePeriod2RPM(); for ( fan = FAN_INLET_1; fan < NUM_OF_FANS_NAMES; fan++ ) { // Call persistent alarm if a fan's RPM is out of range - if ( fansStatus.rpm[ fan ] >= FANS_MAX_ALLOWED_RPM || fansStatus.rpm[ fan ] <= NEARLY_ZERO ) + if ( fansStatus.rpm[ fan ] >= FANS_MAX_ALLOWED_RPM ) { - checkPersistentAlarm( PERSISTENT_ALARM_FANS_RPM_OUT_RANGE, TRUE, fansStatus.rpm[ fan ] ); + checkPersistentAlarm( PERSISTENT_ALARM_FANS_RPM_OUT_RANGE, TRUE, fansStatus.rpm[ fan ], FANS_MAX_ALLOWED_RPM ); } + else if ( fansStatus.rpm[ fan ] <= FANS_MIN_ALLOWED_RPM ) + { + checkPersistentAlarm( PERSISTENT_ALARM_FANS_RPM_OUT_RANGE, TRUE, fansStatus.rpm[ fan ], FANS_MIN_ALLOWED_RPM ); + } } fansMonitorCounter = 0; Index: firmware/App/Controllers/Pressures.c =================================================================== diff -u -r28a4756da770f48c81ab421135c2012550705c74 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 28a4756da770f48c81ab421135c2012550705c74) +++ firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -247,7 +247,8 @@ F32 const pressure = getMeasuredDGPressure( PRESSURE_SENSOR_RO_PUMP_INLET ); BOOL const isPressureTooLow = ( pressure < MIN_INLET_WATER_PRESSURE ); - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_PRESSURE, isPressureTooLow, pressure ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_PRESSURE, isPressureTooLow, pressure, 0 ); } /*********************************************************************//** @@ -263,7 +264,8 @@ F32 const pressure = getMeasuredDGPressure( PRESSURE_SENSOR_RO_PUMP_INLET ); BOOL const isPressureTooLow = ( pressure < MIN_INLET_WATER_PRESSURE ); - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_PRESSURE_FAULT, isPressureTooLow, pressure ); + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_PRESSURE_FAULT, isPressureTooLow, pressure, 0 ); } /*********************************************************************//** Index: firmware/App/Controllers/TemperatureSensors.c =================================================================== diff -u -r0b17c6271cdc3c55697a74ecaadb477d9c8f5687 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision 0b17c6271cdc3c55697a74ecaadb477d9c8f5687) +++ firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -47,19 +47,11 @@ #define TEMP_SENSORS_ADC_BITS 24U ///< External temperature sensors ADC bits. #define ADC_FPGA_READ_DELAY 30U ///< Delay in ms before reading the ADC values from FPGA. -// TODO remove after testing -//#define MAX_NUM_OF_RAW_ADC_SAMPLES 32U ///< Number of ADC reads for moving average calculations. -// TODO remove after testing #define MAX_NUM_OF_RAW_ADC_SAMPLES 4U ///< Number of ADC reads for moving average calculations. #define MAX_ALLOWED_TEMP_DELTA_BETWEEN_SENSORS 2U ///< Maximum allowed temperature delta between sensors. -#define MAX_ALLOWED_UNCHANGED_ADC_READS 4U ///< Maximum number of times that the read of a sensor cannot change. -#define SHIFT_BITS_BY_2 2U ///< Shift bits by 2. -// TODO remove after testing -//#define SHIFT_BITS_BY_5_FOR_AVERAGING 5U ///< Shift the ADCs of the temperature sensors by 5 to average them. -// TODO remove after testing +#define SHIFT_BITS_BY_2 2U ///< Shift bits by 2 to create a 4 for averaging 4 samples. #define SHIFT_BITS_BY_2_FOR_AVERAGING 2U ///< Shift the ADCs of the temperature sensors by 2 to average them. -#define INLET_WATER_TEMPERATURE_PERSISTENCE_PERIOD ( ( 5 * MS_PER_SECOND ) / \ - TASK_GENERAL_INTERVAL ) ///< Persistence period for temperature sensors out of range error. +#define INLET_WATER_TEMPERATURE_PERSISTENCE_PERIOD ( 5 * MS_PER_SECOND ) ///< Persistence period for temperature sensors out of range error period. #define MIN_WATER_INPUT_TEMPERATURE 10U ///< Minimum water input temperature. #define MAX_WATER_INPUT_TEMPERATURE 35U ///< Maximum water input temperature. @@ -80,20 +72,16 @@ #define HEATERS_INTERNAL_TEMP_SENSOR_FAULT 0x01 ///< Heaters internal temperature sensor fault. #define TEMP_SENSORS_DATA_PUBLISH_INTERVAL ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) ///< Temperature sensors publish data time interval. -// TODo Remove after testing -#define MAX_TEMPERATURE_SENSOR_FAILURES 5 ///< Maximum number of temperature sensor errors within window period before alarm. -#define MAX_TEMPERATURE_SENSOR_FAILURE_WINDOW_MS ( 10 * MS_PER_SECOND ) ///< Temperature sensor error window. -// TODO remove after testing. Persistent alarm was placed instead -#define TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_COUNT ( ( 5 * MS_PER_SECOND ) / \ - TASK_PRIORITY_INTERVAL ) ///< Temperature sensors FPGA error persistent count. -#define FPGA_RAW_ADC_READ_INTERVAL_COUNT 8U ///< Time interval in counts to read the raw ADC reads from FPGA. +#define TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_PERIOD ( 5 * MS_PER_SECOND ) ///< Temperature sensors FPGA error persistent period. +#define TEMPERATURE_SENSORS_INTERNAL_ERROR_PERSISTENT_PERIOD ( 3 * MS_PER_SECOND ) ///< Temperature sensors internal error persistent period. +#define FPGA_RAW_ADC_READ_INTERVAL_COUNT 8 ///< Time interval in counts to read the raw ADC reads from FPGA. + /// Temperature sensor self-test states. typedef enum tempSensors_Self_Test_States { TEMPSENSORS_SELF_TEST_START = 0, ///< Temperature sensors self-test start TEMPSENSORS_SELF_TEST_ADC_CHECK, ///< Temperature sensors self ADC check - TEMPSENSORS_SELF_TEST_CONSISTENCY_CHECK, ///< Temperature sensors self-test consistency check TEMPSENSORS_SELF_TEST_COMPLETE, ///< Temperature sensors self-test complete NUM_OF_TEMPSENSORS_SELF_TEST_STATES ///< Total number of self-test states } TEMPSENSORS_SELF_TEST_STATES_T; @@ -111,33 +99,25 @@ { F32 gain; ///< ADC gain F32 refResistance; ///< ADC reference resistance - F32 conversionCoef; ///< ADC conversion coefficient + F32 conversionCoeff; ///< ADC conversion coefficient F32 zeroDegreeResistance; ///< ADC zero degree resistance - S32 rawADCReads[ MAX_NUM_OF_RAW_ADC_SAMPLES ]; ///< Raw ADC reads array S32 adcNextIndex; ///< Next ADC read index S32 adcRunningSum; ///< ADC running sum - U32 readCount; ///< Read counts from FPGA - U32 internalErrorCount; ///< Internal error counts - OVERRIDE_F32_T temperatureValues; ///< Temperature values with override } TEMP_SENSOR_T; // ********** private data ********** -static SELF_TEST_STATUS_T tempSensorsSelfTestResult; ///< Self-test result of the TemperatureSensors module. +static SELF_TEST_STATUS_T tempSensorsSelfTestResult = SELF_TEST_STATUS_IN_PROGRESS; ///< Self-test result of the TemperatureSensors module. static TEMPSENSORS_SELF_TEST_STATES_T tempSensorsSelfTestState; ///< TemperatureSensor self-test state. static TEMPSENSORS_EXEC_STATES_T tempSensorsExecState; ///< TemperatureSensor exec state. static TEMP_SENSOR_T tempSensors [ NUM_OF_TEMPERATURE_SENSORS ]; ///< Temperature sensors' data structure. static U32 fpgaRawADCReadInterval = 0; ///< FPGA raw ADC read interval count. -static U32 fpgaBoardTempReadCount = 0; ///< FPGA board temperature read count. +static U32 elapsedTime = 0; ///< Elapsed time variable. +static U32 internalHeatersConversionTimer = 0; ///< Conversion timer variable to calculate the heaters internal temperature. -// From master TODO check these -static U32 elapsedTime; ///< Elapsed time variable. -static U32 internalHeatersConversionTimer; ///< Conversion timer variable to calculate the heaters internal temperature. -// From master TODO check these - static F32 tempValuesForPublication [ NUM_OF_TEMPERATURE_SENSORS ]; ///< Temperature sensors data publication array. static U32 dataPublicationTimerCounter; ///< Temperature sensors data publish timer counter. static OVERRIDE_U32_T tempSensorsPublishInterval = { TEMP_SENSORS_DATA_PUBLISH_INTERVAL, @@ -147,33 +127,35 @@ static const F32 POSITIVE_TC_EXP_A1 = -0.118343200000E-3; ///< K TC positive temperature exponent coefficient A1. static const F32 POSITIVE_TC_EXP_A2 = 0.126968600000E3; ///< K TC positive temperature exponent coefficient A2. -///< Thermocouple correction coefficients for positive cold junction temperature. static const F32 POSITIVE_TC_COEFFS [ SIZE_OF_THERMOCOUPLE_COEFFICIENTS ] = { -0.176004136860E-1, 0.389212049750E-1, 0.185587700320E-4, -0.994575928740E-7, 0.318409457190E-9, -0.560728448890E-12, 0.560750590590E-15,-0.320207200030E-18, 0.971511471520E-22,-0.121047212750E-25 -}; +}; ///< Thermocouple correction coefficients for positive cold junction temperature. -///< Thermocouple inverse coefficient for positive cold junction temperature. static const F32 POSITIVE_TC_INVERSER_COEFFS [ SIZE_OF_THERMOCOUPLE_COEFFICIENTS ] = { 0.0, 2.508355E1, 7.860106E-2, -2.503131E-1, 8.315270E-2, -1.228034E-2, 9.804036E-4, -4.413030E-5, 1.057734E-6, -1.052755E-8 -}; +}; ///< Thermocouple inverse coefficient for positive cold junction temperature. -static const U32 TEMP_SENSORS_ADC_MAX_COUNT = ( 1 << TEMP_SENSORS_ADC_BITS ) - 1; ///< ADC 24 bit max count which is (2^24 - 1). -static const U32 TEMP_EQUATION_RESISTOR_CALC = 1 << ( TEMP_SENSORS_ADC_BITS - 1 ); ///< Temperature sensors resistor calculation (2^(24 - 1)). -static const F32 TEMP_EQUATION_COEFF_A = 3.9083E-3; ///< ADC to temperature conversion coefficient A. -static const F32 TEMP_EQUATION_COEFF_b = -5.775E-7; ///< ADC to temperature conversion coefficient B. +static const U32 TEMP_SENSORS_ADC_MAX_COUNT = ( 1 << TEMP_SENSORS_ADC_BITS ) - 1; ///< ADC 24 bit max count which is (2^24 - 1). +static const U32 TEMP_EQUATION_RESISTOR_CALC = 1 << ( TEMP_SENSORS_ADC_BITS - 1 ); ///< Temperature sensors resistor calculation (2^(24 - 1)). +static const F32 TEMP_EQUATION_COEFF_A = 3.9083E-3; ///< ADC to temperature conversion coefficient A. +static const F32 TEMP_EQUATION_COEFF_B = -5.775E-7; ///< ADC to temperature conversion coefficient B. +static const F32 MAX_FPGA_ERROR_COUNT_LIMIT = TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_PERIOD / + ( FPGA_RAW_ADC_READ_INTERVAL_COUNT * TASK_PRIORITY_INTERVAL ); ///< Max FPGA error count limit. +static const F32 MAX_INTERNAL_ERROR_COUNT_LIMIT = TEMPERATURE_SENSORS_INTERNAL_ERROR_PERSISTENT_PERIOD / + ( FPGA_RAW_ADC_READ_INTERVAL_COUNT * TASK_PRIORITY_INTERVAL ); ///< Max internal error count limit. + // ********** private function prototypes ********** static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestStart( void ); static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestADCCheck( void ); -static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestConsistencyCheck( void ); static TEMPSENSORS_EXEC_STATES_T handleExecStart( void ); static TEMPSENSORS_EXEC_STATES_T handleExecGetADCValues( void ); @@ -190,7 +172,7 @@ /*********************************************************************//** * @brief - * The initTemperatureSensors function initializes the module.* + * The initTemperatureSensors function initializes the module. * @details Inputs: tempSensorsSelfTestState, tempSensorsExecState, * elapsedTime, internalHeatersConversionTimer, dataPublicationTimerCounter, * tempSensors, fpgaRawADCReadInterval @@ -204,13 +186,13 @@ U08 i; // Initialize the variables + tempSensorsSelfTestResult = SELF_TEST_STATUS_IN_PROGRESS; tempSensorsSelfTestState = TEMPSENSORS_SELF_TEST_START; tempSensorsExecState = TEMPSENSORS_EXEC_STATE_START; elapsedTime = 0; internalHeatersConversionTimer = 0; dataPublicationTimerCounter = 0; fpgaRawADCReadInterval = 0; - fpgaBoardTempReadCount = 0; /* NOTE: The temperature sensors do not have conversion coefficient. * The conversion coefficients are used for the heaters internal temperature sensors and @@ -226,58 +208,52 @@ } // Initialize TPi and TPo constants - tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].gain = PRIMARY_HEATER_EXT_TEMP_SENSORS_GAIN; - tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].refResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].zeroDegreeResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].gain = PRIMARY_HEATER_EXT_TEMP_SENSORS_GAIN; + tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].refResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].zeroDegreeResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; - tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].gain = PRIMARY_HEATER_EXT_TEMP_SENSORS_GAIN; - tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].refResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].zeroDegreeResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].gain = PRIMARY_HEATER_EXT_TEMP_SENSORS_GAIN; + tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].refResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].zeroDegreeResistance = PRIMARY_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; // Initialize TD1 and TD2 constants - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].gain = COND_SENSORS_TEMP_SENSOR_GAIN; - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].refResistance = COND_SENSORS_TEMP_SENSOR_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].zeroDegreeResistance = COND_SENSORS_TEMP_SENSOR_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].gain = COND_SENSORS_TEMP_SENSOR_GAIN; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].refResistance = COND_SENSORS_TEMP_SENSOR_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_1 ].zeroDegreeResistance = COND_SENSORS_TEMP_SENSOR_0_DEGREE_RESISTANCE; - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].gain = COND_SENSORS_TEMP_SENSOR_GAIN; - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].refResistance = COND_SENSORS_TEMP_SENSOR_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].zeroDegreeResistance = COND_SENSORS_TEMP_SENSOR_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].gain = COND_SENSORS_TEMP_SENSOR_GAIN; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].refResistance = COND_SENSORS_TEMP_SENSOR_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_CONDUCTIVITY_SENSOR_2 ].zeroDegreeResistance = COND_SENSORS_TEMP_SENSOR_0_DEGREE_RESISTANCE; // Initialize TRo and TDi constants - tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].gain = TRIMMER_HEATER_EXT_TEMP_SENSORS_GAIN; - tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].refResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].zeroDegreeResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].gain = TRIMMER_HEATER_EXT_TEMP_SENSORS_GAIN; + tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].refResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_OUTLET_REDUNDANT ].zeroDegreeResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; - tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].gain = TRIMMER_HEATER_EXT_TEMP_SENSORS_GAIN; - tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].refResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; - tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].zeroDegreeResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; + tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].gain = TRIMMER_HEATER_EXT_TEMP_SENSORS_GAIN; + tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].refResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_REF_RESISTANCE; + tempSensors[ TEMPSENSORS_INLET_DIALYSATE ].zeroDegreeResistance = TRIMMER_HEATER_EXT_TEMP_SENSORS_0_DEGREE_RESISTANCE; // Initialize the heaters internal thermocouples constants - tempSensors[ TEMPSENSORS_PRIMARY_HEATER_THERMO_COUPLE ].conversionCoef = HEATERS_INTERNAL_TC_ADC_TO_TEMP_CONVERSION_COEFF; - tempSensors[ TEMPSENSORS_TRIMMER_HEATER_THERMO_COUPLE ].conversionCoef = HEATERS_INTERNAL_TC_ADC_TO_TEMP_CONVERSION_COEFF; + tempSensors[ TEMPSENSORS_PRIMARY_HEATER_THERMO_COUPLE ].conversionCoeff = HEATERS_INTERNAL_TC_ADC_TO_TEMP_CONVERSION_COEFF; + tempSensors[ TEMPSENSORS_TRIMMER_HEATER_THERMO_COUPLE ].conversionCoeff = HEATERS_INTERNAL_TC_ADC_TO_TEMP_CONVERSION_COEFF; // Initialize the heaters cold junction constants - tempSensors[ TEMPSENSORS_PRIMARY_HEATER_COLD_JUNCTION ].conversionCoef = HEATERS_COLD_JUNCTION_ADC_TO_TEMP_CONVERSION_COEFF; - tempSensors[ TEMPSENSORS_TRIMMER_HEATER_COLD_JUNCTION ].conversionCoef = HEATERS_COLD_JUNCTION_ADC_TO_TEMP_CONVERSION_COEFF; + tempSensors[ TEMPSENSORS_PRIMARY_HEATER_COLD_JUNCTION ].conversionCoeff = HEATERS_COLD_JUNCTION_ADC_TO_TEMP_CONVERSION_COEFF; + tempSensors[ TEMPSENSORS_TRIMMER_HEATER_COLD_JUNCTION ].conversionCoeff = HEATERS_COLD_JUNCTION_ADC_TO_TEMP_CONVERSION_COEFF; // FPGA board temperature conversion coefficient - tempSensors[ TEMPSENSORS_FPGA_BOARD_SENSOR ].conversionCoef = 503.975 / (F32)TWELVE_BIT_RESOLUTION; + tempSensors[ TEMPSENSORS_FPGA_BOARD_SENSOR ].conversionCoeff = 503.975 / (F32)TWELVE_BIT_RESOLUTION; F32 const conversionCoeff = 1.0 / 13584.0; // Board temperature sensors conversion coefficient - tempSensors[ TEMPSENSORS_LOAD_CELL_A1_B1 ].conversionCoef = conversionCoeff; - tempSensors[ TEMPSENSORS_LOAD_CELL_A2_B2 ].conversionCoef = conversionCoeff; - tempSensors[ TEMPSENSORS_INTERNAL_THDO_RTD ].conversionCoef = conversionCoeff; - tempSensors[ TEMPSENSORS_INTERNAL_TDI_RTD ].conversionCoef = conversionCoeff; - tempSensors[ TEMPSENSORS_INTERNAL_COND_TEMP_SENSOR ].conversionCoef = conversionCoeff; + tempSensors[ TEMPSENSORS_LOAD_CELL_A1_B1 ].conversionCoeff = conversionCoeff; + tempSensors[ TEMPSENSORS_LOAD_CELL_A2_B2 ].conversionCoeff = conversionCoeff; + tempSensors[ TEMPSENSORS_INTERNAL_THDO_RTD ].conversionCoeff = conversionCoeff; + tempSensors[ TEMPSENSORS_INTERNAL_TDI_RTD ].conversionCoeff = conversionCoeff; + tempSensors[ TEMPSENSORS_INTERNAL_COND_TEMP_SENSOR ].conversionCoeff = conversionCoeff; - // TODO Test the persistent alarm and remove this - // Windowed time count for FPGA temperature sensor error - initTimeWindowedCount( TIME_WINDOWED_COUNT_FPGA_TEMPERATURE_SENSOR_ERROR, MAX_TEMPERATURE_SENSOR_FAILURES, - MAX_TEMPERATURE_SENSOR_FAILURE_WINDOW_MS ); - // TODO test the persistent alarm and remove this - // Persistent alarms for inlet water high/low temperature initPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_TEMPERATURE, ALARM_ID_INLET_WATER_HIGH_TEMPERATURE, TRUE, INLET_WATER_TEMPERATURE_PERSISTENCE_PERIOD, INLET_WATER_TEMPERATURE_PERSISTENCE_PERIOD ); @@ -288,12 +264,12 @@ // When the FPGA read count does not increment for a period of time, it is considered as an internal error of the temperature sensors // driver. This is internal because FPGA does not error out if the FPGA read count does not increment. initPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_INTERNAL_ERROR, ALARM_ID_TEMPERATURE_SENSORS_FAULT, - TRUE, MAX_ALLOWED_UNCHANGED_ADC_READS, MAX_ALLOWED_UNCHANGED_ADC_READS ); + TRUE, TEMPERATURE_SENSORS_INTERNAL_ERROR_PERSISTENT_PERIOD, TEMPERATURE_SENSORS_INTERNAL_ERROR_PERSISTENT_PERIOD ); // Persistent alarm for temperature sensors FPGA error // This is FPGA error which is read from FPGA and it should be 0. If it is not 0 for a period of time, an alarm is raised. initPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_FPGA_ERROR, ALARM_ID_TEMPERATURE_SENSORS_FAULT, TRUE, - TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_COUNT, TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_COUNT ); + TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_PERIOD, TEMPERATURE_SENSORS_FPGA_ERROR_PERSISTENT_PERIOD ); } /*********************************************************************//** @@ -316,10 +292,6 @@ tempSensorsSelfTestState = handleSelfTestADCCheck(); break; - case TEMPSENSORS_SELF_TEST_CONSISTENCY_CHECK: - tempSensorsSelfTestState = handleSelfTestConsistencyCheck(); - break; - case TEMPSENSORS_SELF_TEST_COMPLETE: // Done with self-test, do nothing break; @@ -378,8 +350,8 @@ BOOL const isWaterTempTooHigh = temperature > MAX_WATER_INPUT_TEMPERATURE; BOOL const isWaterTempTooLow = temperature < MIN_WATER_INPUT_TEMPERATURE; - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_TEMPERATURE, isWaterTempTooHigh, temperature ); - checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_TEMPERATURE, isWaterTempTooLow, temperature ); + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_TEMPERATURE, isWaterTempTooHigh, temperature, MAX_WATER_INPUT_TEMPERATURE ); + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_TEMPERATURE, isWaterTempTooLow, temperature, MIN_WATER_INPUT_TEMPERATURE ); } /*********************************************************************//** @@ -430,15 +402,15 @@ *************************************************************************/ static F32 getADC2TempConversion( F32 avgADC, U32 gain, U32 refResistance, U32 zeroDegResistance, F32 adcConversionCoeff ) { - F32 temperature; + F32 temperature = 0.0; - if ( fabs( adcConversionCoeff ) < NEARLY_ZERO ) + if ( fabs( adcConversionCoeff ) <= NEARLY_ZERO ) { // R(RTD) = R(ref) * ( adc – 2^(N - 1) ) / ( G * 2^(N - 1) ); F32 resistance = ( refResistance * ( avgADC - TEMP_EQUATION_RESISTOR_CALC ) ) / ( gain * TEMP_EQUATION_RESISTOR_CALC ); // 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 ); + 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 ); } else { @@ -557,8 +529,8 @@ *************************************************************************/ static void processHtrsTempSnsrsADCRead( U32 sensorIndex, U32 adc, U32 fpgaError, U32 fpgaCount ) { - U16 adcConv; - S16 convertedADC; + U16 adcConv = 0; + S16 convertedADC = 0; if ( ( sensorIndex == TEMPSENSORS_PRIMARY_HEATER_THERMO_COUPLE ) || ( sensorIndex == TEMPSENSORS_TRIMMER_HEATER_THERMO_COUPLE ) ) { @@ -599,39 +571,25 @@ static BOOL isADCReadValid( U32 sensorIndex, U32 fpgaError, U32 fpgaCount ) { BOOL isADCValid = FALSE; -//#ifndef _VECTORCAST_ -// isADCValid = TRUE; // TODO remove this line. Temporary set to true until FPGA error count is fixed +#ifndef _VECTORCAST_ + isADCValid = TRUE; // TODO remove this line. Temporary set to true until FPGA error count is fixed //THIS ISSUE HAS BEEN FIXED. TRY IT. -//#endif +#endif if ( fpgaError == 0 ) { - if ( tempSensors[ sensorIndex ].readCount != fpgaCount ) + if ( tempSensors[ sensorIndex ].readCount < fpgaCount ) // it was != rather than > { - tempSensors[ sensorIndex ].readCount = fpgaCount; - //tempSensors[ sensorIndex ].internalErrorCount = 0; TODO do we need this any more? + tempSensors[ sensorIndex ].readCount = fpgaCount; isADCValid = TRUE; } else { - checkPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_INTERNAL_ERROR, TRUE, sensorIndex ); - /* TODO test and figure out if this is right - ++tempSensors[ sensorIndex ].internalErrorCount; - if ( tempSensors[ sensorIndex ].internalErrorCount > MAX_ALLOWED_UNCHANGED_ADC_READS ) - { - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_TEMPERATURE_SENSORS_FAULT, sensorIndex ); - } - */ + checkPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_INTERNAL_ERROR, TRUE, sensorIndex, MAX_INTERNAL_ERROR_COUNT_LIMIT ); } } else { - checkPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_FPGA_ERROR, TRUE, fpgaError ); - /* TODO test and remove these lines. - if ( TRUE == incTimeWindowedCount( TIME_WINDOWED_COUNT_FPGA_TEMPERATURE_SENSOR_ERROR ) ) - { - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_TEMPERATURE_SENSORS_FAULT, sensorIndex ); - } - */ + checkPersistentAlarm( PERSISTENT_ALARM_TEMP_SENSORS_FPGA_ERROR, TRUE, sensorIndex, MAX_FPGA_ERROR_COUNT_LIMIT ); } return isADCValid; @@ -676,13 +634,13 @@ case TEMPSENSORS_PRIMARY_HEATER_COLD_JUNCTION: case TEMPSENSORS_TRIMMER_HEATER_COLD_JUNCTION: temperature = getADC2TempConversion( avgADCReads, (U32)tempSensors [ sensorIndex ].gain,(U32)tempSensors [ sensorIndex ].refResistance, - (U32)tempSensors [ sensorIndex ].zeroDegreeResistance, tempSensors [ sensorIndex ].conversionCoef ); + (U32)tempSensors [ sensorIndex ].zeroDegreeResistance, tempSensors [ sensorIndex ].conversionCoeff ); break; case TEMPSENSORS_FPGA_BOARD_SENSOR: // Temperature(C) = ((ADC x 503.975) / 4096) - 273.15 // The value of 503.975/4096 has been calculated and stored in the conversion coefficient variable of the structure - temperature = ( avgADCReads * tempSensors[ sensorIndex ].conversionCoef ) - CELSIUS_TO_KELVIN_CONVERSION; + temperature = ( avgADCReads * tempSensors[ sensorIndex ].conversionCoeff ) - CELSIUS_TO_KELVIN_CONVERSION; break; case TEMPSENSORS_LOAD_CELL_A1_B1: @@ -692,13 +650,15 @@ case TEMPSENSORS_INTERNAL_COND_TEMP_SENSOR: // Temperature(C) = ((ADC - 0x800000)/13584) - 272.5 // The value 1/13584 has been calculated and stored in the conversion coefficient variable of the structure - temperature = ( ( avgADCReads - ADC_BOARD_TEMP_SENSORS_CONST ) * tempSensors[ sensorIndex ].conversionCoef ) - + temperature = ( ( avgADCReads - ADC_BOARD_TEMP_SENSORS_CONST ) * tempSensors[ sensorIndex ].conversionCoeff ) - ADC_BOARD_TEMP_SENSORS_CONVERSION_CONST; break; default: // Wrong sensor was called, raise an alarm SET_ALARM_WITH_2_U32_DATA( ALARM_ID_DG_SOFTWARE_FAULT, SW_FAULT_ID_INVALID_TEMPERATURE_SENSOR_SELECTED, sensorIndex ); + // Wrong sensor, return temperature to be -1 + temperature = -1.0; break; } @@ -731,6 +691,8 @@ *************************************************************************/ static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestADCCheck( void ) { + tempSensorsSelfTestResult = SELF_TEST_STATUS_PASSED; + S32 const tpiADC = (S32)getFPGATPiTemp(); BOOL const isLessThanZero = tpiADC <= 0; @@ -742,45 +704,6 @@ SET_ALARM_WITH_1_U32_DATA( ALARM_ID_TEMPERATURE_SENSORS_FAULT, TEMPSENSORS_SELF_TEST_ADC_CHECK ); } - return TEMPSENSORS_SELF_TEST_CONSISTENCY_CHECK; -} - -/*********************************************************************//** - * @brief - * The handleSelfTestConsistencyCheck function checks the values of the - * sensors to make sure they are within the allowed range from each other. - * @details Inputs: tempSensors, tempSensorsSelfTestResult - * @details Outputs: tempSensorsSelfTestResult - * @return the next state of the state machine - *************************************************************************/ -static TEMPSENSORS_SELF_TEST_STATES_T handleSelfTestConsistencyCheck( void ) -{ - S32 const tpiConvertedADC = ( (S32)getFPGATPiTemp() & MASK_OFF_U32_MSB ); - F32 const tpiTemperature = getADC2TempConversion( tpiConvertedADC, - (U32) tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].gain, - (U32) tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].refResistance, - (U32) tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].zeroDegreeResistance, - tempSensors[ TEMPSENSORS_INLET_PRIMARY_HEATER ].conversionCoef ); - - S32 const tpoConvertedADC = ( (S32)getFPGATPoTemp() & MASK_OFF_U32_MSB ); - F32 const tpoTemperature = getADC2TempConversion( tpoConvertedADC, - (U32) tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].gain, - (U32) tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].refResistance, - (U32) tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].zeroDegreeResistance, - tempSensors[ TEMPSENSORS_OUTLET_PRIMARY_HEATER ].conversionCoef ); - - F32 const tempDiff = fabs( tpiTemperature - tpoTemperature ); - - if ( tempDiff > MAX_ALLOWED_TEMP_DELTA_BETWEEN_SENSORS ) - { - tempSensorsSelfTestResult = SELF_TEST_STATUS_FAILED; - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_TEMPERATURE_SENSORS_INCONSISTENT, TEMPSENSORS_SELF_TEST_CONSISTENCY_CHECK ); - } - else - { - tempSensorsSelfTestResult = SELF_TEST_STATUS_PASSED; - } - return TEMPSENSORS_SELF_TEST_COMPLETE; } @@ -846,8 +769,9 @@ // NOTE: FPGA board temperature sensor is different from the rest of the sensors. This sensor does not have FPGA count and error // coming from FPGA. It is kept here to do moving average on the values. The supporting functions need to see the FPGA read count - // incrementing so for that an artificial counter was created. - processTempSnsrsADCRead( TEMPSENSORS_FPGA_BOARD_SENSOR, getFPGABoardTemp(), 0, ++fpgaBoardTempReadCount ); + // incrementing internally so there will not be any errors. + U32 simulatedCounter = tempSensors[ TEMPSENSORS_FPGA_BOARD_SENSOR ].readCount; + processTempSnsrsADCRead( TEMPSENSORS_FPGA_BOARD_SENSOR, getFPGABoardTemp(), 0, ++simulatedCounter ); processTempSnsrsADCRead( TEMPSENSORS_LOAD_CELL_A1_B1, getFPGALoadCellsA1B1Temp(), getFPGAADC1ErrorCount(), getFPGAADC1ReadCount() ); Index: firmware/App/Controllers/Thermistors.c =================================================================== diff -u -r4fdc3246f14c8b3b04724d39803530f60b6caac8 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 4fdc3246f14c8b3b04724d39803530f60b6caac8) +++ firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -27,7 +27,7 @@ #define CELSIUS_TO_KELVIN_CONVERSION 273.15 ///< Celsius to Kelvin temperature conversion. #define MIN_ALLOWED_TEMPERATURE 5.0 ///< Thermistors/sensors minimum allowed temperature reading. #define MAX_ALLOWED_TEMPERATURE 70.0 ///< Thermistors/sensors maximum allowed temperature reading. -#define MAX_ALLOWED_TEMP_OUT_OF_RANGE_PERIOD ( MS_PER_SECOND / ( 4 * TASK_GENERAL_INTERVAL ) ) ///< Thermistors/sensors maximum allowed temperature out of range period. +#define MAX_ALLOWED_TEMP_OUT_OF_RANGE_PERIOD ( 5 * MS_PER_SECOND ) ///< Thermistors/sensors maximum allowed temperature out of range period. /// Thermistors self test states typedef enum thermistors_Self_Test_States @@ -53,18 +53,18 @@ F32 betaValue; ///< Thermistor beta value used to calculate temperature } THERMISTOR_T; -static SELF_TEST_STATUS_T thermistorsSelfTestReslt = SELF_TEST_STATUS_IN_PROGRESS; ///< Thermistors self test result. +static SELF_TEST_STATUS_T thermistorsSelfTestReslt = SELF_TEST_STATUS_IN_PROGRESS; ///< Thermistors self test result. static THERMISTORS_SELF_TEST_STATES_T thermistorsSelfTestState = THERMISTROS_SELF_TEST_CHECK_RANGE_STATE; ///< Thermistors self test state. static THERMISTORS_EXEC_STATES_T thermistorsExecState = THERMISTORS_EXEC_STATE_START_STATE; ///< Thermistors exec state. -static THERMISTOR_T thermistorsStatus[ NUM_OF_THERMISTORS ]; ///< Thermistors array. +static THERMISTOR_T thermistorsStatus[ NUM_OF_THERMISTORS ]; ///< Thermistors array. static OVERRIDE_U32_T thermistorsPublishInterval = { THERMISTORS_DATA_PUBLISH_INTERVAL, - THERMISTORS_DATA_PUBLISH_INTERVAL, 0, 0 }; ///< Thermistors publish time interval override. -static U32 dataPublishCounter; ///< Thermistors data publish timer counter. -static U32 adcReadCounter; ///< Thermistors ADC read counter. + THERMISTORS_DATA_PUBLISH_INTERVAL, 0, 0 }; ///< Thermistors publish time interval override. +static U32 dataPublishCounter; ///< Thermistors data publish timer counter. +static U32 adcReadCounter; ///< Thermistors ADC read counter. static const F32 THERMISTOR_VOLTAGE_CONV_COEFF = THERMISTOR_REFERENCE_VOLTAGE / - (F32)TWELVE_BIT_RESOLUTION; ///< On board thermistor ADC to voltage conversion coefficient. -static const F32 ON_BOARD_THERMISTOR_REF_TEMP_INV = 1 / THERMISTOR_REFERENCE_TEMPERATURE; ///< On board thermistor reference inverse. + (F32)TWELVE_BIT_RESOLUTION; ///< On board thermistor ADC to voltage conversion coefficient. +static const F32 ON_BOARD_THERMISTOR_REF_TEMP_INV = 1 / THERMISTOR_REFERENCE_TEMPERATURE; ///< On board thermistor reference inverse. // ********** private function prototypes ********** @@ -284,14 +284,14 @@ // If time has elapsed to read the ADCs, read them all if ( ++adcReadCounter >= THERMISTORS_ADC_READ_INTERVAL ) { - // Monitor the values for a gross range check - monitorThermistors(); - // Get all the raw readings in ADC thermistorsStatus[ THERMISTOR_ONBOARD_NTC ].rawADCRead = getIntADCReading( INT_ADC_BOARD_THERMISTOR ); thermistorsStatus[ THERMISTOR_POWER_SUPPLY_1 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_1_THERMISTOR ); thermistorsStatus[ THERMISTOR_POWER_SUPPLY_2 ].rawADCRead = getIntADCReading( INT_ADC_POWER_SUPPLY_2_THERMISTOR ); + // Monitor the values for a gross range check + monitorThermistors(); + // Zero the counter for the next round of reading adcReadCounter = 0; } @@ -319,11 +319,15 @@ { temperature = getThermistorTemperatureValue( thermistor ); - // If the thermisotrs and sensors read temperature out of range, raise an alarm - if ( temperature < MIN_ALLOWED_TEMPERATURE || temperature >= MAX_ALLOWED_TEMPERATURE ) + // If the thermistors and sensors read temperature out of range, raise an alarm + if ( temperature < MIN_ALLOWED_TEMPERATURE ) { - checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, TRUE, temperature ); + checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, TRUE, temperature, MIN_ALLOWED_TEMPERATURE ); } + else if ( temperature >= MAX_ALLOWED_TEMPERATURE ) + { + checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, TRUE, temperature, MAX_ALLOWED_TEMPERATURE ); + } } } Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r3461c140ba07e74863dee1d4c51d0119076fecf8 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -268,7 +268,9 @@ setConcentratePumpTargetSpeed( CONCENTRATEPUMPS_CP2, bicarbCP2PumpFlowRate ); BOOL const isROPumpFlowRateOutOfRange = ( measuredROFlowRate <= FILL_MIN_RO_FLOW_RATE ) || ( measuredROFlowRate >= FILL_MAX_RO_FLOW_RATE ); - checkPersistentAlarm( PERSISTENT_ALARM_RO_PUMP_FLOW_RATE_OUT_OF_RANGE, isROPumpFlowRateOutOfRange, measuredROFlowRate ); + + // TODO add the right limit values + checkPersistentAlarm( PERSISTENT_ALARM_RO_PUMP_FLOW_RATE_OUT_OF_RANGE, isROPumpFlowRateOutOfRange, measuredROFlowRate, 0 ); } /**@}*/ Index: firmware/App/Services/FPGA.c =================================================================== diff -u -rd241d1026f6600331291ce8ea231355cae93c2ce -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/FPGA.c (.../FPGA.c) (revision d241d1026f6600331291ce8ea231355cae93c2ce) +++ firmware/App/Services/FPGA.c (.../FPGA.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -583,7 +583,7 @@ fpgaCommRetryCount++; } - // shouldn't be any data received at this time + // There should not be any data received at this time consumeUnexpectedData(); return result; @@ -1664,7 +1664,7 @@ * @details Outputs: none * @return FPGA board temperature reading in ADC counts *************************************************************************/ -U32 getFPGABoardTemp( void ) +U16 getFPGABoardTemp( void ) { return fpgaSensorReadings.fpgaADCTemp; } Index: firmware/App/Services/FPGA.h =================================================================== diff -u -r0b17c6271cdc3c55697a74ecaadb477d9c8f5687 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/FPGA.h (.../FPGA.h) (revision 0b17c6271cdc3c55697a74ecaadb477d9c8f5687) +++ firmware/App/Services/FPGA.h (.../FPGA.h) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -119,7 +119,7 @@ U16 getFPGAOutletFan2TogglePeriod( void ); U16 getFPGAOutletFan3TogglePeriod( void ); -U32 getFPGABoardTemp( void ); +U16 getFPGABoardTemp( void ); U32 getFPGALoadCellsA1B1Temp( void ); U32 getFPGALoadCellsA2B2Temp( void ); U32 getFPGATHDoInternalTemp( void ); Index: firmware/App/Services/MessagePayloads.h =================================================================== diff -u -r7cc6fbb41e6b460fedff71581f6205ef36d5deb6 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision 7cc6fbb41e6b460fedff71581f6205ef36d5deb6) +++ firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -114,14 +114,6 @@ U32 trimmerHeaterDC; ///< Trimmer heater DC } HEATERS_DATA_T; -/// Accelerometer calibration data struct. -typedef struct -{ - F32 xOffset; ///< Accelerometer calibration x-offset - F32 yOffset; ///< Accelerometer calibration y-offset - F32 zOffset; ///< Accelerometer calibration z-offset -} ACCEL_CAL_PAYLOAD_T; - #pragma pack(pop) /**@}*/ Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r4fdc3246f14c8b3b04724d39803530f60b6caac8 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 4fdc3246f14c8b3b04724d39803530f60b6caac8) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1161,15 +1161,15 @@ break; case MSG_ID_DG_THERMISTORS_DATA_PUBLISH_INTERVAL_OVERRIDE: - handleThermistorsDataPublishIntervalOverride( message ); + handleTestThermistorsDataPublishIntervalOverride( message ); break; case MSG_ID_DG_THERMISTORS_VALUE_OVERRIDE: - handleThermisotrsValueOverride( message ); + handleTestThermisotrsValueOverride( message ); break; case MSG_ID_DG_FANS_DATA_PUBLISH_INTERVAL_OVERRIDE: - handleFansDataPublishIntervalOverride( message ); + handleTestFansDataPublishIntervalOverride( message ); break; default: Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r0b17c6271cdc3c55697a74ecaadb477d9c8f5687 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 0b17c6271cdc3c55697a74ecaadb477d9c8f5687) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1971,38 +1971,6 @@ } /*********************************************************************//** -* @brief -* The handleFansDataPublishIntervalOverride function handles a request -* to override the publish interval of the fans data -* @details Inputs: none -* @details Outputs: message handled -* @param message a pointer to the message to handle -* @return none -*************************************************************************/ -void handleFansDataPublishIntervalOverride( MESSAGE_T * message ) -{ - TEST_OVERRIDE_PAYLOAD_T payload; - BOOL result = FALSE; - - // verify payload length - if ( sizeof(TEST_OVERRIDE_PAYLOAD_T) == message->hdr.payloadLen ) - { - memcpy( &payload, message->payload, sizeof(TEST_OVERRIDE_PAYLOAD_T) ); - if ( FALSE == payload.reset ) - { - result = testSetFanPublishIntervalOverride( payload.state.u32 ); - } - else - { - result = testResetFanPublishIntervalOverride(); - } - } - - // respond to request - sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); -} - -/*********************************************************************//** * @brief * The handleSetConcentratePumpTargetSpeed function handles a request to * override a concentrate pump's target speed value. @@ -2102,15 +2070,15 @@ * @param message a pointer to the message to handle * @return none *************************************************************************/ -void handleThermistorsDataPublishIntervalOverride( MESSAGE_T *message ) +void handleTestThermistorsDataPublishIntervalOverride( MESSAGE_T *message ) { TEST_OVERRIDE_PAYLOAD_T payload; BOOL result = FALSE; // verify payload length - if ( sizeof(TEST_OVERRIDE_PAYLOAD_T) == message->hdr.payloadLen ) + if ( sizeof( TEST_OVERRIDE_PAYLOAD_T ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof(TEST_OVERRIDE_PAYLOAD_T) ); + memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_PAYLOAD_T ) ); if ( FALSE == payload.reset ) { result = testSetThermistorPublishIntervalOverride( payload.state.u32 ); @@ -2134,7 +2102,7 @@ * @param message a pointer to the message to handle * @return none *************************************************************************/ -void handleThermisotrsValueOverride( MESSAGE_T *message ) +void handleTestThermisotrsValueOverride( MESSAGE_T *message ) { TEST_OVERRIDE_ARRAY_PAYLOAD_T payload; BOOL result = FALSE; @@ -2157,4 +2125,36 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } +/*********************************************************************//** +* @brief +* The handleFansDataPublishIntervalOverride function handles a request +* to override the publish interval of the fans data +* @details Inputs: none +* @details Outputs: message handled +* @param message a pointer to the message to handle +* @return none +*************************************************************************/ +void handleTestFansDataPublishIntervalOverride( MESSAGE_T * message ) +{ + TEST_OVERRIDE_PAYLOAD_T payload; + BOOL result = FALSE; + + // verify payload length + if ( sizeof( TEST_OVERRIDE_PAYLOAD_T ) == message->hdr.payloadLen ) + { + memcpy( &payload, message->payload, sizeof( TEST_OVERRIDE_PAYLOAD_T ) ); + if ( FALSE == payload.reset ) + { + result = testSetFanPublishIntervalOverride( payload.state.u32 ); + } + else + { + result = testResetFanPublishIntervalOverride(); + } + } + + // respond to request + sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); +} + /**@}*/ Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r4fdc3246f14c8b3b04724d39803530f60b6caac8 -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 4fdc3246f14c8b3b04724d39803530f60b6caac8) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -221,13 +221,13 @@ void handleConcentratePumpPublishIntervalOverride( MESSAGE_T *message ); // MSG_ID_DG_THERMISTORS_DATA_PUBLISH_INTERVAL_OVERRIDE -void handleThermistorsDataPublishIntervalOverride( MESSAGE_T *message ); +void handleTestThermistorsDataPublishIntervalOverride( MESSAGE_T *message ); // MSG_ID_DG_THERMISTORS_VALUE_OVERRIDE -void handleThermisotrsValueOverride( MESSAGE_T *message ); +void handleTestThermisotrsValueOverride( MESSAGE_T *message ); // MSG_ID_DG_FANS_DATA_PUBLISH_INTERVAL_OVERRIDE -void handleFansDataPublishIntervalOverride( MESSAGE_T *message ); +void handleTestFansDataPublishIntervalOverride( MESSAGE_T *message ); /**@}*/ Index: results/Build_Status_Report.csv =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1,10 +1,19 @@ Running Project, dgfirmware -Date, Mon Nov 23 16:53:34 PST 2020 +Date, Sat Dec 5 23:11:55 PST 2020 -VectorCAST Pass/Fail Status, Passed +VectorCAST Pass/Fail Status, Failed +The following test(s) failed: +VectorCAST_MinGW_C_LinuxTestSuite_INTERNALADC_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_INT_PERSISTENTALARM_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_MODEINITPOST_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_TEMPERATURESENSORS_management_report.html -Unit Test Coverage, Passed +Unit Test Coverage, Failed +The following test(s) failed: +VectorCAST_MinGW_C_LinuxTestSuite_MODEINITPOST_management_report.html,Statement_Cov(%):,88,Branch_Cov(%):,94,Pairs_Cov(%):,100 +VectorCAST_MinGW_C_LinuxTestSuite_INTERNALADC_management_report.html,Statement_Cov(%):,85,Branch_Cov(%):,93,Pairs_Cov(%):,85 +VectorCAST_MinGW_C_LinuxTestSuite_NVDATAMGMT_management_report.html,Statement_Cov(%):,98,Branch_Cov(%):,97,Pairs_Cov(%):,97 Integration Test Coverage, Passed @@ -26,6 +35,9 @@ systemcommmessages,broadcastPressureSensorsData systemcommmessages,broadcastReservoirData systemcommmessages,broadcastTemperatureSensorsData +systemcommmessages,broadcastThermistorsData +systemcommmessages,broadcastFansData +systemcommmessages,handleTestROPumpSetPointOverrideRequest accel,getAccelCalibration reservoirs,stopFillCmd reservoirs,stopDrainCmd @@ -55,6 +67,7 @@ cpld,setCPLDLampBlue cpld,setCPLDLampRed modeheatdisinfect,getCurrentHeatDisinfectState +fans,getMeasuredFanRPM alarmmgmt,execAlarmMgmt alarmmgmt,isAlarmActive picontrollers,getPIControllerSignals Index: results/VectorCAST.log =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- results/VectorCAST.log (.../VectorCAST.log) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/VectorCAST.log (.../VectorCAST.log) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1,6 +1,6 @@ COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 16:53:35 +TIME: 2020-12-05 23:11:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG @@ -33,9 +33,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 16:53:38 +TIME: 2020-12-05 23:11:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -50,9 +50,6 @@ 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 @@ -323,24 +320,9 @@ >>> Processed Test Case: testSetAccelMaxOverride_Override (S) @LINE: 1374 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 16:53: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/1290043353/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 16:53:41 +TIME: 2020-12-05 23:12:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -799,7 +781,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-23 16:53:43 +TIME: 2020-12-05 23:12: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/951818791/CCAST_.CFG @@ -834,7 +816,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-23 16:53:46 +TIME: 2020-12-05 23:12:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -973,7 +955,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-23 16:53:47 +TIME: 2020-12-05 23:12:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1185,7 +1167,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:48 +TIME: 2020-12-05 23:12: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/2974704408/CCAST_.CFG @@ -1219,9 +1201,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:51 +TIME: 2020-12-05 23:12:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1236,9 +1218,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -1304,24 +1283,9 @@ >>> Processed Test Case: signalCANXmitsInitiated_NominalPath (S) @LINE: 182 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53: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/2974704408/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:53 +TIME: 2020-12-05 23:12:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1440,7 +1404,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:53:55 +TIME: 2020-12-05 23:12: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/4019558491/CCAST_.CFG @@ -1473,9 +1437,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:53:57 +TIME: 2020-12-05 23:12:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1490,9 +1454,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 200 Processing script line 250 @@ -1624,24 +1585,9 @@ >>> Processed Test Case: switchDoubleBuffer_Switch1To0 (S) @LINE: 774 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:53: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/4019558491/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:54:00 +TIME: 2020-12-05 23:12:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1857,7 +1803,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 16:54:01 +TIME: 2020-12-05 23:12:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG @@ -1890,9 +1836,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 16:54:04 +TIME: 2020-12-05 23:12:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1907,9 +1853,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -2131,24 +2074,9 @@ >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Override (S) @LINE: 671 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 16:54: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/3101310435/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 16:54:06 +TIME: 2020-12-05 23:12:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2514,7 +2442,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 16:54:08 +TIME: 2020-12-05 23:12: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 @@ -2547,9 +2475,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 16:54:11 +TIME: 2020-12-05 23:12:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2564,9 +2492,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -2812,24 +2737,9 @@ >>> Processed Test Case: testSetConductivityOverride_Override (S) @LINE: 746 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 16:54: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/2347984748/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 16:54:13 +TIME: 2020-12-05 23:12:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3250,7 +3160,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:15 +TIME: 2020-12-05 23:12:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG @@ -3284,9 +3194,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:19 +TIME: 2020-12-05 23:12:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3301,9 +3211,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -3350,24 +3257,9 @@ >>> Processed Test Case: toggleCPLDWatchdog_NominalPath (S) @LINE: 124 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:20 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:20 +TIME: 2020-12-05 23:12:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3448,7 +3340,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54:22 +TIME: 2020-12-05 23:12: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/2400209084/CCAST_.CFG @@ -3482,9 +3374,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54:25 +TIME: 2020-12-05 23:12:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3499,9 +3391,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -3643,24 +3532,9 @@ >>> Processed Test Case: testSetTargetDrainPumpSpeedOverride_Override (S) @LINE: 516 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54: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/2400209084/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 DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54:28 +TIME: 2020-12-05 23:12:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3682,7 +3556,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54:28 +TIME: 2020-12-05 23:12:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3932,9 +3806,509 @@ 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/1563218048/FANS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:12:44 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "FANS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Fans + Unit 9 (tdd-sbf-source): Fans + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Inserting Environment User Code + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Statement+MC/DC Coverage + Instrumenting file Fans + Compiling file Fans + 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 FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:12: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/1563218048/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/1563218048/FANS/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 (1) + Translated 0 script lines + Processing script line 50 + Processing script line 200 + Processing script line 250 + Processing script line 350 + Processing script line 400 + Processing script line 450 + Processing script line 500 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: convertFansTogglePeriod2RPM_NominalPath +(S) @LINE: 42 + >>> Processed Test Case: convertFansTogglePeriod2RPM_NominalPath +(I) @LINE: 50 + >>> Processing Test Case: execFans_Default +(S) @LINE: 59 + >>> Processed Test Case: execFans_Default +(I) @LINE: 65 + >>> Processing Test Case: execFans_Run +(S) @LINE: 71 + >>> Processed Test Case: execFans_Run +(I) @LINE: 77 + >>> Processing Test Case: execFans_Wait_For_POST +(S) @LINE: 82 + >>> Processed Test Case: execFans_Wait_For_POST +(I) @LINE: 90 + >>> Processing Test Case: execFansSelfTest_Self_Test_Check_Complete +(S) @LINE: 96 + >>> Processed Test Case: execFansSelfTest_Self_Test_Check_Complete +(I) @LINE: 102 + >>> Processing Test Case: execFansSelfTest_Self_Test_Check_RPM +(S) @LINE: 108 + >>> Processed Test Case: execFansSelfTest_Self_Test_Check_RPM +(I) @LINE: 114 + >>> Processing Test Case: execFansSelfTest_Self_Test_Default +(S) @LINE: 125 + >>> Processed Test Case: execFansSelfTest_Self_Test_Default +(I) @LINE: 131 + >>> Processing Test Case: execFansSelfTest_Self_Test_Start +(S) @LINE: 134 + >>> Processed Test Case: execFansSelfTest_Self_Test_Start +(I) @LINE: 142 + >>> Processing Test Case: getMaximumTemperature_NominalPath +(S) @LINE: 147 + >>> Processed Test Case: getMaximumTemperature_NominalPath +(I) @LINE: 155 + >>> Processing Test Case: getMeasuredFanRPM_Fan_In_Range +(S) @LINE: 160 + >>> Processed Test Case: getMeasuredFanRPM_Fan_In_Range +(I) @LINE: 166 + >>> Processing Test Case: getMeasuredFanRPM_Fan_Out_Of_Range +(S) @LINE: 175 + >>> Processed Test Case: getMeasuredFanRPM_Fan_Out_Of_Range +(I) @LINE: 183 + >>> Processing Test Case: getPublishFansDataInterval_No_Override +(S) @LINE: 189 + >>> Processed Test Case: getPublishFansDataInterval_No_Override +(I) @LINE: 195 + >>> Processing Test Case: getPublishFansDataInterval_Override +(S) @LINE: 200 + >>> Processed Test Case: getPublishFansDataInterval_Override +(I) @LINE: 208 + >>> Processing Test Case: handleExecStateRun_Control_DC_Above_Range +(S) @LINE: 216 + >>> Processed Test Case: handleExecStateRun_Control_DC_Above_Range +(I) @LINE: 222 + >>> Processing Test Case: handleExecStateRun_Control_DC_Below_Range +(S) @LINE: 230 + >>> Processed Test Case: handleExecStateRun_Control_DC_Below_Range +(I) @LINE: 236 + >>> Processing Test Case: handleExecStateRun_Control_DC_In_Range_Ramp_Up +(S) @LINE: 244 + >>> Processed Test Case: handleExecStateRun_Control_DC_In_Range_Ramp_Up +(I) @LINE: 250 + >>> Processing Test Case: handleExecStateRun_Control_DC_Not_In_Range_Ramp_Up +(S) @LINE: 258 + >>> Processed Test Case: handleExecStateRun_Control_DC_Not_In_Range_Ramp_Up +(I) @LINE: 264 + >>> Processing Test Case: handleExecStateRun_Control_DC_Ramp_Down +(S) @LINE: 272 + >>> Processed Test Case: handleExecStateRun_Control_DC_Ramp_Down +(I) @LINE: 278 + >>> Processing Test Case: handleExecStateRun_Not_Control_Time +(S) @LINE: 283 + >>> Processed Test Case: handleExecStateRun_Not_Control_Time +(I) @LINE: 291 + >>> Processing Test Case: handleExecStateWaitForPOST_POST_Complete +(S) @LINE: 296 + >>> Processed Test Case: handleExecStateWaitForPOST_POST_Complete +(I) @LINE: 302 + >>> Processing Test Case: handleExecStateWaitForPOST_Wait_For_POST +(S) @LINE: 307 + >>> Processed Test Case: handleExecStateWaitForPOST_Wait_For_POST +(I) @LINE: 315 + >>> Processing Test Case: handleSelfTestCheckRPM_Check_Time_RPM_<_Min +(S) @LINE: 329 + >>> Processed Test Case: handleSelfTestCheckRPM_Check_Time_RPM_<_Min +(I) @LINE: 335 + >>> Processing Test Case: handleSelfTestCheckRPM_Not_Check_Time +(S) @LINE: 338 + >>> Processed Test Case: handleSelfTestCheckRPM_Not_Check_Time +(I) @LINE: 346 + >>> Processing Test Case: handleSelfTestStart_NominalPath +(S) @LINE: 352 + >>> Processed Test Case: handleSelfTestStart_NominalPath +(I) @LINE: 360 + >>> Processing Test Case: initFans_NominalPath +(S) @LINE: 367 + >>> Processed Test Case: initFans_NominalPath +(I) @LINE: 375 + >>> Processing Test Case: monitorFans_RPM_Out_Of_Lower_Range +(S) @LINE: 388 + >>> Processed Test Case: monitorFans_RPM_Out_Of_Lower_Range +(I) @LINE: 394 + >>> Processing Test Case: monitorFans_RPM_Out_Of_Upper_Range +(S) @LINE: 406 + >>> Processed Test Case: monitorFans_RPM_Out_Of_Upper_Range +(I) @LINE: 414 + >>> Processing Test Case: publishFansData_Not_Publish_Time +(S) @LINE: 417 + >>> Processed Test Case: publishFansData_Not_Publish_Time +(I) @LINE: 423 + >>> Processing Test Case: publishFansData_Publish_Time +(S) @LINE: 426 + >>> Processed Test Case: publishFansData_Publish_Time +(I) @LINE: 434 + >>> Processing Test Case: setInletFansDutyCycle_NominalPath +(S) @LINE: 439 + >>> Processed Test Case: setInletFansDutyCycle_NominalPath +(I) @LINE: 447 + >>> Processing Test Case: setOutletFansDutyCycle_NominalPath +(S) @LINE: 452 + >>> Processed Test Case: setOutletFansDutyCycle_NominalPath +(I) @LINE: 460 + >>> Processing Test Case: testResetFanPublishIntervalOverride_Logged_In +(S) @LINE: 469 + >>> Processed Test Case: testResetFanPublishIntervalOverride_Logged_In +(I) @LINE: 475 + >>> Processing Test Case: testResetFanPublishIntervalOverride_Not_Logged_In +(S) @LINE: 483 + >>> Processed Test Case: testResetFanPublishIntervalOverride_Not_Logged_In +(I) @LINE: 491 + >>> Processing Test Case: testSetFanPublishIntervalOverride_Logged_In +(S) @LINE: 500 + >>> Processed Test Case: testSetFanPublishIntervalOverride_Logged_In +(I) @LINE: 506 + >>> Processing Test Case: testSetFanPublishIntervalOverride_Not_Logged_In +(S) @LINE: 512 + >>> Processed Test Case: testSetFanPublishIntervalOverride_Not_Logged_In +(S) @LINE: 512 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:12: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/1563218048/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 FANS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:12: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/1563218048/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Fans.initFans test cases + Running: initFans_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.execFansSelfTest test cases + Running: execFansSelfTest_Self_Test_Check_Complete + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execFansSelfTest_Self_Test_Check_RPM + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execFansSelfTest_Self_Test_Default + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execFansSelfTest_Self_Test_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.execFans test cases + Running: execFans_Default + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execFans_Run + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execFans_Wait_For_POST + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.getMeasuredFanRPM test cases + Running: getMeasuredFanRPM_Fan_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getMeasuredFanRPM_Fan_Out_Of_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.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/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.handleSelfTestCheckRPM test cases + Running: handleSelfTestCheckRPM_Check_Time_RPM_<_Min + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestCheckRPM_Not_Check_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.handleExecStateWaitForPOST test cases + Running: handleExecStateWaitForPOST_POST_Complete + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateWaitForPOST_Wait_For_POST + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.handleExecStateRun test cases + Running: handleExecStateRun_Control_DC_Above_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateRun_Control_DC_Below_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateRun_Control_DC_In_Range_Ramp_Up + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateRun_Control_DC_Not_In_Range_Ramp_Up + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateRun_Control_DC_Ramp_Down + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStateRun_Not_Control_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.setInletFansDutyCycle test cases + Running: setInletFansDutyCycle_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.setOutletFansDutyCycle test cases + Running: setOutletFansDutyCycle_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.getMaximumTemperature test cases + Running: getMaximumTemperature_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.convertTogglePeriod2RPM test cases + Running: convertFansTogglePeriod2RPM_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.monitorFans test cases + Running: monitorFans_RPM_Out_Of_Lower_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: monitorFans_RPM_Out_Of_Upper_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.getPublishFansDataInterval test cases + Running: getPublishFansDataInterval_No_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getPublishFansDataInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.publishFansData test cases + Running: publishFansData_Not_Publish_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: publishFansData_Publish_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.testSetFanPublishIntervalOverride test cases + Running: testSetFanPublishIntervalOverride_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetFanPublishIntervalOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Fans.testResetFanPublishIntervalOverride test cases + Running: testResetFanPublishIntervalOverride_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetFanPublishIntervalOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS/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/1655952326/FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 16:54:30 +TIME: 2020-12-05 23:12: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/1655952326/CCAST_.CFG @@ -3969,7 +4343,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 16:54:33 +TIME: 2020-12-05 23:12:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3985,35 +4359,37 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (1) Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 Processing script line 300 Processing script line 400 - Processing script line 550 - Processing script line 650 - Processing script line 750 - Processing script line 950 + Processing script line 600 + Processing script line 700 + Processing script line 800 + Processing script line 900 Processing script line 1000 - Processing script line 1050 - Processing script line 1150 + Processing script line 1100 Processing script line 1200 Processing script line 1250 Processing script line 1300 - Processing script line 1350 Processing script line 1400 Processing script line 1450 Processing script line 1500 Processing script line 1550 Processing script line 1600 + Processing script line 1650 Processing script line 1700 Processing script line 1750 Processing script line 1800 Processing script line 1850 Processing script line 1900 Processing script line 1950 + Processing script line 2000 + Processing script line 2050 + Processing script line 2100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -4085,346 +4461,410 @@ (S) @LINE: 413 >>> Processed Test Case: TestPassed (I) @LINE: 421 + >>> Processing Test Case: getFPGAADC1ErrorCount_NominalPath +(S) @LINE: 425 + >>> Processed Test Case: getFPGAADC1ErrorCount_NominalPath +(I) @LINE: 433 + >>> Processing Test Case: getFPGAADC1ReadCount_NominalPath +(S) @LINE: 437 + >>> Processed Test Case: getFPGAADC1ReadCount_NominalPath +(I) @LINE: 445 + >>> Processing Test Case: getFPGAADC2ErrorCount_NominalPath +(S) @LINE: 449 + >>> Processed Test Case: getFPGAADC2ErrorCount_NominalPath +(I) @LINE: 457 + >>> Processing Test Case: getFPGAADC2ReadCount_NominalPath +(S) @LINE: 461 + >>> Processed Test Case: getFPGAADC2ReadCount_NominalPath +(I) @LINE: 469 >>> Processing Test Case: NominalPath -(S) @LINE: 431 +(S) @LINE: 479 >>> Processed Test Case: NominalPath -(I) @LINE: 439 +(I) @LINE: 487 >>> Processing Test Case: NominalPath -(S) @LINE: 449 +(S) @LINE: 497 >>> Processed Test Case: NominalPath -(I) @LINE: 457 +(I) @LINE: 505 >>> Processing Test Case: NominalPath -(S) @LINE: 464 +(S) @LINE: 512 >>> Processed Test Case: NominalPath -(I) @LINE: 472 +(I) @LINE: 520 + >>> Processing Test Case: getFPGABoardTemp_NominalPath +(S) @LINE: 524 + >>> Processed Test Case: getFPGABoardTemp_NominalPath +(I) @LINE: 532 >>> Processing Test Case: NominalPath -(S) @LINE: 475 +(S) @LINE: 535 >>> Processed Test Case: NominalPath -(I) @LINE: 483 +(I) @LINE: 543 >>> Processing Test Case: NominalPath -(S) @LINE: 486 +(S) @LINE: 546 >>> Processed Test Case: NominalPath -(I) @LINE: 494 +(I) @LINE: 554 >>> Processing Test Case: NominalPath -(S) @LINE: 497 +(S) @LINE: 557 >>> Processed Test Case: NominalPath -(I) @LINE: 505 +(I) @LINE: 565 >>> Processing Test Case: NominalPath -(S) @LINE: 508 +(S) @LINE: 568 >>> Processed Test Case: NominalPath -(I) @LINE: 516 +(I) @LINE: 576 >>> Processing Test Case: NominalPath -(S) @LINE: 519 +(S) @LINE: 579 >>> Processed Test Case: NominalPath -(I) @LINE: 527 +(I) @LINE: 587 >>> Processing Test Case: NominalPath -(S) @LINE: 530 +(S) @LINE: 590 >>> Processed Test Case: NominalPath -(I) @LINE: 538 +(I) @LINE: 598 >>> Processing Test Case: NominalPath -(S) @LINE: 541 +(S) @LINE: 601 >>> Processed Test Case: NominalPath -(I) @LINE: 549 +(I) @LINE: 609 >>> Processing Test Case: NominalPath -(S) @LINE: 552 +(S) @LINE: 612 >>> Processed Test Case: NominalPath -(I) @LINE: 560 +(I) @LINE: 620 >>> Processing Test Case: NominalPath -(S) @LINE: 563 +(S) @LINE: 623 >>> Processed Test Case: NominalPath -(I) @LINE: 571 +(I) @LINE: 631 >>> Processing Test Case: NominalPath -(S) @LINE: 574 +(S) @LINE: 634 >>> Processed Test Case: NominalPath -(I) @LINE: 582 +(I) @LINE: 642 >>> Processing Test Case: NominalPath -(S) @LINE: 585 +(S) @LINE: 645 >>> Processed Test Case: NominalPath -(I) @LINE: 593 +(I) @LINE: 653 >>> Processing Test Case: NominalPath -(S) @LINE: 596 +(S) @LINE: 656 >>> Processed Test Case: NominalPath -(I) @LINE: 604 +(I) @LINE: 664 + >>> Processing Test Case: getFPGACondSnsrInternalTemp_NominalPath +(S) @LINE: 668 + >>> Processed Test Case: getFPGACondSnsrInternalTemp_NominalPath +(I) @LINE: 676 >>> Processing Test Case: NominalPath -(S) @LINE: 607 +(S) @LINE: 679 >>> Processed Test Case: NominalPath -(I) @LINE: 615 +(I) @LINE: 687 >>> Processing Test Case: NominalPath -(S) @LINE: 618 +(S) @LINE: 690 >>> Processed Test Case: NominalPath -(I) @LINE: 626 +(I) @LINE: 698 >>> Processing Test Case: NominalPath -(S) @LINE: 629 +(S) @LINE: 701 >>> Processed Test Case: NominalPath -(I) @LINE: 637 +(I) @LINE: 709 >>> Processing Test Case: NominalPath -(S) @LINE: 640 +(S) @LINE: 712 >>> Processed Test Case: NominalPath -(I) @LINE: 648 +(I) @LINE: 720 + >>> Processing Test Case: getFPGAInletFan1TogglePeriod_NominalPath +(S) @LINE: 724 + >>> Processed Test Case: getFPGAInletFan1TogglePeriod_NominalPath +(I) @LINE: 732 + >>> Processing Test Case: getFPGAInletFan2TogglePeriod_NominalPath +(S) @LINE: 736 + >>> Processed Test Case: getFPGAInletFan2TogglePeriod_NominalPath +(I) @LINE: 744 + >>> Processing Test Case: getFPGAInletFan3TogglePeriod_NominalPath +(S) @LINE: 747 + >>> Processed Test Case: getFPGAInletFan3TogglePeriod_NominalPath +(I) @LINE: 755 >>> Processing Test Case: NominalPath -(S) @LINE: 651 +(S) @LINE: 758 >>> Processed Test Case: NominalPath -(I) @LINE: 659 +(I) @LINE: 766 >>> Processing Test Case: NominalPath -(S) @LINE: 662 +(S) @LINE: 769 >>> Processed Test Case: NominalPath -(I) @LINE: 670 +(I) @LINE: 777 >>> Processing Test Case: NominalPath -(S) @LINE: 673 +(S) @LINE: 780 >>> Processed Test Case: NominalPath -(I) @LINE: 681 +(I) @LINE: 788 >>> Processing Test Case: NominalPath -(S) @LINE: 684 +(S) @LINE: 791 >>> Processed Test Case: NominalPath -(I) @LINE: 692 +(I) @LINE: 799 + >>> Processing Test Case: getFPGALoadCellsA1B1Temp_NominalPath +(S) @LINE: 803 + >>> Processed Test Case: getFPGALoadCellsA1B1Temp_NominalPath +(I) @LINE: 811 + >>> Processing Test Case: getFPGALoadCellsA2B2Temp_NominalPath +(S) @LINE: 815 + >>> Processed Test Case: getFPGALoadCellsA2B2Temp_NominalPath +(I) @LINE: 823 + >>> Processing Test Case: getFPGAOutletFan1TogglePeriod_NominalPath +(S) @LINE: 826 + >>> Processed Test Case: getFPGAOutletFan1TogglePeriod_NominalPath +(I) @LINE: 834 + >>> Processing Test Case: getFPGAOutletFan2TogglePeriod_NominalPath +(S) @LINE: 837 + >>> Processed Test Case: getFPGAOutletFan2TogglePeriod_NominalPath +(I) @LINE: 845 + >>> Processing Test Case: getFPGAOutletFan3TogglePeriod_NominalPath +(S) @LINE: 848 + >>> Processed Test Case: getFPGAOutletFan3TogglePeriod_NominalPath +(I) @LINE: 856 >>> Processing Test Case: NominalPath -(S) @LINE: 695 +(S) @LINE: 859 >>> Processed Test Case: NominalPath -(I) @LINE: 703 +(I) @LINE: 867 >>> Processing Test Case: NominalPath -(S) @LINE: 706 +(S) @LINE: 870 >>> Processed Test Case: NominalPath -(I) @LINE: 714 +(I) @LINE: 878 >>> Processing Test Case: NominalPath -(S) @LINE: 717 +(S) @LINE: 881 >>> Processed Test Case: NominalPath -(I) @LINE: 725 +(I) @LINE: 889 >>> Processing Test Case: NominalPath -(S) @LINE: 728 +(S) @LINE: 892 >>> Processed Test Case: NominalPath -(I) @LINE: 736 +(I) @LINE: 900 >>> Processing Test Case: NominalPath -(S) @LINE: 739 +(S) @LINE: 903 >>> Processed Test Case: NominalPath -(I) @LINE: 747 +(I) @LINE: 911 >>> Processing Test Case: NominalPath -(S) @LINE: 750 +(S) @LINE: 914 >>> Processed Test Case: NominalPath -(I) @LINE: 758 +(I) @LINE: 922 >>> Processing Test Case: NominalPath -(S) @LINE: 761 +(S) @LINE: 925 >>> Processed Test Case: NominalPath -(I) @LINE: 769 +(I) @LINE: 933 >>> Processing Test Case: NominalPath -(S) @LINE: 772 +(S) @LINE: 936 >>> Processed Test Case: NominalPath -(I) @LINE: 780 +(I) @LINE: 944 + >>> Processing Test Case: getFPGATDiInternalTemp_NominalPath +(S) @LINE: 947 + >>> Processed Test Case: getFPGATDiInternalTemp_NominalPath +(I) @LINE: 955 >>> Processing Test Case: NominalPath -(S) @LINE: 783 +(S) @LINE: 958 >>> Processed Test Case: NominalPath -(I) @LINE: 791 +(I) @LINE: 966 >>> Processing Test Case: NominalPath -(S) @LINE: 794 +(S) @LINE: 969 >>> Processed Test Case: NominalPath -(I) @LINE: 802 +(I) @LINE: 977 >>> Processing Test Case: NominalPath -(S) @LINE: 805 +(S) @LINE: 980 >>> Processed Test Case: NominalPath -(I) @LINE: 813 +(I) @LINE: 988 + >>> Processing Test Case: getFPGATHDoInternalTemp_NominalPath +(S) @LINE: 992 + >>> Processed Test Case: getFPGATHDoInternalTemp_NominalPath +(I) @LINE: 1000 >>> Processing Test Case: NominalPath -(S) @LINE: 816 +(S) @LINE: 1003 >>> Processed Test Case: NominalPath -(I) @LINE: 824 +(I) @LINE: 1011 >>> Processing Test Case: NominalPath -(S) @LINE: 827 +(S) @LINE: 1014 >>> Processed Test Case: NominalPath -(I) @LINE: 835 +(I) @LINE: 1022 >>> Processing Test Case: NominalPath -(S) @LINE: 838 +(S) @LINE: 1025 >>> Processed Test Case: NominalPath -(I) @LINE: 846 +(I) @LINE: 1033 >>> Processing Test Case: NominalPath -(S) @LINE: 849 +(S) @LINE: 1036 >>> Processed Test Case: NominalPath -(I) @LINE: 857 +(I) @LINE: 1044 >>> Processing Test Case: NominalPath -(S) @LINE: 860 +(S) @LINE: 1047 >>> Processed Test Case: NominalPath -(I) @LINE: 868 +(I) @LINE: 1055 >>> Processing Test Case: NominalPath -(S) @LINE: 871 +(S) @LINE: 1058 >>> Processed Test Case: NominalPath -(I) @LINE: 879 +(I) @LINE: 1066 >>> Processing Test Case: NominalPath -(S) @LINE: 882 +(S) @LINE: 1069 >>> Processed Test Case: NominalPath -(I) @LINE: 890 +(I) @LINE: 1077 >>> Processing Test Case: NominalPath -(S) @LINE: 893 +(S) @LINE: 1080 >>> Processed Test Case: NominalPath -(I) @LINE: 901 +(I) @LINE: 1088 >>> Processing Test Case: NominalPath -(S) @LINE: 904 +(S) @LINE: 1091 >>> Processed Test Case: NominalPath -(I) @LINE: 912 +(I) @LINE: 1099 >>> Processing Test Case: NominalPath -(S) @LINE: 925 +(S) @LINE: 1112 >>> Processed Test Case: NominalPath -(I) @LINE: 933 +(I) @LINE: 1120 >>> Processing Test Case: NominalCase -(S) @LINE: 959 +(S) @LINE: 1146 >>> Processed Test Case: NominalCase -(I) @LINE: 967 +(I) @LINE: 1154 >>> Processing Test Case: BadCRC -(S) @LINE: 987 +(S) @LINE: 1174 >>> Processed Test Case: BadCRC -(I) @LINE: 993 +(I) @LINE: 1180 >>> Processing Test Case: NAKResponse -(S) @LINE: 1005 +(S) @LINE: 1192 >>> Processed Test Case: NAKResponse -(I) @LINE: 1011 +(I) @LINE: 1198 >>> Processing Test Case: NoResponseReceived -(S) @LINE: 1022 +(S) @LINE: 1209 >>> Processed Test Case: NoResponseReceived -(I) @LINE: 1028 +(I) @LINE: 1215 >>> Processing Test Case: NoWriteResponseReceived -(S) @LINE: 1039 +(S) @LINE: 1226 >>> Processed Test Case: NoWriteResponseReceived -(I) @LINE: 1045 +(I) @LINE: 1232 >>> Processing Test Case: NoWriteResponseReceived2 -(S) @LINE: 1056 +(S) @LINE: 1243 >>> Processed Test Case: NoWriteResponseReceived2 -(I) @LINE: 1062 +(I) @LINE: 1249 >>> Processing Test Case: NoWriteResponseReceived3 -(S) @LINE: 1073 +(S) @LINE: 1260 >>> Processed Test Case: NoWriteResponseReceived3 -(I) @LINE: 1079 +(I) @LINE: 1266 >>> Processing Test Case: NominalPath -(S) @LINE: 1096 +(S) @LINE: 1283 >>> Processed Test Case: NominalPath -(I) @LINE: 1104 +(I) @LINE: 1291 >>> Processing Test Case: BadCRC -(S) @LINE: 1132 +(S) @LINE: 1319 >>> Processed Test Case: BadCRC -(I) @LINE: 1138 +(I) @LINE: 1325 >>> Processing Test Case: NAKResponse -(S) @LINE: 1161 +(S) @LINE: 1348 >>> Processed Test Case: NAKResponse -(I) @LINE: 1167 +(I) @LINE: 1354 >>> Processing Test Case: NoResponseReceived -(S) @LINE: 1190 +(S) @LINE: 1377 >>> Processed Test Case: NoResponseReceived -(I) @LINE: 1196 +(I) @LINE: 1383 >>> Processing Test Case: NominalCase -(S) @LINE: 1221 +(S) @LINE: 1408 >>> Processed Test Case: NominalCase -(I) @LINE: 1229 +(I) @LINE: 1416 >>> Processing Test Case: NominalPath -(S) @LINE: 1270 +(S) @LINE: 1457 >>> Processed Test Case: NominalPath -(I) @LINE: 1278 +(I) @LINE: 1465 >>> Processing Test Case: NominalPath -(S) @LINE: 1454 +(S) @LINE: 1641 >>> Processed Test Case: NominalPath -(I) @LINE: 1462 +(I) @LINE: 1649 >>> Processing Test Case: NominalPath -(S) @LINE: 1477 +(S) @LINE: 1664 >>> Processed Test Case: NominalPath -(I) @LINE: 1485 +(I) @LINE: 1672 >>> Processing Test Case: NominalPath -(S) @LINE: 1489 +(S) @LINE: 1676 >>> Processed Test Case: NominalPath -(I) @LINE: 1497 +(I) @LINE: 1684 >>> Processing Test Case: NominalPath -(S) @LINE: 1501 +(S) @LINE: 1688 >>> Processed Test Case: NominalPath -(I) @LINE: 1509 +(I) @LINE: 1696 >>> Processing Test Case: NominalPath -(S) @LINE: 1513 +(S) @LINE: 1700 >>> Processed Test Case: NominalPath -(I) @LINE: 1521 +(I) @LINE: 1708 >>> Processing Test Case: NominalPath -(S) @LINE: 1525 +(S) @LINE: 1712 >>> Processed Test Case: NominalPath -(I) @LINE: 1533 +(I) @LINE: 1720 >>> Processing Test Case: NominalPath -(S) @LINE: 1539 +(S) @LINE: 1726 >>> Processed Test Case: NominalPath -(I) @LINE: 1547 +(I) @LINE: 1734 >>> Processing Test Case: NominalPath -(S) @LINE: 1555 +(S) @LINE: 1742 >>> Processed Test Case: NominalPath -(I) @LINE: 1563 +(I) @LINE: 1750 >>> Processing Test Case: NominalPath -(S) @LINE: 1567 +(S) @LINE: 1754 >>> Processed Test Case: NominalPath -(I) @LINE: 1575 +(I) @LINE: 1762 >>> Processing Test Case: NominalPath -(S) @LINE: 1579 +(S) @LINE: 1766 >>> Processed Test Case: NominalPath -(I) @LINE: 1587 +(I) @LINE: 1774 >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1591 +(S) @LINE: 1778 >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1597 +(I) @LINE: 1784 >>> Processing Test Case: NominalPath -(S) @LINE: 1601 +(S) @LINE: 1788 >>> Processed Test Case: NominalPath -(I) @LINE: 1609 +(I) @LINE: 1796 >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1613 +(S) @LINE: 1800 >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1619 +(I) @LINE: 1806 >>> Processing Test Case: NominalPath -(S) @LINE: 1623 +(S) @LINE: 1810 >>> Processed Test Case: NominalPath -(I) @LINE: 1631 +(I) @LINE: 1818 >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1635 +(S) @LINE: 1822 >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1641 +(I) @LINE: 1828 >>> Processing Test Case: NominalPath -(S) @LINE: 1645 +(S) @LINE: 1832 >>> Processed Test Case: NominalPath -(I) @LINE: 1653 +(I) @LINE: 1840 >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1657 +(S) @LINE: 1844 >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1663 +(I) @LINE: 1850 >>> Processing Test Case: NominalPath -(S) @LINE: 1667 +(S) @LINE: 1854 >>> Processed Test Case: NominalPath -(I) @LINE: 1675 +(I) @LINE: 1862 >>> Processing Test Case: BulkWriteAndReadInProgressAfterWrite -(S) @LINE: 1692 +(S) @LINE: 1879 >>> Processed Test Case: BulkWriteAndReadInProgressAfterWrite -(I) @LINE: 1698 +(I) @LINE: 1885 >>> Processing Test Case: NothingInProgress -(S) @LINE: 1713 +(S) @LINE: 1900 >>> Processed Test Case: NothingInProgress -(I) @LINE: 1719 +(I) @LINE: 1906 >>> Processing Test Case: ReadCmdInProgress -(S) @LINE: 1734 +(S) @LINE: 1921 >>> Processed Test Case: ReadCmdInProgress -(I) @LINE: 1740 +(I) @LINE: 1927 >>> Processing Test Case: WriteCmdInProgress -(S) @LINE: 1755 +(S) @LINE: 1942 >>> Processed Test Case: WriteCmdInProgress -(I) @LINE: 1763 +(I) @LINE: 1950 >>> Processing Test Case: NominalPath -(S) @LINE: 1778 +(S) @LINE: 1965 >>> Processed Test Case: NominalPath -(I) @LINE: 1786 +(I) @LINE: 1973 >>> Processing Test Case: NominalPath -(S) @LINE: 1824 +(S) @LINE: 2011 >>> Processed Test Case: NominalPath -(I) @LINE: 1832 +(I) @LINE: 2019 >>> Processing Test Case: NominalPath -(S) @LINE: 1870 +(S) @LINE: 2057 >>> Processed Test Case: NominalPath -(I) @LINE: 1878 +(I) @LINE: 2065 >>> Processing Test Case: NominalPath -(S) @LINE: 1916 +(S) @LINE: 2103 >>> Processed Test Case: NominalPath -(I) @LINE: 1924 +(I) @LINE: 2111 >>> Processing Test Case: NominalPath -(S) @LINE: 1962 +(S) @LINE: 2149 >>> Processed Test Case: NominalPath -(S) @LINE: 1962 +(S) @LINE: 2149 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 16:54:36 +TIME: 2020-12-05 23:12:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4439,7 +4879,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 16:54:37 +TIME: 2020-12-05 23:12:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5220,10 +5660,138 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all FPGA.getFPGAInletFan1TogglePeriod test cases + Running: getFPGAInletFan1TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAInletFan2TogglePeriod test cases + Running: getFPGAInletFan2TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAInletFan3TogglePeriod test cases + Running: getFPGAInletFan3TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAOutletFan1TogglePeriod test cases + Running: getFPGAOutletFan1TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAOutletFan2TogglePeriod test cases + Running: getFPGAOutletFan2TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAOutletFan3TogglePeriod test cases + Running: getFPGAOutletFan3TogglePeriod_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGABoardTemp test cases + Running: getFPGABoardTemp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGALoadCellsA1B1Temp test cases + Running: getFPGALoadCellsA1B1Temp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGALoadCellsA2B2Temp test cases + Running: getFPGALoadCellsA2B2Temp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGATHDoInternalTemp test cases + Running: getFPGATHDoInternalTemp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGATDiInternalTemp test cases + Running: getFPGATDiInternalTemp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGACondSnsrInternalTemp test cases + Running: getFPGACondSnsrInternalTemp_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAADC1ReadCount test cases + Running: getFPGAADC1ReadCount_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAADC1ErrorCount test cases + Running: getFPGAADC1ErrorCount_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAADC2ReadCount test cases + Running: getFPGAADC2ReadCount_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all FPGA.getFPGAADC2ErrorCount test cases + Running: getFPGAADC2ErrorCount_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA/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-11-23 16:54:40 +TIME: 2020-12-05 23:13:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG @@ -5257,9 +5825,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:44 +TIME: 2020-12-05 23:13:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5274,9 +5842,6 @@ 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 250 @@ -5507,24 +6072,9 @@ >>> Processed Test Case: testSetHeatersPublishIntervalOverride_Log_Not_Activated (S) @LINE: 683 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:45 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/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 HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:46 +TIME: 2020-12-05 23:13:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5940,7 +6490,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:48 +TIME: 2020-12-05 23:13:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG @@ -5973,9 +6523,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:51 +TIME: 2020-12-05 23:13:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5990,9 +6540,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -6034,24 +6581,9 @@ >>> 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-11-23 16:54:52 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/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 INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:53 +TIME: 2020-12-05 23:13:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6116,7 +6648,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:54 +TIME: 2020-12-05 23:13:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG @@ -6150,9 +6682,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:57 +TIME: 2020-12-05 23:13:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6167,9 +6699,6 @@ 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 300 @@ -6291,24 +6820,9 @@ >>> 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-11-23 16:54:58 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/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 INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:59 +TIME: 2020-12-05 23:13:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6516,7 +7030,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:00 +TIME: 2020-12-05 23:13: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/2980953925/CCAST_.CFG @@ -6537,7 +7051,7 @@ File: TaskPriority.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ - File: Accel.c (using cached data) + File: Accel.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -6596,9 +7110,9 @@ 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/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:07 +TIME: 2020-12-05 23:13:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6613,9 +7127,6 @@ 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 @@ -6673,24 +7184,9 @@ >>> Processed Test Case: initAccel (S) @LINE: 338 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55: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/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/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:09 +TIME: 2020-12-05 23:13:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6720,7 +7216,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:10 +TIME: 2020-12-05 23:13:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6816,7 +7312,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:11 +TIME: 2020-12-05 23:13: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/3157600406/CCAST_.CFG @@ -6828,10 +7324,10 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: AlarmMgmt.c (using cached data) + File: AlarmMgmt.c File: SystemComm.c (using cached data) File: SystemCommMessages.c (using cached data) - File: WatchdogMgmt.c (using cached data) + File: WatchdogMgmt.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -6890,9 +7386,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:17 +TIME: 2020-12-05 23:13:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6907,9 +7403,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -6943,24 +7436,9 @@ >>> Processed Test Case: initAlarmMgmt (S) @LINE: 136 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55: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/3157600406/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_ALARMMGMT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:19 +TIME: 2020-12-05 23:13:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6990,7 +7468,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:20 +TIME: 2020-12-05 23:13:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7049,7 +7527,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:21 +TIME: 2020-12-05 23:13: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/2591524098/CCAST_.CFG @@ -7058,11 +7536,11 @@ Creating the Environment Directory Creating Environment "INT_COMM" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Drivers/ - File: Comm.c (using cached data) + File: Comm.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: FPGA.c (using cached data) - File: Interrupts.c (using cached data) + File: FPGA.c + File: Interrupts.c File: SystemComm.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -7115,9 +7593,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:26 +TIME: 2020-12-05 23:13:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7132,9 +7610,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -7177,24 +7652,9 @@ >>> Processed Test Case: signalCANXmitsInitiated (S) @LINE: 135 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55: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/2591524098/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_COMM tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:28 +TIME: 2020-12-05 23:13:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7222,7 +7682,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:29 +TIME: 2020-12-05 23:13:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7301,7 +7761,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:30 +TIME: 2020-12-05 23:13: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/925127052/CCAST_.CFG @@ -7375,9 +7835,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:36 +TIME: 2020-12-05 23:13:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7392,9 +7852,6 @@ 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 Script Creation Completed -------------------------------------------------------------------------------- @@ -7416,24 +7873,9 @@ >>> Processed Test Case: initCommBuffers (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-11-23 16:55: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/925127052/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_COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:39 +TIME: 2020-12-05 23:13:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7469,7 +7911,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:40 +TIME: 2020-12-05 23:13:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/CCAST_.CFG @@ -7481,10 +7923,10 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: ConcentratePumps.c (using cached data) + File: ConcentratePumps.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeFill.c (using cached data) + File: ModeFill.c File: ModeStandby.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ @@ -7558,9 +8000,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:47 +TIME: 2020-12-05 23:14:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7575,9 +8017,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -7643,24 +8082,9 @@ >>> Processed Test Case: initConcentratePump_NominalPath (S) @LINE: 328 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55: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/87548950/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_CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:49 +TIME: 2020-12-05 23:14:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7773,7 +8197,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 16:55:51 +TIME: 2020-12-05 23:14: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/3065853561/CCAST_.CFG @@ -7785,10 +8209,10 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: ConductivitySensors.c (using cached data) + File: ConductivitySensors.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeDrain.c (using cached data) + File: ModeDrain.c File: ModeFill.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ @@ -7863,9 +8287,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 16:55:58 +TIME: 2020-12-05 23:14:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7880,9 +8304,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -7931,24 +8352,9 @@ >>> Processed Test Case: initSoftware_initConductivitySensors (S) @LINE: 254 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 16:56: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/3065853561/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_CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 16:56:00 +TIME: 2020-12-05 23:14:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8029,7 +8435,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:02 +TIME: 2020-12-05 23:14:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG @@ -8041,7 +8447,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Drivers/ - File: CPLD.c (using cached data) + File: CPLD.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: WatchdogMgmt.c (using cached data) @@ -8088,9 +8494,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:06 +TIME: 2020-12-05 23:14:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8105,9 +8511,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -8129,24 +8532,9 @@ >>> Processed Test Case: initCPLD (S) @LINE: 55 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56: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/3989498026/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_CPLD tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:08 +TIME: 2020-12-05 23:14:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8172,7 +8560,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:09 +TIME: 2020-12-05 23:14:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8208,7 +8596,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56:10 +TIME: 2020-12-05 23:14: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/194968077/CCAST_.CFG @@ -8220,7 +8608,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: DrainPump.c (using cached data) + File: DrainPump.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) @@ -8298,9 +8686,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56:17 +TIME: 2020-12-05 23:14:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8315,9 +8703,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -8364,24 +8749,9 @@ >>> Processed Test Case: initDrainPump (S) @LINE: 214 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56: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/194968077/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_DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56:19 +TIME: 2020-12-05 23:14:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8413,7 +8783,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56:20 +TIME: 2020-12-05 23:14:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8492,9 +8862,258 @@ 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/1981101722/INT_FANS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:14: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/1981101722/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_FANS" + Calling QuickParse Utility for /home/fw/workspace_dg/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/ + File: Fans.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace_dg/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/ + File: SystemCommMessages.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + File: TaskGeneral.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 Fans + Parsing ModeInitPOST + Parsing SystemCommMessages + Parsing TaskGeneral + Parsing sys_main + Unit 9 (stub-by-function): Fans + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 11 (stub-by-function): ModeInitPOST + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 12 (stub-by-function): SystemCommMessages + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 13 (stub-by-function): TaskGeneral + 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 + Inserting Environment User Code + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Function Coverage + Instrumenting file Fans + Compiling file Fans + Instrumenting file ModeInitPOST + Compiling file ModeInitPOST + Instrumenting file SystemCommMessages + Compiling file SystemCommMessages + Instrumenting file TaskGeneral + Compiling file TaskGeneral + 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_FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:14: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/1981101722/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/1981101722/INT_FANS/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 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: execInitAndPOSTMode_Self_Test_Check_RPM +(S) @LINE: 32 + >>> Processed Test Case: execInitAndPOSTMode_Self_Test_Check_RPM +(I) @LINE: 38 + >>> Processing Test Case: execInitAndPOSTMode_Self_Test_Start +(S) @LINE: 44 + >>> Processed Test Case: execInitAndPOSTMode_Self_Test_Start +(I) @LINE: 54 + >>> Processing Test Case: handleTestFansDataPublishIntervalOverride_Override +(S) @LINE: 71 + >>> Processed Test Case: handleTestFansDataPublishIntervalOverride_Override +(I) @LINE: 77 + >>> Processing Test Case: handleTestFansDataPublishIntervalOverride_Reset +(S) @LINE: 95 + >>> Processed Test Case: handleTestFansDataPublishIntervalOverride_Reset +(I) @LINE: 105 + >>> Processing Test Case: taskGeneral_Exec_Fans_Run +(S) @LINE: 114 + >>> Processed Test Case: taskGeneral_Exec_Fans_Run +(I) @LINE: 120 + >>> Processing Test Case: taskGeneral_Exec_Fans_Wait_For_POST +(S) @LINE: 126 + >>> Processed Test Case: taskGeneral_Exec_Fans_Wait_For_POST +(I) @LINE: 136 + >>> Processing Test Case: initSoftware_Init_Fans +(S) @LINE: 141 + >>> Processed Test Case: initSoftware_Init_Fans +(S) @LINE: 141 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:14: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/1981101722/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_FANS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:14: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/1981101722/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/INT_FANS/INT_FANS_cba.cvr +(S) @LINE: 45 + >>> Source file matched Fans.c +(S) @LINE: 67 + >>> Source file matched ModeInitPOST.c +(S) @LINE: 89 + >>> Source file matched SystemCommMessages.c +(S) @LINE: 111 + >>> Source file matched TaskGeneral.c +(S) @LINE: 133 + >>> Source file matched sys_main.c +(S) @LINE: 152 + >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:14: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/1981101722/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all ModeInitPOST.execInitAndPOSTMode test cases + Running: execInitAndPOSTMode_Self_Test_Check_RPM + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execInitAndPOSTMode_Self_Test_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestFansDataPublishIntervalOverride test cases + Running: handleTestFansDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestFansDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all TaskGeneral.taskGeneral test cases + Running: taskGeneral_Exec_Fans_Run + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: taskGeneral_Exec_Fans_Wait_For_POST + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all sys_main.initSoftware test cases + Running: initSoftware_Init_Fans + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS/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/1233794524/INT_FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:21 +TIME: 2020-12-05 23:14: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/1233794524/CCAST_.CFG @@ -8509,10 +9128,11 @@ File: ConcentratePumps.c (using cached data) File: ConductivitySensors.c (using cached data) File: DrainPump.c (using cached data) - File: LoadCell.c (using cached data) - File: ROPump.c (using cached data) + File: Fans.c (using cached data) + File: LoadCell.c + File: ROPump.c File: TemperatureSensors.c (using cached data) - File: Valves.c (using cached data) + File: Valves.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) @@ -8536,6 +9156,7 @@ Parsing ConcentratePumps Parsing ConductivitySensors Parsing DrainPump + Parsing Fans Parsing LoadCell Parsing ROPump Parsing TemperatureSensors @@ -8562,61 +9183,66 @@ Initializing parse data Generating harness code Saving unit data - Unit 13 (stub-by-function): LoadCell + Unit 13 (stub-by-function): Fans Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 14 (stub-by-function): ROPump + Unit 14 (stub-by-function): LoadCell Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 15 (stub-by-function): TemperatureSensors + Unit 15 (stub-by-function): ROPump Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 16 (stub-by-function): Valves + Unit 16 (stub-by-function): TemperatureSensors Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 17 (stub-by-function): ModeInitPOST + Unit 17 (stub-by-function): Valves Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 18 (stub-by-function): FPGA + Unit 18 (stub-by-function): ModeInitPOST Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 19 (stub-by-function): Interrupts + Unit 19 (stub-by-function): FPGA Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 20 (stub-by-function): SystemCommMessages + Unit 20 (stub-by-function): Interrupts Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 21 (stub-by-function): TaskPriority + Unit 21 (stub-by-function): SystemCommMessages Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 22 (stub-by-function): Accel + Unit 22 (stub-by-function): TaskPriority Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 23 (stub-by-function): sys_main + Unit 23 (stub-by-function): Accel Loading stored IL Initializing parse data Generating harness code Saving unit data + Unit 24 (stub-by-function): sys_main + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data Inserting Environment User Code Compiling file VECTORCAST_IO Compiling file User Defined Globals @@ -8631,6 +9257,8 @@ Compiling file ConductivitySensors Instrumenting file DrainPump Compiling file DrainPump + Instrumenting file Fans + Compiling file Fans Instrumenting file LoadCell Compiling file LoadCell Instrumenting file ROPump @@ -8660,7 +9288,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:35 +TIME: 2020-12-05 23:15:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8676,7 +9304,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (1) Translated 0 script lines Processing script line 50 Processing script line 150 @@ -8708,54 +9336,58 @@ (S) @LINE: 99 >>> Processed Test Case: setFPGADrainPumpSpeed (I) @LINE: 109 + >>> Processing Test Case: execFans.001 +(S) @LINE: 114 + >>> Processed Test Case: execFans.001 +(I) @LINE: 124 >>> Processing Test Case: signalFPGAReceiptCompleted -(I) @LINE: 112 +(I) @LINE: 127 >>> 'DMA_CH0' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 114 +(S) @LINE: 129 >>> Processed Test Case: signalFPGAReceiptCompleted -(I) @LINE: 120 +(I) @LINE: 135 >>> Processing Test Case: signalFPGATransmitCompleted -(I) @LINE: 123 +(I) @LINE: 138 >>> 'DMA_CH2' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 125 +(S) @LINE: 140 >>> Processed Test Case: signalFPGATransmitCompleted -(I) @LINE: 135 +(I) @LINE: 150 >>> Processing Test Case: execFPGATest -(S) @LINE: 138 +(S) @LINE: 153 >>> Processed Test Case: execFPGATest -(I) @LINE: 148 +(I) @LINE: 163 >>> Processing Test Case: getFPGAVersions -(S) @LINE: 160 +(S) @LINE: 175 >>> Processed Test Case: getFPGAVersions -(I) @LINE: 170 +(I) @LINE: 185 >>> Processing Test Case: execFPGAIn -(S) @LINE: 175 +(S) @LINE: 190 >>> Processed Test Case: execFPGAIn -(I) @LINE: 181 +(I) @LINE: 196 >>> Processing Test Case: handleFPGAReceiveAllSensorsState -(S) @LINE: 187 +(S) @LINE: 202 >>> Processed Test Case: handleFPGAReceiveAllSensorsState -(I) @LINE: 193 +(I) @LINE: 208 >>> Processing Test Case: handleFPGAReceiveHeaderState -(S) @LINE: 209 +(S) @LINE: 224 >>> Processed Test Case: handleFPGAReceiveHeaderState -(I) @LINE: 219 +(I) @LINE: 234 >>> Processing Test Case: getFPGACD1Temp_CD2Temp -(S) @LINE: 231 +(S) @LINE: 248 >>> Processed Test Case: getFPGACD1Temp_CD2Temp -(I) @LINE: 241 +(I) @LINE: 258 >>> Processing Test Case: get_setFPGAValveStates -(S) @LINE: 246 +(S) @LINE: 263 >>> Processed Test Case: get_setFPGAValveStates -(I) @LINE: 256 +(I) @LINE: 273 >>> Processing Test Case: initFPGA -(S) @LINE: 262 +(S) @LINE: 279 >>> Processed Test Case: initFPGA -(S) @LINE: 262 +(S) @LINE: 279 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:37 +TIME: 2020-12-05 23:15:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8770,7 +9402,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:38 +TIME: 2020-12-05 23:15:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8811,6 +9443,14 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Fans.execFans test cases + Running: execFans.001 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all TemperatureSensors.handleExecGetADCValues test cases Running: getFPGACD1Temp_CD2Temp Preparing Test Data @@ -8899,7 +9539,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56:39 +TIME: 2020-12-05 23:15:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG @@ -8917,7 +9557,7 @@ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: Reservoirs.c (using cached data) + File: Reservoirs.c File: SystemCommMessages.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ @@ -8998,9 +9638,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56:47 +TIME: 2020-12-05 23:15:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9015,9 +9655,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -9096,24 +9733,9 @@ >>> Processed Test Case: initSoftware_initHeaters (S) @LINE: 309 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56: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/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-11-23 16:56:49 +TIME: 2020-12-05 23:15:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9245,7 +9867,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:51 +TIME: 2020-12-05 23:15: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/1018941988/CCAST_.CFG @@ -9258,10 +9880,10 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: Pressures.c (using cached data) + File: Pressures.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Drivers/ - File: InternalADC.c (using cached data) + File: InternalADC.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) @@ -9324,9 +9946,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:57 +TIME: 2020-12-05 23:15:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9341,9 +9963,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -9369,24 +9988,9 @@ >>> Processed Test Case: initInternalADC (S) @LINE: 85 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56: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/1018941988/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_INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:59 +TIME: 2020-12-05 23:15:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9430,7 +10034,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:00 +TIME: 2020-12-05 23:15:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/CCAST_.CFG @@ -9440,7 +10044,7 @@ Creating Environment "INT_INTERRUPTS" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ File: can.c (using cached data) - File: rti.c (using cached data) + File: rti.c File: sci.c (using cached data) File: sys_dma.c (using cached data) File: sys_main.c (using cached data) @@ -9453,10 +10057,10 @@ File: Interrupts.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ - File: TaskTimer.c (using cached data) + File: TaskTimer.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ - File: Timers.c (using cached data) + File: Timers.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -9556,9 +10160,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:10 +TIME: 2020-12-05 23:15:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9573,9 +10177,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -9610,24 +10211,9 @@ >>> Processed Test Case: initInterrupts (S) @LINE: 108 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57: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/1819084493/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_INTERRUPTS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:12 +TIME: 2020-12-05 23:15:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9667,7 +10253,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:13 +TIME: 2020-12-05 23:15:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9727,7 +10313,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:14 +TIME: 2020-12-05 23:15: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/1672699515/CCAST_.CFG @@ -9816,9 +10402,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:21 +TIME: 2020-12-05 23:16:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9833,9 +10419,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -9879,24 +10462,9 @@ >>> Processed Test Case: initLoadCell (S) @LINE: 216 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57: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/1672699515/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_LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:24 +TIME: 2020-12-05 23:16:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9970,7 +10538,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:25 +TIME: 2020-12-05 23:16:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/CCAST_.CFG @@ -9979,8 +10547,8 @@ Creating the Environment Directory Creating Environment "INT_MODECHEMICALDISINFECT" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeChemicalDisinfect.c (using cached data) - File: OperationModes.c (using cached data) + File: ModeChemicalDisinfect.c + File: OperationModes.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -10015,9 +10583,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:28 +TIME: 2020-12-05 23:16:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10032,9 +10600,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10051,24 +10616,9 @@ >>> Processed Test Case: initChemicalDisinfectMode (S) @LINE: 39 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57: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/777223179/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_MODECHEMICALDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:30 +TIME: 2020-12-05 23:16:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10092,7 +10642,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:30 +TIME: 2020-12-05 23:16:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10120,7 +10670,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:31 +TIME: 2020-12-05 23:16: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/9217169/CCAST_.CFG @@ -10165,9 +10715,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:35 +TIME: 2020-12-05 23:16:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10182,9 +10732,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -10210,24 +10757,9 @@ >>> 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-11-23 16:57: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 - 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_MODEDRAIN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:36 +TIME: 2020-12-05 23:16:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10251,7 +10783,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:37 +TIME: 2020-12-05 23:16:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10294,7 +10826,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:38 +TIME: 2020-12-05 23:16:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/CCAST_.CFG @@ -10303,7 +10835,7 @@ Creating the Environment Directory Creating Environment "INT_MODEFAULT" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeFault.c (using cached data) + File: ModeFault.c File: OperationModes.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -10339,9 +10871,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:41 +TIME: 2020-12-05 23:16:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10356,9 +10888,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10375,24 +10904,9 @@ >>> Processed Test Case: initFaultMode (S) @LINE: 39 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57: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/2748975379/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_MODEFAULT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:43 +TIME: 2020-12-05 23:16:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10416,7 +10930,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:43 +TIME: 2020-12-05 23:16:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10444,7 +10958,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 16:57:44 +TIME: 2020-12-05 23:16:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG @@ -10489,9 +11003,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 16:57:48 +TIME: 2020-12-05 23:16:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10506,9 +11020,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -10547,7 +11058,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 16:57:49 +TIME: 2020-12-05 23:16:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10604,7 +11115,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:50 +TIME: 2020-12-05 23:16: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/2297135903/CCAST_.CFG @@ -10613,7 +11124,7 @@ Creating the Environment Directory Creating Environment "INT_MODEFLUSH" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeFlush.c (using cached data) + File: ModeFlush.c File: OperationModes.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -10649,9 +11160,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:53 +TIME: 2020-12-05 23:16:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10666,9 +11177,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10685,24 +11193,9 @@ >>> Processed Test Case: initFlushMode (S) @LINE: 39 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57: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/2297135903/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_MODEFLUSH tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:55 +TIME: 2020-12-05 23:16:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10726,7 +11219,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:55 +TIME: 2020-12-05 23:16:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10754,7 +11247,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:57:56 +TIME: 2020-12-05 23:16:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/CCAST_.CFG @@ -10763,7 +11256,7 @@ Creating the Environment Directory Creating Environment "INT_MODEHEATDISINFECT" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeHeatDisinfect.c (using cached data) + File: ModeHeatDisinfect.c File: OperationModes.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -10799,9 +11292,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:00 +TIME: 2020-12-05 23:16:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10816,9 +11309,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10835,24 +11325,9 @@ >>> Processed Test Case: initHeatDisinfectMode (S) @LINE: 39 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58: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/1843208983/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_MODEHEATDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:01 +TIME: 2020-12-05 23:16:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10876,7 +11351,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:02 +TIME: 2020-12-05 23:16:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10904,7 +11379,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:03 +TIME: 2020-12-05 23:16: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/1413348909/CCAST_.CFG @@ -10949,9 +11424,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:06 +TIME: 2020-12-05 23:16:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10966,9 +11441,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10985,24 +11457,9 @@ >>> Processed Test Case: initInitAndPOSTMode (S) @LINE: 44 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58: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/1413348909/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_MODEINITPOST tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:08 +TIME: 2020-12-05 23:16:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11026,7 +11483,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:09 +TIME: 2020-12-05 23:16:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11054,7 +11511,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:09 +TIME: 2020-12-05 23:16:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG @@ -11119,9 +11576,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:15 +TIME: 2020-12-05 23:16:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11136,9 +11593,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -11181,24 +11635,9 @@ >>> 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-11-23 16:58: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/1236077553/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_MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:17 +TIME: 2020-12-05 23:16:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11271,7 +11710,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:18 +TIME: 2020-12-05 23:16:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/CCAST_.CFG @@ -11280,7 +11719,7 @@ Creating the Environment Directory Creating Environment "INT_MODESERVICE" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeService.c (using cached data) + File: ModeService.c File: OperationModes.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -11316,9 +11755,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:21 +TIME: 2020-12-05 23:16:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11333,9 +11772,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -11352,24 +11788,9 @@ >>> Processed Test Case: initServiceMode (S) @LINE: 39 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58: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/3003468669/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_MODESERVICE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:23 +TIME: 2020-12-05 23:16:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11393,7 +11814,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:23 +TIME: 2020-12-05 23:16:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11421,7 +11842,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:24 +TIME: 2020-12-05 23:16: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/104031509/CCAST_.CFG @@ -11430,7 +11851,7 @@ Creating the Environment Directory Creating Environment "INT_MODESOLO" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeSolo.c (using cached data) + File: ModeSolo.c File: OperationModes.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals @@ -11466,9 +11887,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:28 +TIME: 2020-12-05 23:17:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11483,9 +11904,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -11507,24 +11925,9 @@ >>> Processed Test Case: initSoloMode (S) @LINE: 53 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58: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/104031509/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_MODESOLO tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:29 +TIME: 2020-12-05 23:17:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11548,7 +11951,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:30 +TIME: 2020-12-05 23:17:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11583,7 +11986,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:31 +TIME: 2020-12-05 23:17:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG @@ -11639,9 +12042,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:35 +TIME: 2020-12-05 23:17:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11656,9 +12059,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -11697,24 +12097,9 @@ >>> 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-11-23 16:58: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/3433100860/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_MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:37 +TIME: 2020-12-05 23:17:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11740,7 +12125,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:38 +TIME: 2020-12-05 23:17:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11806,7 +12191,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:39 +TIME: 2020-12-05 23:17: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/3336905608/CCAST_.CFG @@ -11880,9 +12265,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:45 +TIME: 2020-12-05 23:17:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11897,9 +12282,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -11926,24 +12308,9 @@ >>> 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-11-23 16:58: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/3336905608/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_MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:47 +TIME: 2020-12-05 23:17:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11987,7 +12354,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:48 +TIME: 2020-12-05 23:17: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 @@ -12065,9 +12432,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:55 +TIME: 2020-12-05 23:17:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12082,9 +12449,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -12110,24 +12474,9 @@ >>> 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-11-23 16:58: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/553544110/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_OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:57 +TIME: 2020-12-05 23:17:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12171,7 +12520,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:58:58 +TIME: 2020-12-05 23:17:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/CCAST_.CFG @@ -12183,7 +12532,7 @@ File: TemperatureSensors.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ - File: PersistentAlarm.c (using cached data) + File: PersistentAlarm.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -12219,9 +12568,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59:01 +TIME: 2020-12-05 23:17:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12236,9 +12585,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -12259,24 +12605,9 @@ >>> Processed Test Case: initTemperatureSensors_Init_PersistentAlarm (S) @LINE: 57 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59: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/2668912522/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_PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59:03 +TIME: 2020-12-05 23:17:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12311,7 +12642,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 16:59:04 +TIME: 2020-12-05 23:17: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/996327209/CCAST_.CFG @@ -12323,7 +12654,7 @@ File: Heaters.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: PIControllers.c (using cached data) + File: PIControllers.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -12358,9 +12689,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 16:59:08 +TIME: 2020-12-05 23:17:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12375,9 +12706,6 @@ 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 Script Creation Completed -------------------------------------------------------------------------------- @@ -12411,7 +12739,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 16:59:09 +TIME: 2020-12-05 23:17:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12435,7 +12763,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 16:59:10 +TIME: 2020-12-05 23:17:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12471,7 +12799,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 16:59:11 +TIME: 2020-12-05 23:17:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG @@ -12578,9 +12906,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 16:59:19 +TIME: 2020-12-05 23:17:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12595,9 +12923,6 @@ 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 150 Processing script line 200 Script Creation Completed @@ -12660,24 +12985,9 @@ >>> Processed Test Case: initPressures (S) @LINE: 259 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 16:59: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/1468105384/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_PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 16:59:22 +TIME: 2020-12-05 23:17:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12788,7 +13098,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:23 +TIME: 2020-12-05 23:17: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/3023750484/CCAST_.CFG @@ -12904,9 +13214,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:32 +TIME: 2020-12-05 23:18:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12921,9 +13231,6 @@ 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 Script Creation Completed @@ -12974,24 +13281,9 @@ >>> Processed Test Case: initReservoirs (S) @LINE: 212 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59: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/3023750484/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_RESERVOIRS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:35 +TIME: 2020-12-05 23:18:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13029,7 +13321,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:35 +TIME: 2020-12-05 23:18:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13120,7 +13412,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 16:59:36 +TIME: 2020-12-05 23:18:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG @@ -13228,9 +13520,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 16:59:45 +TIME: 2020-12-05 23:18:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13245,9 +13537,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -13316,24 +13605,9 @@ >>> Processed Test Case: initROPump (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-11-23 16:59: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/3092074925/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_ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 16:59:48 +TIME: 2020-12-05 23:18:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13369,7 +13643,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 16:59:48 +TIME: 2020-12-05 23:18:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13489,7 +13763,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 16:59:50 +TIME: 2020-12-05 23:18:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG @@ -13508,8 +13782,8 @@ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ - File: NVDataMgmt.c (using cached data) - File: RTC.c (using cached data) + File: NVDataMgmt.c + File: RTC.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -13577,9 +13851,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 16:59:57 +TIME: 2020-12-05 23:18:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13594,9 +13868,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -13647,24 +13918,9 @@ >>> Processed Test Case: initRTC (S) @LINE: 192 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 16:59: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/2486627120/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_RTC tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 17:00:00 +TIME: 2020-12-05 23:18:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13696,7 +13952,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 17:00:00 +TIME: 2020-12-05 23:18:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13783,7 +14039,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:02 +TIME: 2020-12-05 23:18: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/690517471/CCAST_.CFG @@ -13795,7 +14051,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Drivers/ - File: SafetyShutdown.c (using cached data) + File: SafetyShutdown.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) @@ -13842,9 +14098,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:07 +TIME: 2020-12-05 23:18:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13859,9 +14115,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -13883,24 +14136,9 @@ >>> Processed Test Case: initSafetyShutdown (S) @LINE: 81 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00: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/690517471/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_SAFETYSHUTDOWN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:09 +TIME: 2020-12-05 23:18:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13926,7 +14164,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:09 +TIME: 2020-12-05 23:18:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13961,7 +14199,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:00:10 +TIME: 2020-12-05 23:18:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/CCAST_.CFG @@ -14069,7 +14307,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:00:19 +TIME: 2020-12-05 23:18:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14136,7 +14374,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:00:21 +TIME: 2020-12-05 23:18:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14151,7 +14389,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:00:21 +TIME: 2020-12-05 23:18:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14231,7 +14469,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:00:23 +TIME: 2020-12-05 23:19: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/2381647150/CCAST_.CFG @@ -14308,7 +14546,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:00:29 +TIME: 2020-12-05 23:19:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14334,12 +14572,15 @@ Processing script line 350 Processing script line 400 Processing script line 450 + Processing script line 500 + Processing script line 550 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 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -14383,170 +14624,181 @@ (S) @LINE: 212 >>> Processed Test Case: A007_handleTestPressureDataBroadcastIntervalOverrideRequest (I) @LINE: 218 - >>> Processing Test Case: A008_handleTestROPumpSetPointOverrideRequest -(S) @LINE: 233 - >>> Processed Test Case: A008_handleTestROPumpSetPointOverrideRequest -(I) @LINE: 239 >>> Processing Test Case: A009_handleTestROMeasuredFlowOverrideRequest -(S) @LINE: 254 +(S) @LINE: 233 >>> Processed Test Case: A009_handleTestROMeasuredFlowOverrideRequest -(I) @LINE: 260 +(I) @LINE: 239 >>> Processing Test Case: A00A_handleTestROPumpDataBroadcastIntervalOverrideRequest -(S) @LINE: 275 +(S) @LINE: 254 >>> Processed Test Case: A00A_handleTestROPumpDataBroadcastIntervalOverrideRequest -(I) @LINE: 281 +(I) @LINE: 260 >>> Processing Test Case: A00B_handleTestDrainPumpSetPointOverrideRequest -(S) @LINE: 296 +(S) @LINE: 275 >>> Processed Test Case: A00B_handleTestDrainPumpSetPointOverrideRequest -(I) @LINE: 302 +(I) @LINE: 281 >>> Processing Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(S) @LINE: 317 +(S) @LINE: 296 >>> Processed Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(I) @LINE: 323 +(I) @LINE: 302 >>> Processing Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(S) @LINE: 338 +(S) @LINE: 317 >>> Processed Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(I) @LINE: 344 +(I) @LINE: 323 >>> Processing Test Case: A00E_handleTestValveStateOverrideRequest -(S) @LINE: 364 +(S) @LINE: 343 >>> Processed Test Case: A00E_handleTestValveStateOverrideRequest -(I) @LINE: 370 +(I) @LINE: 349 >>> Processing Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(S) @LINE: 385 +(S) @LINE: 364 >>> Processed Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(I) @LINE: 391 +(I) @LINE: 370 >>> Processing Test Case: A010_handleTestTemperatureSensorOverrideRequest -(S) @LINE: 411 +(S) @LINE: 390 >>> Processed Test Case: A010_handleTestTemperatureSensorOverrideRequest -(I) @LINE: 417 +(I) @LINE: 396 >>> Processing Test Case: A011_handleStartStopPrimaryHeater -(S) @LINE: 434 +(S) @LINE: 413 >>> Processed Test Case: A011_handleStartStopPrimaryHeater -(I) @LINE: 440 +(I) @LINE: 419 >>> Processing Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(S) @LINE: 455 +(S) @LINE: 434 >>> Processed Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(I) @LINE: 461 +(I) @LINE: 440 >>> Processing Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(S) @LINE: 476 +(S) @LINE: 455 >>> Processed Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(I) @LINE: 482 +(I) @LINE: 461 >>> Processing Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(S) @LINE: 497 +(S) @LINE: 476 >>> Processed Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(I) @LINE: 503 +(I) @LINE: 482 >>> Processing Test Case: A015_handleTestSetConductivityOverrideRequest -(S) @LINE: 524 +(S) @LINE: 503 >>> Processed Test Case: A015_handleTestSetConductivityOverrideRequest -(I) @LINE: 530 +(I) @LINE: 509 >>> Processing Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(S) @LINE: 546 +(S) @LINE: 525 >>> Processed Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(I) @LINE: 552 +(I) @LINE: 531 >>> Processing Test Case: A017_handleTestAccelAxisOverrideRequest -(S) @LINE: 572 +(S) @LINE: 551 >>> Processed Test Case: A017_handleTestAccelAxisOverrideRequest -(I) @LINE: 578 +(I) @LINE: 557 >>> Processing Test Case: A018_handleTestAccelMaxOverrideRequest -(S) @LINE: 598 +(S) @LINE: 577 >>> Processed Test Case: A018_handleTestAccelMaxOverrideRequest -(I) @LINE: 604 +(I) @LINE: 583 >>> Processing Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest -(S) @LINE: 619 +(S) @LINE: 598 >>> Processed Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest -(I) @LINE: 625 +(I) @LINE: 604 >>> Processing Test Case: A022_handleDGSoftwareResetRequest -(S) @LINE: 633 +(S) @LINE: 612 >>> Processed Test Case: A022_handleDGSoftwareResetRequest -(I) @LINE: 639 +(I) @LINE: 618 >>> Processing Test Case: A023_handleSetConcentratePumpMeasuredSpeed -(E) @LINE: 640 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:0.0 - >>> Unknown parameter/object name measuredPumpSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 641 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0 - >>> Unknown parameter/object name measuredPumpSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 658 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:5.0 - >>> Unknown parameter/object name measuredPumpSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 659 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0xCCC33C33 - >>> Unknown parameter/object name measuredPumpSpeed - >>> Value Line Error - Command Ignored -(S) @LINE: 660 +(E) Errors from previous script import(s) + >>> (E) @LINE: 640 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:0.0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 641 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 658 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:5.0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 659 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0xCCC33C33 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 650 >>> Processed Test Case: A023_handleSetConcentratePumpMeasuredSpeed -(I) @LINE: 666 +(I) @LINE: 656 >>> Processing Test Case: A024_handleSetConcentratePumpTargetSpeed -(E) @LINE: 667 TEST.VALUE:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:0.0 - >>> Unknown parameter/object name pumpTargetSpeed - >>> Value Line Error - Command Ignored -(E) @LINE: 684 TEST.EXPECTED:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:5.0 - >>> Unknown parameter/object name pumpTargetSpeed - >>> Value Line Error - Command Ignored -(S) @LINE: 685 +(E) Errors from previous script import(s) + >>> (E) @LINE: 667 TEST.VALUE:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:0.0 + >>> >>> Unknown parameter/object name pumpTargetSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 684 TEST.EXPECTED:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:5.0 + >>> >>> Unknown parameter/object name pumpTargetSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 682 >>> Processed Test Case: A024_handleSetConcentratePumpTargetSpeed -(I) @LINE: 691 +(I) @LINE: 688 >>> Processing Test Case: A026_handleConcentratePumpStateChangeRequest -(E) @LINE: 692 TEST.VALUE:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:0 - >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested - >>> Value Line Error - Command Ignored -(E) @LINE: 701 TEST.EXPECTED:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:1 - >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested - >>> Value Line Error - Command Ignored -(S) @LINE: 702 +(E) Errors from previous script import(s) + >>> (E) @LINE: 692 TEST.VALUE:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:0 + >>> >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 701 TEST.EXPECTED:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:1 + >>> >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 706 >>> Processed Test Case: A026_handleConcentratePumpStateChangeRequest -(I) @LINE: 708 +(I) @LINE: 712 >>> Processing Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(S) @LINE: 727 +(S) @LINE: 731 >>> Processed Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(I) @LINE: 733 +(I) @LINE: 737 + >>> Processing Test Case: A02A_handleFansDataPublishIntervalOverride +(S) @LINE: 752 + >>> Processed Test Case: A02A_handleFansDataPublishIntervalOverride +(I) @LINE: 758 + >>> Processing Test Case: A02D_handleThermistorsDataPublishIntervalOverride +(S) @LINE: 773 + >>> Processed Test Case: A02D_handleThermistorsDataPublishIntervalOverride +(I) @LINE: 779 + >>> Processing Test Case: A02E_handleThermisotrsValueOverride +(S) @LINE: 799 + >>> Processed Test Case: A02E_handleThermisotrsValueOverride +(I) @LINE: 805 >>> Processing Test Case: handleDrainCmd -(S) @LINE: 744 +(S) @LINE: 816 >>> Processed Test Case: handleDrainCmd -(I) @LINE: 750 +(I) @LINE: 822 >>> Processing Test Case: handleFWVersionCmd -(S) @LINE: 756 +(S) @LINE: 828 >>> Processed Test Case: handleFWVersionCmd -(I) @LINE: 762 +(I) @LINE: 834 >>> Processing Test Case: handleFillCmd -(S) @LINE: 772 +(S) @LINE: 844 >>> Processed Test Case: handleFillCmd -(I) @LINE: 778 +(I) @LINE: 850 >>> Processing Test Case: handlePowerOffWarning -(S) @LINE: 784 +(S) @LINE: 856 >>> Processed Test Case: handlePowerOffWarning -(I) @LINE: 790 +(I) @LINE: 862 >>> Processing Test Case: handleSampleWaterCmd -(S) @LINE: 802 +(S) @LINE: 874 >>> Processed Test Case: handleSampleWaterCmd -(I) @LINE: 808 +(I) @LINE: 880 >>> Processing Test Case: handleSetAccelCalibration -(S) @LINE: 832 +(S) @LINE: 904 >>> Processed Test Case: handleSetAccelCalibration -(I) @LINE: 838 +(I) @LINE: 910 >>> Processing Test Case: handleSetDialysateTemperatureCmd -(S) @LINE: 852 +(S) @LINE: 924 >>> Processed Test Case: handleSetDialysateTemperatureCmd -(I) @LINE: 858 +(I) @LINE: 930 >>> Processing Test Case: handleStartStopTreatmentCmd -(S) @LINE: 870 +(S) @LINE: 942 >>> Processed Test Case: handleStartStopTreatmentCmd -(I) @LINE: 876 +(I) @LINE: 948 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd -(S) @LINE: 887 +(S) @LINE: 959 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd -(I) @LINE: 893 +(I) @LINE: 965 >>> Processing Test Case: handleSwitchReservoirCmd -(S) @LINE: 903 +(S) @LINE: 975 >>> Processed Test Case: handleSwitchReservoirCmd -(I) @LINE: 911 +(I) @LINE: 983 >>> Processing Test Case: sendACKMsg -(S) @LINE: 930 +(S) @LINE: 1002 >>> Processed Test Case: sendACKMsg -(S) @LINE: 930 +(S) @LINE: 1002 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:00:31 +TIME: 2020-12-05 23:19:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14572,11 +14824,11 @@ >>> Source file matched SystemComm.c (S) @LINE: 133 >>> Source file matched SystemCommMessages.c -(S) @LINE: 271 +(S) @LINE: 302 >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:00:32 +TIME: 2020-12-05 23:19:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14659,13 +14911,6 @@ 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: A009_handleTestROMeasuredFlowOverrideRequest Preparing Test Data Running Test Case @@ -14820,6 +15065,27 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A02A_handleFansDataPublishIntervalOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A02D_handleThermistorsDataPublishIntervalOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A02E_handleThermisotrsValueOverride + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: handleDrainCmd Preparing Test Data Running Test Case @@ -14893,7 +15159,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:33 +TIME: 2020-12-05 23:19: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/3512906829/CCAST_.CFG @@ -14908,7 +15174,7 @@ File: WatchdogMgmt.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ - File: TaskBG.c (using cached data) + File: TaskBG.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -14951,9 +15217,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:38 +TIME: 2020-12-05 23:19:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14968,9 +15234,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -14983,24 +15246,9 @@ >>> Processed Test Case: taskBackground_NominalPath (S) @LINE: 29 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00: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/3512906829/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_TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:40 +TIME: 2020-12-05 23:19:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15020,7 +15268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:41 +TIME: 2020-12-05 23:19:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/CCAST_.CFG @@ -15067,9 +15315,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:44 +TIME: 2020-12-05 23:19:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15084,9 +15332,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15099,24 +15344,9 @@ >>> Processed Test Case: taskGeneral (S) @LINE: 27 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00: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/2330464402/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_TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:47 +TIME: 2020-12-05 23:19:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15136,7 +15366,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:48 +TIME: 2020-12-05 23:19: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/3515115311/CCAST_.CFG @@ -15183,9 +15413,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:52 +TIME: 2020-12-05 23:19:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15200,9 +15430,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15215,24 +15442,9 @@ >>> Processed Test Case: taskPriority_NominalPath (S) @LINE: 27 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00: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/3515115311/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_TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:53 +TIME: 2020-12-05 23:19:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15252,7 +15464,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:00:54 +TIME: 2020-12-05 23:19:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/CCAST_.CFG @@ -15310,9 +15522,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:00:59 +TIME: 2020-12-05 23:19:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15327,9 +15539,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15342,24 +15551,9 @@ >>> Processed Test Case: taskTimer_NominalPath (S) @LINE: 29 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:01: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/3678416002/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_TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:01:00 +TIME: 2020-12-05 23:19:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15379,7 +15573,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:01:01 +TIME: 2020-12-05 23:19: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 @@ -15480,7 +15674,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:01:10 +TIME: 2020-12-05 23:19:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15501,7 +15695,6 @@ Processing script line 50 Processing script line 100 Processing script line 150 - Processing script line 200 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15517,50 +15710,46 @@ (S) @LINE: 43 >>> Processed Test Case: execInitAndPOSTMode_Complete (I) @LINE: 49 - >>> Processing Test Case: execInitAndPOSTMode_Consistency_Check -(S) @LINE: 53 - >>> Processed Test Case: execInitAndPOSTMode_Consistency_Check -(I) @LINE: 59 >>> Processing Test Case: execInitAndPOSTMode_Start -(S) @LINE: 63 +(S) @LINE: 53 >>> Processed Test Case: execInitAndPOSTMode_Start -(I) @LINE: 73 +(I) @LINE: 63 >>> Processing Test Case: execRecirculateMode_Check_Inlet_Water_Temperature -(S) @LINE: 76 +(S) @LINE: 66 >>> Processed Test Case: execRecirculateMode_Check_Inlet_Water_Temperature -(I) @LINE: 86 +(I) @LINE: 76 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_No_Override -(S) @LINE: 101 +(S) @LINE: 91 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_No_Override -(I) @LINE: 107 +(I) @LINE: 97 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(S) @LINE: 124 +(S) @LINE: 114 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(I) @LINE: 132 +(I) @LINE: 122 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_No_Override -(S) @LINE: 152 +(S) @LINE: 142 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_No_Override -(I) @LINE: 158 +(I) @LINE: 148 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_With_Override -(S) @LINE: 177 +(S) @LINE: 167 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_With_Override -(I) @LINE: 187 +(I) @LINE: 177 >>> Processing Test Case: taskPriority_execTempSensors_Get_ADC_Values -(S) @LINE: 194 +(S) @LINE: 187 >>> Processed Test Case: taskPriority_execTempSensors_Get_ADC_Values -(I) @LINE: 200 +(I) @LINE: 193 >>> Processing Test Case: taskPriority_execTempSensors_Start -(S) @LINE: 204 +(S) @LINE: 197 >>> Processed Test Case: taskPriority_execTempSensors_Start -(I) @LINE: 214 +(I) @LINE: 207 >>> Processing Test Case: initSoftware_initHeaters -(S) @LINE: 219 +(S) @LINE: 212 >>> Processed Test Case: initSoftware_initHeaters -(S) @LINE: 219 +(S) @LINE: 212 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:01:12 +TIME: 2020-12-05 23:19:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15575,7 +15764,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:01:12 +TIME: 2020-12-05 23:19:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15600,13 +15789,6 @@ 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: execInitAndPOSTMode_Start Preparing Test Data Running Test Case @@ -15676,9 +15858,242 @@ 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/2444077595/INT_THERMISTORS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23:19:53 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_THERMISTORS" + Calling QuickParse Utility for /home/fw/workspace_dg/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/ + File: Thermistors.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace_dg/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/ + File: SystemCommMessages.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ + File: TaskGeneral.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 Thermistors + Parsing ModeInitPOST + Parsing SystemCommMessages + Parsing TaskGeneral + Parsing sys_main + Unit 9 (stub-by-function): Thermistors + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 11 (stub-by-function): ModeInitPOST + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 12 (stub-by-function): SystemCommMessages + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 13 (stub-by-function): TaskGeneral + 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 Thermistors + Compiling file Thermistors + Instrumenting file ModeInitPOST + Compiling file ModeInitPOST + Instrumenting file SystemCommMessages + Compiling file SystemCommMessages + Instrumenting file TaskGeneral + Compiling file TaskGeneral + 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_THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23:20: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/2444077595/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/2444077595/INT_THERMISTORS/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines + Processing script line 50 + Processing script line 100 + Processing script line 150 + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: execInitAndPOSTMode_Thermistors_POST +(S) @LINE: 29 + >>> Processed Test Case: execInitAndPOSTMode_Thermistors_POST +(I) @LINE: 39 + >>> Processing Test Case: handleTestThermisotrsValueOverride_Override +(S) @LINE: 60 + >>> Processed Test Case: handleTestThermisotrsValueOverride_Override +(I) @LINE: 66 + >>> Processing Test Case: handleTestThermisotrsValueOverride_Rest +(S) @LINE: 88 + >>> Processed Test Case: handleTestThermisotrsValueOverride_Rest +(I) @LINE: 96 + >>> Processing Test Case: handleTestThermistorsDataPublishIntervalOverride_Override +(S) @LINE: 113 + >>> Processed Test Case: handleTestThermistorsDataPublishIntervalOverride_Override +(I) @LINE: 119 + >>> Processing Test Case: handleTestThermistorsDataPublishIntervalOverride_Reset +(S) @LINE: 137 + >>> Processed Test Case: handleTestThermistorsDataPublishIntervalOverride_Reset +(I) @LINE: 147 + >>> Processing Test Case: taskGeneral_Get_ADC_Values +(S) @LINE: 170 + >>> Processed Test Case: taskGeneral_Get_ADC_Values +(I) @LINE: 176 + >>> Processing Test Case: taskGeneral_Start +(S) @LINE: 180 + >>> Processed Test Case: taskGeneral_Start +(I) @LINE: 190 + >>> Processing Test Case: initSoftware_Init_Thermistors +(S) @LINE: 193 + >>> Processed Test Case: initSoftware_Init_Thermistors +(S) @LINE: 193 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23:20: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/2444077595/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_THERMISTORS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23:20: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/2444077595/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all ModeInitPOST.execInitAndPOSTMode test cases + Running: execInitAndPOSTMode_Thermistors_POST + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestThermistorsDataPublishIntervalOverride test cases + Running: handleTestThermistorsDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestThermistorsDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestThermisotrsValueOverride test cases + Running: handleTestThermisotrsValueOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleTestThermisotrsValueOverride_Rest + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all TaskGeneral.taskGeneral test cases + Running: taskGeneral_Get_ADC_Values + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: taskGeneral_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all sys_main.initSoftware test cases + Running: initSoftware_Init_Thermistors + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS/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/189936646/INT_TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:13 +TIME: 2020-12-05 23:20:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/CCAST_.CFG @@ -15758,7 +16173,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:19 +TIME: 2020-12-05 23:20:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15799,7 +16214,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:20 +TIME: 2020-12-05 23:20:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15829,7 +16244,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:21 +TIME: 2020-12-05 23:20:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15873,7 +16288,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:22 +TIME: 2020-12-05 23:20: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/1824960653/CCAST_.CFG @@ -15890,7 +16305,7 @@ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ - File: Utilities.c (using cached data) + File: Utilities.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -15949,9 +16364,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:28 +TIME: 2020-12-05 23:20:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15966,9 +16381,6 @@ 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 Script Creation Completed -------------------------------------------------------------------------------- @@ -15998,24 +16410,9 @@ >>> Processed Test Case: crc8 (S) @LINE: 145 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01: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/1824960653/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_UTILITIES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:30 +TIME: 2020-12-05 23:20:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16045,7 +16442,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:31 +TIME: 2020-12-05 23:20:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16097,7 +16494,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:32 +TIME: 2020-12-05 23:20:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG @@ -16177,9 +16574,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:39 +TIME: 2020-12-05 23:20:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16194,9 +16591,6 @@ 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 200 Script Creation Completed @@ -16239,24 +16633,9 @@ >>> Processed Test Case: initSoftware_initValves (S) @LINE: 211 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01: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/3585417238/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_VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:41 +TIME: 2020-12-05 23:20:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16330,7 +16709,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:42 +TIME: 2020-12-05 23:20: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/1429379182/CCAST_.CFG @@ -16417,9 +16796,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:49 +TIME: 2020-12-05 23:20:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16434,9 +16813,6 @@ 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 Script Creation Completed @@ -16471,24 +16847,9 @@ >>> Processed Test Case: initWatchdogMgmt (S) @LINE: 187 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01: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/1429379182/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_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:51 +TIME: 2020-12-05 23:20:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16547,7 +16908,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:01:52 +TIME: 2020-12-05 23:20:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG @@ -16580,9 +16941,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:01:55 +TIME: 2020-12-05 23:20:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16597,9 +16958,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -16693,24 +17051,9 @@ >>> Processed Test Case: testSetLoadCellOverride_Override (S) @LINE: 354 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:01: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/1396715880/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 LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:01:57 +TIME: 2020-12-05 23:20:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16872,7 +17215,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:01:58 +TIME: 2020-12-05 23:20: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/92980787/CCAST_.CFG @@ -16907,7 +17250,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:02:01 +TIME: 2020-12-05 23:20:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16952,7 +17295,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:02:01 +TIME: 2020-12-05 23:20:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17003,7 +17346,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:02:02 +TIME: 2020-12-05 23:20: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/2214729248/CCAST_.CFG @@ -17036,9 +17379,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:02:05 +TIME: 2020-12-05 23:20:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17053,9 +17396,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -17098,24 +17438,9 @@ >>> Processed Test Case: transitionToDrainMode_NominalPath (S) @LINE: 116 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:02: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/2214729248/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:02:06 +TIME: 2020-12-05 23:20:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17188,7 +17513,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:02:07 +TIME: 2020-12-05 23:21:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/CCAST_.CFG @@ -17223,7 +17548,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:02:10 +TIME: 2020-12-05 23:21:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17268,7 +17593,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:02:10 +TIME: 2020-12-05 23:21:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17319,7 +17644,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-23 17:02:11 +TIME: 2020-12-05 23:21:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG @@ -17353,9 +17678,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-23 17:02:14 +TIME: 2020-12-05 23:21:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17370,9 +17695,6 @@ 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 250 Script Creation Completed @@ -17479,7 +17801,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-23 17:02:15 +TIME: 2020-12-05 23:21:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17659,7 +17981,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:02:16 +TIME: 2020-12-05 23:21: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/207958446/CCAST_.CFG @@ -17694,7 +18016,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:02:19 +TIME: 2020-12-05 23:21:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17739,7 +18061,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:02:19 +TIME: 2020-12-05 23:21:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17790,7 +18112,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-23 17:02:20 +TIME: 2020-12-05 23:21:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/CCAST_.CFG @@ -17825,7 +18147,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-23 17:02:23 +TIME: 2020-12-05 23:21:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17870,7 +18192,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-23 17:02:23 +TIME: 2020-12-05 23:21:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17921,7 +18243,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-23 17:02:24 +TIME: 2020-12-05 23:21:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/CCAST_.CFG @@ -17956,7 +18278,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-23 17:02:27 +TIME: 2020-12-05 23:21:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18061,7 +18383,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-23 17:02:27 +TIME: 2020-12-05 23:21:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18213,7 +18535,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:29 +TIME: 2020-12-05 23:21:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG @@ -18246,9 +18568,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:31 +TIME: 2020-12-05 23:21:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18263,9 +18585,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -18328,24 +18647,9 @@ >>> 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-11-23 17:02: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 - 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 MODERECIRCULATE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:33 +TIME: 2020-12-05 23:21:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18367,7 +18671,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:34 +TIME: 2020-12-05 23:21:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18478,7 +18782,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:35 +TIME: 2020-12-05 23:21:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/CCAST_.CFG @@ -18511,9 +18815,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:37 +TIME: 2020-12-05 23:21:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18528,9 +18832,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18559,24 +18860,9 @@ >>> Processed Test Case: transitionToServiceMode_NominalPath (S) @LINE: 67 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02: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/1806992042/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 MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:39 +TIME: 2020-12-05 23:21:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18627,7 +18913,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:02:40 +TIME: 2020-12-05 23:21:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/CCAST_.CFG @@ -18662,7 +18948,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:02:42 +TIME: 2020-12-05 23:21:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18715,7 +19001,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:02:43 +TIME: 2020-12-05 23:21:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18781,7 +19067,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:44 +TIME: 2020-12-05 23:21: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/336674795/CCAST_.CFG @@ -18814,9 +19100,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:47 +TIME: 2020-12-05 23:21:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18831,9 +19117,6 @@ 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 @@ -18913,24 +19196,9 @@ >>> Processed Test Case: transitionToStandbyMode_NominalPath (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-11-23 17:02: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/336674795/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 MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:48 +TIME: 2020-12-05 23:21:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18952,7 +19220,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:49 +TIME: 2020-12-05 23:21:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19091,7 +19359,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:50 +TIME: 2020-12-05 23:21:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG @@ -19124,9 +19392,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:53 +TIME: 2020-12-05 23:21:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19141,9 +19409,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -19225,24 +19490,9 @@ >>> Processed Test Case: QueueNotFull (S) @LINE: 315 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02: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/1114345785/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 MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:54 +TIME: 2020-12-05 23:21:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19380,7 +19630,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:02:56 +TIME: 2020-12-05 23:21:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/CCAST_.CFG @@ -19414,9 +19664,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:02:58 +TIME: 2020-12-05 23:21:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19431,9 +19681,6 @@ 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 400 @@ -20083,7 +20330,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:03:01 +TIME: 2020-12-05 23:21:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21166,7 +21413,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:04 +TIME: 2020-12-05 23:21:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG @@ -21199,9 +21446,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:06 +TIME: 2020-12-05 23:22:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21216,9 +21463,6 @@ 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 200 Processing script line 250 @@ -21358,24 +21602,9 @@ >>> 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-11-23 17:03: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/241608158/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 OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:08 +TIME: 2020-12-05 23:22:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21618,7 +21847,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:03:10 +TIME: 2020-12-05 23:22: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/3477059194/CCAST_.CFG @@ -21653,7 +21882,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:03:12 +TIME: 2020-12-05 23:22:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21700,21 +21929,21 @@ >>> Processed Test Case: checkPersistentAlarm_OutOfRange (I) @LINE: 105 >>> Processing Test Case: checkPersistentAlarm_OutOfRange_Trigger_Alarm -(S) @LINE: 119 +(S) @LINE: 123 >>> Processed Test Case: checkPersistentAlarm_OutOfRange_Trigger_Alarm -(I) @LINE: 127 +(I) @LINE: 131 >>> Processing Test Case: initPersistentAlarm_Exceeds_Max_Alarm_Num -(S) @LINE: 133 +(S) @LINE: 137 >>> Processed Test Case: initPersistentAlarm_Exceeds_Max_Alarm_Num -(I) @LINE: 139 +(I) @LINE: 143 >>> Processing Test Case: initPersistentAlarm_NominalPath -(S) @LINE: 157 +(S) @LINE: 161 >>> Processed Test Case: initPersistentAlarm_NominalPath -(S) @LINE: 157 +(S) @LINE: 161 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:03:13 +TIME: 2020-12-05 23:22:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21729,7 +21958,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:03:14 +TIME: 2020-12-05 23:22:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21799,7 +22028,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:15 +TIME: 2020-12-05 23:22: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/396578388/CCAST_.CFG @@ -21832,9 +22061,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:18 +TIME: 2020-12-05 23:22:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21849,9 +22078,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -21965,24 +22191,9 @@ >>> Processed Test Case: runPIController_NominalPath (S) @LINE: 457 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03: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/396578388/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 PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:19 +TIME: 2020-12-05 23:22:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22159,7 +22370,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:21 +TIME: 2020-12-05 23:22: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/3540987929/CCAST_.CFG @@ -22192,9 +22403,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:23 +TIME: 2020-12-05 23:22:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22209,9 +22420,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -22376,24 +22584,9 @@ >>> Processed Test Case: testSetPressuresDataPublishIntervalOverride_Override (S) @LINE: 575 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03: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/3540987929/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 PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:25 +TIME: 2020-12-05 23:22:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22672,7 +22865,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:03:27 +TIME: 2020-12-05 23:22:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG @@ -22705,9 +22898,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:03:29 +TIME: 2020-12-05 23:22:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22722,9 +22915,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -22941,24 +23131,9 @@ >>> Processed Test Case: testSetReservoirFillVolumeMlOverride_NotLoggedIn (S) @LINE: 727 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:03: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/148424956/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 RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:03:31 +TIME: 2020-12-05 23:22:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23335,7 +23510,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:03:33 +TIME: 2020-12-05 23:22: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/1091159810/CCAST_.CFG @@ -23369,9 +23544,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:03:36 +TIME: 2020-12-05 23:22:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23386,9 +23561,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -23570,24 +23742,9 @@ >>> Processed Test Case: testSetTargetROPumpPressureOverride_Override (S) @LINE: 752 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:03: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/1091159810/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 ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:03:38 +TIME: 2020-12-05 23:22:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23609,7 +23766,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:03:39 +TIME: 2020-12-05 23:22:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23929,7 +24086,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:41 +TIME: 2020-12-05 23:22: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/428499850/CCAST_.CFG @@ -23963,9 +24120,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:43 +TIME: 2020-12-05 23:22:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23980,9 +24137,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -24443,24 +24597,9 @@ >>> Processed Test Case: RAM_Not_Idle (S) @LINE: 1554 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03: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/428499850/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 RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:46 +TIME: 2020-12-05 23:22:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25265,7 +25404,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:49 +TIME: 2020-12-05 23:22:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/CCAST_.CFG @@ -25299,9 +25438,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:51 +TIME: 2020-12-05 23:22:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25316,9 +25455,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -25364,24 +25500,9 @@ >>> Processed Test Case: testSetSafetyShutdownOverride_NotLoggedIn (S) @LINE: 138 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03: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/129022383/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 SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:53 +TIME: 2020-12-05 23:22:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25461,7 +25582,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:03:54 +TIME: 2020-12-05 23:22:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG @@ -25496,7 +25617,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:03:57 +TIME: 2020-12-05 23:22:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25531,8 +25652,9 @@ Processing script line 1200 Processing script line 1250 Processing script line 1450 - Processing script line 1500 + Processing script line 1550 Processing script line 1600 + Processing script line 1650 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -25784,169 +25906,171 @@ (S) @LINE: 1138 >>> Processed Test Case: A007_PressureBroadcastIntervalOverride (I) @LINE: 1144 - >>> Processing Test Case: A008_ROPumpSetPtOverride -(S) @LINE: 1151 - >>> Processed Test Case: A008_ROPumpSetPtOverride -(I) @LINE: 1157 >>> Processing Test Case: A009_ROMeasFlowOverride -(S) @LINE: 1164 +(S) @LINE: 1151 >>> Processed Test Case: A009_ROMeasFlowOverride -(I) @LINE: 1170 +(I) @LINE: 1157 >>> Processing Test Case: A00A_ROPumpBroadcastIntervalOverride -(S) @LINE: 1177 +(S) @LINE: 1164 >>> Processed Test Case: A00A_ROPumpBroadcastIntervalOverride -(I) @LINE: 1183 +(I) @LINE: 1170 >>> Processing Test Case: A00B_DrainPumpSetPtOverride -(S) @LINE: 1190 +(S) @LINE: 1177 >>> Processed Test Case: A00B_DrainPumpSetPtOverride -(I) @LINE: 1196 +(I) @LINE: 1183 >>> Processing Test Case: A00C_DrainPumpBroadcastIntervalOverride -(S) @LINE: 1203 +(S) @LINE: 1190 >>> Processed Test Case: A00C_DrainPumpBroadcastIntervalOverride -(I) @LINE: 1209 +(I) @LINE: 1196 >>> Processing Test Case: A00D_LoadCellBroadcastIntervalOverride -(S) @LINE: 1216 +(S) @LINE: 1203 >>> Processed Test Case: A00D_LoadCellBroadcastIntervalOverride -(I) @LINE: 1222 +(I) @LINE: 1209 >>> Processing Test Case: A00E_ValveStateOverride -(S) @LINE: 1229 +(S) @LINE: 1216 >>> Processed Test Case: A00E_ValveStateOverride -(I) @LINE: 1235 +(I) @LINE: 1222 >>> Processing Test Case: A00F_ValveBroadcastIntervalOverride -(S) @LINE: 1242 +(S) @LINE: 1229 >>> Processed Test Case: A00F_ValveBroadcastIntervalOverride -(I) @LINE: 1248 +(I) @LINE: 1235 >>> Processing Test Case: A010_TemperatureOverride -(S) @LINE: 1255 +(S) @LINE: 1242 >>> Processed Test Case: A010_TemperatureOverride -(I) @LINE: 1261 +(I) @LINE: 1248 >>> Processing Test Case: A011_StartStopPrimaryHeaterCmd -(S) @LINE: 1269 +(S) @LINE: 1256 >>> Processed Test Case: A011_StartStopPrimaryHeaterCmd -(I) @LINE: 1275 +(I) @LINE: 1262 >>> Processing Test Case: A012_TemperatureBroadcastIntervalOverride -(S) @LINE: 1282 +(S) @LINE: 1269 >>> Processed Test Case: A012_TemperatureBroadcastIntervalOverride -(I) @LINE: 1288 +(I) @LINE: 1275 >>> Processing Test Case: A013_HeatersBroadcastIntervalOverride -(S) @LINE: 1295 +(S) @LINE: 1282 >>> Processed Test Case: A013_HeatersBroadcastIntervalOverride -(I) @LINE: 1301 +(I) @LINE: 1288 >>> Processing Test Case: A014_SafetyShutdownOverride -(S) @LINE: 1308 +(S) @LINE: 1295 >>> Processed Test Case: A014_SafetyShutdownOverride -(I) @LINE: 1314 +(I) @LINE: 1301 >>> Processing Test Case: A015_ConductivityOverride -(S) @LINE: 1321 +(S) @LINE: 1308 >>> Processed Test Case: A015_ConductivityOverride -(I) @LINE: 1327 +(I) @LINE: 1314 >>> Processing Test Case: A016_ConductivityBroadcastIntervalOverride -(S) @LINE: 1334 +(S) @LINE: 1321 >>> Processed Test Case: A016_ConductivityBroadcastIntervalOverride -(I) @LINE: 1340 +(I) @LINE: 1327 >>> Processing Test Case: A017_AccelAxisOverride -(S) @LINE: 1347 +(S) @LINE: 1334 >>> Processed Test Case: A017_AccelAxisOverride -(I) @LINE: 1353 +(I) @LINE: 1340 >>> Processing Test Case: A018_AccelMaxOverride -(S) @LINE: 1360 +(S) @LINE: 1347 >>> Processed Test Case: A018_AccelMaxOverride -(I) @LINE: 1366 +(I) @LINE: 1353 >>> Processing Test Case: A019_AccelBroadcastIntervalOverride -(S) @LINE: 1373 +(S) @LINE: 1360 >>> Processed Test Case: A019_AccelBroadcastIntervalOverride -(I) @LINE: 1379 +(I) @LINE: 1366 >>> Processing Test Case: A01A_SetAccelCalibration -(S) @LINE: 1386 +(S) @LINE: 1373 >>> Processed Test Case: A01A_SetAccelCalibration -(I) @LINE: 1392 +(I) @LINE: 1379 >>> Processing Test Case: A022_SoftwareResetRequest -(S) @LINE: 1399 +(S) @LINE: 1384 >>> Processed Test Case: A022_SoftwareResetRequest -(I) @LINE: 1405 +(I) @LINE: 1390 >>> Processing Test Case: A023_ConcentratePumpMeasuredSpeedOverride -(S) @LINE: 1412 +(S) @LINE: 1395 >>> Processed Test Case: A023_ConcentratePumpMeasuredSpeedOverride -(I) @LINE: 1418 +(I) @LINE: 1401 >>> Processing Test Case: A024_ConcentratePumpTargetSpeedOverride -(S) @LINE: 1425 +(S) @LINE: 1406 >>> Processed Test Case: A024_ConcentratePumpTargetSpeedOverride -(I) @LINE: 1431 +(I) @LINE: 1412 >>> Processing Test Case: A026_ConcentratePumpStateChange -(S) @LINE: 1438 +(S) @LINE: 1417 >>> Processed Test Case: A026_ConcentratePumpStateChange -(I) @LINE: 1444 +(I) @LINE: 1423 >>> Processing Test Case: A027_ConcentratePumpPublishIntervalOverride -(S) @LINE: 1451 +(S) @LINE: 1428 >>> Processed Test Case: A027_ConcentratePumpPublishIntervalOverride -(I) @LINE: 1457 +(I) @LINE: 1434 + >>> Processing Test Case: A02A_handleFansDataPublishIntervalOverride +(E) @LINE: 1468 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestValveStateOverrideRequest.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: 1469 + >>> Processed Test Case: A02A_handleFansDataPublishIntervalOverride +(I) @LINE: 1475 + >>> Processing Test Case: A02D_ThermistorsBroadcastIntervalOverride +(E) @LINE: 1482 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestLoadCellDataBroadcastIntervalOverrideRequest.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: 1483 + >>> Processed Test Case: A02D_ThermistorsBroadcastIntervalOverride +(I) @LINE: 1489 + >>> Processing Test Case: A02D_ThermistorsValueOverride +(E) @LINE: 1496 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestTemperatureSensorsOverrideRequest.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: 1497 + >>> Processed Test Case: A02D_ThermistorsValueOverride +(I) @LINE: 1503 >>> Processing Test Case: InvalidMessageID -(S) @LINE: 1464 +(S) @LINE: 1510 >>> Processed Test Case: InvalidMessageID -(I) @LINE: 1470 +(I) @LINE: 1516 >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 1477 +(S) @LINE: 1523 >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 1483 +(I) @LINE: 1529 >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 1493 +(S) @LINE: 1539 >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 1499 +(I) @LINE: 1545 >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 1509 +(S) @LINE: 1555 >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 1517 +(I) @LINE: 1563 >>> Processing Test Case: processReceivedMessages_ACKReceived -(S) @LINE: 1528 +(S) @LINE: 1574 >>> Processed Test Case: processReceivedMessages_ACKReceived -(I) @LINE: 1534 +(I) @LINE: 1580 >>> Processing Test Case: processReceivedMessages_ACKRequired -(S) @LINE: 1545 +(S) @LINE: 1591 >>> Processed Test Case: processReceivedMessages_ACKRequired -(I) @LINE: 1551 +(I) @LINE: 1597 >>> Processing Test Case: processReceivedMessages_BadCRC -(S) @LINE: 1557 +(S) @LINE: 1603 >>> Processed Test Case: processReceivedMessages_BadCRC -(I) @LINE: 1563 +(I) @LINE: 1609 >>> Processing Test Case: processReceivedMessages_NoMessagesReceived -(S) @LINE: 1566 +(S) @LINE: 1612 >>> Processed Test Case: processReceivedMessages_NoMessagesReceived -(I) @LINE: 1572 +(I) @LINE: 1618 >>> Processing Test Case: processReceivedMessages_OneMessageReceived -(S) @LINE: 1578 +(S) @LINE: 1624 >>> Processed Test Case: processReceivedMessages_OneMessageReceived -(I) @LINE: 1586 +(I) @LINE: 1632 >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 1590 +(S) @LINE: 1636 >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 1596 +(I) @LINE: 1642 >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 1605 +(S) @LINE: 1651 >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 1611 +(I) @LINE: 1657 >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 1619 +(S) @LINE: 1665 >>> Processed Test Case: PendingCANPacketIsPartial -(S) @LINE: 1619 +(S) @LINE: 1665 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:03: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/480960922/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:04:00 +TIME: 2020-12-05 23:22:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26459,13 +26583,6 @@ 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: A009_ROMeasFlowOverride Preparing Test Data Running Test Case @@ -26627,6 +26744,27 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A02A_handleFansDataPublishIntervalOverride + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A02D_ThermistorsBroadcastIntervalOverride + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: A02D_ThermistorsValueOverride + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: InvalidMessageID Preparing Test Data Running Test Case @@ -26658,7 +26796,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:04:03 +TIME: 2020-12-05 23:22:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG @@ -26694,7 +26832,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:04:06 +TIME: 2020-12-05 23:22:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26710,7 +26848,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (1) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -26719,19 +26857,19 @@ 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 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 1150 Processing script line 1200 Processing script line 1250 Processing script line 1300 @@ -26742,34 +26880,42 @@ Processing script line 1600 Processing script line 1650 Processing script line 1700 + Processing script line 1750 + Processing script line 1800 Processing script line 1850 Processing script line 1900 Processing script line 1950 + Processing script line 2000 Processing script line 2050 Processing script line 2100 + Processing script line 2150 Processing script line 2200 Processing script line 2250 - Processing script line 2400 - Processing script line 2450 + Processing script line 2350 Processing script line 2500 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 2950 + Processing script line 3000 + Processing script line 3050 Processing script line 3100 Processing script line 3150 Processing script line 3200 + Processing script line 3250 Processing script line 3300 + Processing script line 3350 Processing script line 3400 - Processing script line 3450 Processing script line 3500 Processing script line 3550 + Processing script line 3600 Processing script line 3650 + Processing script line 3750 + Processing script line 3950 + Processing script line 4000 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -26807,549 +26953,613 @@ (S) @LINE: 318 >>> Processed Test Case: broadcastDrainPumpData_NominalPath (I) @LINE: 326 + >>> Processing Test Case: broadcastFansData_NominalPath +(S) @LINE: 372 + >>> Processed Test Case: broadcastFansData_NominalPath +(I) @LINE: 380 >>> Processing Test Case: broadcastHeatersData_NominalPath -(S) @LINE: 356 +(S) @LINE: 410 >>> Processed Test Case: broadcastHeatersData_NominalPath -(I) @LINE: 364 +(I) @LINE: 418 >>> Processing Test Case: broadcastLoadCellData_NominalPath -(S) @LINE: 398 +(S) @LINE: 452 >>> Processed Test Case: broadcastLoadCellData_NominalPath -(I) @LINE: 406 +(I) @LINE: 460 >>> Processing Test Case: broadcastPressureSensorsData_NominalPath -(S) @LINE: 436 +(S) @LINE: 490 >>> Processed Test Case: broadcastPressureSensorsData_NominalPath -(I) @LINE: 444 +(I) @LINE: 498 >>> Processing Test Case: broadcastROPumpData_NominalPath -(S) @LINE: 473 +(S) @LINE: 527 >>> Processed Test Case: broadcastROPumpData_NominalPath -(I) @LINE: 481 +(I) @LINE: 535 >>> Processing Test Case: broadcastRTCEpoch_NominalPath -(S) @LINE: 503 +(S) @LINE: 557 >>> Processed Test Case: broadcastRTCEpoch_NominalPath -(I) @LINE: 511 +(I) @LINE: 565 >>> Processing Test Case: broadcastReservoirData_NominalPath -(S) @LINE: 540 +(S) @LINE: 594 >>> Processed Test Case: broadcastReservoirData_NominalPath -(I) @LINE: 548 +(I) @LINE: 602 >>> Processing Test Case: broadcastTemperatureSensorsData_NominalPath -(S) @LINE: 560 +(S) @LINE: 614 >>> Processed Test Case: broadcastTemperatureSensorsData_NominalPath -(I) @LINE: 568 +(I) @LINE: 622 + >>> Processing Test Case: broadcastThermistorsData_NominalPath +(S) @LINE: 652 + >>> Processed Test Case: broadcastThermistorsData_NominalPath +(I) @LINE: 660 >>> Processing Test Case: broadcastValvesStates_NominalPath -(S) @LINE: 583 +(S) @LINE: 675 >>> Processed Test Case: broadcastValvesStates_NominalPath -(I) @LINE: 591 +(I) @LINE: 683 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_InvalidPayloadLen -(S) @LINE: 602 +(S) @LINE: 694 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_InvalidPayloadLen -(I) @LINE: 608 +(I) @LINE: 700 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_Override -(S) @LINE: 634 +(S) @LINE: 726 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_Override -(I) @LINE: 640 +(I) @LINE: 732 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_Reset -(S) @LINE: 665 +(S) @LINE: 757 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_Reset -(I) @LINE: 673 +(I) @LINE: 765 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen -(S) @LINE: 684 +(S) @LINE: 776 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen -(I) @LINE: 690 +(I) @LINE: 782 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Override -(S) @LINE: 711 +(S) @LINE: 803 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Override -(I) @LINE: 717 +(I) @LINE: 809 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(S) @LINE: 737 +(S) @LINE: 829 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(I) @LINE: 745 +(I) @LINE: 837 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(S) @LINE: 758 +(S) @LINE: 850 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(I) @LINE: 764 +(I) @LINE: 856 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(S) @LINE: 785 +(S) @LINE: 877 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(I) @LINE: 791 +(I) @LINE: 883 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(S) @LINE: 817 +(S) @LINE: 909 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(I) @LINE: 823 +(I) @LINE: 915 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(S) @LINE: 849 +(S) @LINE: 941 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(I) @LINE: 857 +(I) @LINE: 949 >>> Processing Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(S) @LINE: 870 +(S) @LINE: 962 >>> Processed Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(I) @LINE: 876 +(I) @LINE: 968 >>> Processing Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(S) @LINE: 889 +(S) @LINE: 981 >>> Processed Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(I) @LINE: 895 +(I) @LINE: 987 >>> Processing Test Case: handleDGSoftwareResetRequest_Reset -(S) @LINE: 911 +(S) @LINE: 1003 >>> Processed Test Case: handleDGSoftwareResetRequest_Reset -(I) @LINE: 919 +(I) @LINE: 1011 >>> Processing Test Case: handleDrainCmd_InvalidPayloadLength -(S) @LINE: 931 +(S) @LINE: 1023 >>> Processed Test Case: handleDrainCmd_InvalidPayloadLength -(I) @LINE: 937 +(I) @LINE: 1029 >>> Processing Test Case: handleDrainCmd_NominalPath -(S) @LINE: 958 +(S) @LINE: 1050 >>> Processed Test Case: handleDrainCmd_NominalPath -(I) @LINE: 966 +(I) @LINE: 1058 >>> Processing Test Case: handleFWVersionCmd_NominalPath -(S) @LINE: 983 +(S) @LINE: 1075 >>> Processed Test Case: handleFWVersionCmd_NominalPath -(I) @LINE: 991 +(I) @LINE: 1083 >>> Processing Test Case: handleFillCmd_InvalidPayloadLength -(S) @LINE: 1003 +(S) @LINE: 1095 >>> Processed Test Case: handleFillCmd_InvalidPayloadLength -(I) @LINE: 1009 +(I) @LINE: 1101 >>> Processing Test Case: handleFillCmd_NominalPath -(S) @LINE: 1027 +(S) @LINE: 1119 >>> Processed Test Case: handleFillCmd_NominalPath -(I) @LINE: 1035 +(I) @LINE: 1127 >>> Processing Test Case: handlePowerOffWarning_InvalidPayloadLen -(S) @LINE: 1042 +(S) @LINE: 1134 >>> Processed Test Case: handlePowerOffWarning_InvalidPayloadLen -(I) @LINE: 1048 +(I) @LINE: 1140 >>> Processing Test Case: handlePowerOffWarning_NominalPath -(S) @LINE: 1056 +(S) @LINE: 1148 >>> Processed Test Case: handlePowerOffWarning_NominalPath -(I) @LINE: 1064 +(I) @LINE: 1156 >>> Processing Test Case: handleSampleWaterCmd_InvalidPayloadLength -(S) @LINE: 1076 +(S) @LINE: 1168 >>> Processed Test Case: handleSampleWaterCmd_InvalidPayloadLength -(I) @LINE: 1082 +(I) @LINE: 1174 >>> Processing Test Case: handleSampleWaterCmd_NominalPath -(S) @LINE: 1096 +(S) @LINE: 1188 >>> Processed Test Case: handleSampleWaterCmd_NominalPath -(I) @LINE: 1102 +(I) @LINE: 1194 >>> Processing Test Case: handleSampleWaterCmd_NotStandbyMode -(S) @LINE: 1115 +(S) @LINE: 1207 >>> Processed Test Case: handleSampleWaterCmd_NotStandbyMode -(I) @LINE: 1123 +(I) @LINE: 1215 >>> Processing Test Case: handleSetAccelCalibration_InvalidPayloadLen -(S) @LINE: 1135 +(S) @LINE: 1227 >>> Processed Test Case: handleSetAccelCalibration_InvalidPayloadLen -(I) @LINE: 1141 +(I) @LINE: 1233 >>> Processing Test Case: handleSetAccelCalibration_NominalPath -(S) @LINE: 1169 +(S) @LINE: 1261 >>> Processed Test Case: handleSetAccelCalibration_NominalPath -(I) @LINE: 1177 +(I) @LINE: 1269 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(S) @LINE: 1189 +(S) @LINE: 1281 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(I) @LINE: 1195 +(I) @LINE: 1287 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_Override -(S) @LINE: 1222 +(S) @LINE: 1314 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_Override -(I) @LINE: 1230 +(I) @LINE: 1322 >>> Processing Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(S) @LINE: 1242 +(S) @LINE: 1334 >>> Processed Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(I) @LINE: 1248 +(I) @LINE: 1340 >>> Processing Test Case: handleSetDialysateTemperatureCmd_NominalPath -(S) @LINE: 1270 +(S) @LINE: 1362 >>> Processed Test Case: handleSetDialysateTemperatureCmd_NominalPath -(I) @LINE: 1278 +(I) @LINE: 1370 >>> Processing Test Case: handleSetRTCTimestamp -(S) @LINE: 1313 +(S) @LINE: 1405 >>> Processed Test Case: handleSetRTCTimestamp -(I) @LINE: 1321 +(I) @LINE: 1413 >>> Processing Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(S) @LINE: 1336 +(S) @LINE: 1428 >>> Processed Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(I) @LINE: 1342 +(I) @LINE: 1434 >>> Processing Test Case: handleStartStopPrimaryHeater_Start -(S) @LINE: 1352 +(S) @LINE: 1444 >>> Processed Test Case: handleStartStopPrimaryHeater_Start -(I) @LINE: 1358 +(I) @LINE: 1450 >>> Processing Test Case: handleStartStopPrimaryHeater_Stop -(S) @LINE: 1367 +(S) @LINE: 1459 >>> Processed Test Case: handleStartStopPrimaryHeater_Stop -(I) @LINE: 1375 +(I) @LINE: 1467 >>> Processing Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(S) @LINE: 1387 +(S) @LINE: 1479 >>> Processed Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(I) @LINE: 1393 +(I) @LINE: 1485 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(S) @LINE: 1410 +(S) @LINE: 1502 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(I) @LINE: 1416 +(I) @LINE: 1508 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(S) @LINE: 1434 +(S) @LINE: 1526 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(I) @LINE: 1440 +(I) @LINE: 1532 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(S) @LINE: 1457 +(S) @LINE: 1549 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(I) @LINE: 1463 +(I) @LINE: 1555 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(S) @LINE: 1481 +(S) @LINE: 1573 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(I) @LINE: 1489 +(I) @LINE: 1581 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(S) @LINE: 1501 +(S) @LINE: 1593 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(I) @LINE: 1507 +(I) @LINE: 1599 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Start -(S) @LINE: 1524 +(S) @LINE: 1616 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Start -(I) @LINE: 1530 +(I) @LINE: 1622 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Stop -(S) @LINE: 1547 +(S) @LINE: 1639 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Stop -(I) @LINE: 1555 +(I) @LINE: 1647 >>> Processing Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(S) @LINE: 1567 +(S) @LINE: 1659 >>> Processed Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(I) @LINE: 1573 +(I) @LINE: 1665 >>> Processing Test Case: handleSwitchReservoirCmd_NominalPath -(S) @LINE: 1591 +(S) @LINE: 1683 >>> Processed Test Case: handleSwitchReservoirCmd_NominalPath -(I) @LINE: 1599 +(I) @LINE: 1691 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 1609 +(S) @LINE: 1701 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 1615 +(I) @LINE: 1707 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 1640 +(S) @LINE: 1732 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 1646 +(I) @LINE: 1738 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 1670 +(S) @LINE: 1762 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 1678 +(I) @LINE: 1770 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 1690 +(S) @LINE: 1782 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 1696 +(I) @LINE: 1788 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1718 +(S) @LINE: 1810 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1724 +(I) @LINE: 1816 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1745 +(S) @LINE: 1837 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1753 +(I) @LINE: 1845 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(S) @LINE: 1765 +(S) @LINE: 1857 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(I) @LINE: 1771 +(I) @LINE: 1863 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Override -(S) @LINE: 1798 +(S) @LINE: 1890 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Override -(I) @LINE: 1804 +(I) @LINE: 1896 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(S) @LINE: 1830 +(S) @LINE: 1922 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(I) @LINE: 1838 +(I) @LINE: 1930 >>> Processing Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(S) @LINE: 1850 +(S) @LINE: 1942 >>> Processed Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(I) @LINE: 1856 +(I) @LINE: 1948 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Override -(S) @LINE: 1883 +(S) @LINE: 1975 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Override -(I) @LINE: 1889 +(I) @LINE: 1981 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Reset -(S) @LINE: 1915 +(S) @LINE: 2007 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Reset -(I) @LINE: 1923 +(I) @LINE: 2015 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(S) @LINE: 1936 +(S) @LINE: 2028 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(I) @LINE: 1942 +(I) @LINE: 2034 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(S) @LINE: 1965 +(S) @LINE: 2057 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(I) @LINE: 1971 +(I) @LINE: 2063 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(S) @LINE: 1993 +(S) @LINE: 2085 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(I) @LINE: 2001 +(I) @LINE: 2093 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2013 +(S) @LINE: 2105 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2019 +(I) @LINE: 2111 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2041 +(S) @LINE: 2133 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2047 +(I) @LINE: 2139 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2068 +(S) @LINE: 2160 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2076 +(I) @LINE: 2168 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2088 +(S) @LINE: 2180 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2094 +(I) @LINE: 2186 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(S) @LINE: 2116 +(S) @LINE: 2208 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(I) @LINE: 2122 +(I) @LINE: 2214 >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(S) @LINE: 2143 +(S) @LINE: 2235 >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(I) @LINE: 2151 +(I) @LINE: 2243 + >>> Processing Test Case: handleFansDataPublishIntervalOverride_Invalid_Payload_Length +(S) @LINE: 2255 + >>> Processed Test Case: handleFansDataPublishIntervalOverride_Invalid_Payload_Length +(I) @LINE: 2261 + >>> Processing Test Case: handleFansDataPublishIntervalOverride_Override +(E) @LINE: 2288 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: 2283 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: 2289 + >>> Processed Test Case: handleFansDataPublishIntervalOverride_Override +(I) @LINE: 2295 + >>> Processing Test Case: handleFansDataPublishIntervalOverride_Reset +(E) @LINE: 2321 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: 2311 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: 2322 + >>> Processed Test Case: handleFansDataPublishIntervalOverride_Reset +(I) @LINE: 2330 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2163 +(S) @LINE: 2342 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2169 +(I) @LINE: 2348 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(S) @LINE: 2192 +(S) @LINE: 2371 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(I) @LINE: 2198 +(I) @LINE: 2377 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(S) @LINE: 2220 +(S) @LINE: 2399 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(I) @LINE: 2228 +(I) @LINE: 2407 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2240 +(S) @LINE: 2419 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2246 +(I) @LINE: 2425 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2268 +(S) @LINE: 2447 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2274 +(I) @LINE: 2453 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2295 +(S) @LINE: 2474 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2303 +(I) @LINE: 2482 >>> Processing Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(S) @LINE: 2315 +(S) @LINE: 2494 >>> Processed Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(I) @LINE: 2321 +(I) @LINE: 2500 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Override -(S) @LINE: 2348 +(S) @LINE: 2527 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Override -(I) @LINE: 2354 +(I) @LINE: 2533 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Reset -(S) @LINE: 2380 +(S) @LINE: 2559 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Reset -(I) @LINE: 2388 +(I) @LINE: 2567 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2400 +(S) @LINE: 2579 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2406 +(I) @LINE: 2585 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2428 +(S) @LINE: 2607 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2434 +(I) @LINE: 2613 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2455 +(S) @LINE: 2634 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2463 +(I) @LINE: 2642 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(S) @LINE: 2475 +(S) @LINE: 2654 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(I) @LINE: 2481 +(I) @LINE: 2660 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Override -(S) @LINE: 2508 +(S) @LINE: 2687 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Override -(I) @LINE: 2514 +(I) @LINE: 2693 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Reset -(S) @LINE: 2540 +(S) @LINE: 2719 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Reset -(I) @LINE: 2548 +(I) @LINE: 2727 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(S) @LINE: 2560 +(S) @LINE: 2739 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(I) @LINE: 2566 +(I) @LINE: 2745 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(S) @LINE: 2588 +(S) @LINE: 2767 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(I) @LINE: 2594 +(I) @LINE: 2773 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(S) @LINE: 2615 +(S) @LINE: 2794 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(I) @LINE: 2623 +(I) @LINE: 2802 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2635 +(S) @LINE: 2814 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2641 +(I) @LINE: 2820 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2663 +(S) @LINE: 2842 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2669 +(I) @LINE: 2848 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2690 +(S) @LINE: 2869 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2698 +(I) @LINE: 2877 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2710 +(S) @LINE: 2889 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2716 +(I) @LINE: 2895 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Override -(S) @LINE: 2738 +(S) @LINE: 2917 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Override -(I) @LINE: 2744 +(I) @LINE: 2923 >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(S) @LINE: 2765 +(S) @LINE: 2944 >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(I) @LINE: 2773 +(I) @LINE: 2952 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2785 +(S) @LINE: 2964 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2791 +(I) @LINE: 2970 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(S) @LINE: 2813 +(S) @LINE: 2992 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(I) @LINE: 2819 +(I) @LINE: 2998 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(S) @LINE: 2839 +(S) @LINE: 3018 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(I) @LINE: 2847 +(I) @LINE: 3026 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(S) @LINE: 2859 +(S) @LINE: 3038 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(I) @LINE: 2865 +(I) @LINE: 3044 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Override -(S) @LINE: 2892 +(S) @LINE: 3071 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Override -(I) @LINE: 2898 +(I) @LINE: 3077 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Reset -(S) @LINE: 2924 +(S) @LINE: 3103 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Reset -(I) @LINE: 2932 +(I) @LINE: 3111 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2944 +(S) @LINE: 3123 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2950 +(I) @LINE: 3129 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(S) @LINE: 2971 +(S) @LINE: 3154 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(I) @LINE: 2977 +(I) @LINE: 3160 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(S) @LINE: 2997 +(S) @LINE: 3180 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(I) @LINE: 3005 +(I) @LINE: 3188 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(S) @LINE: 3017 +(S) @LINE: 3200 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(I) @LINE: 3023 +(I) @LINE: 3206 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(S) @LINE: 3049 +(S) @LINE: 3232 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(I) @LINE: 3055 +(I) @LINE: 3238 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(S) @LINE: 3080 +(S) @LINE: 3263 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(I) @LINE: 3088 +(I) @LINE: 3271 + >>> Processing Test Case: handleThermisotrsValueOverride_Invalid_Payload_Length +(S) @LINE: 3283 + >>> Processed Test Case: handleThermisotrsValueOverride_Invalid_Payload_Length +(I) @LINE: 3289 + >>> Processing Test Case: handleThermisotrsValueOverride_Override +(S) @LINE: 3318 + >>> Processed Test Case: handleThermisotrsValueOverride_Override +(I) @LINE: 3324 + >>> Processing Test Case: handleThermisotrsValueOverride_Reset +(E) @LINE: 3355 TEST.ATTRIBUTES:SystemCommMessages.handleTestTemperatureSensorsOverrideRequest.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: 3340 TEST.ATTRIBUTES:SystemCommMessages.handleTestTemperatureSensorsOverrideRequest.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: 3360 + >>> Processed Test Case: handleThermisotrsValueOverride_Reset +(I) @LINE: 3368 + >>> Processing Test Case: handleThermistorsDataPublishIntervalOverride_Invalid_Payload_Length +(S) @LINE: 3381 + >>> Processed Test Case: handleThermistorsDataPublishIntervalOverride_Invalid_Payload_Length +(I) @LINE: 3387 + >>> Processing Test Case: handleThermistorsDataPublishIntervalOverride_Override +(E) @LINE: 3413 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: 3393 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: 3414 + >>> Processed Test Case: handleThermistorsDataPublishIntervalOverride_Override +(I) @LINE: 3420 + >>> Processing Test Case: handleThermistorsDataPublishIntervalOverride_Reset +(E) @LINE: 3445 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: 3420 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: 3446 + >>> Processed Test Case: handleThermistorsDataPublishIntervalOverride_Reset +(I) @LINE: 3454 >>> Processing Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 3101 +(S) @LINE: 3467 >>> Processed Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 3107 +(I) @LINE: 3473 >>> Processing Test Case: handleTestValveStateOverrideRequest_Override -(S) @LINE: 3135 +(S) @LINE: 3501 >>> Processed Test Case: handleTestValveStateOverrideRequest_Override -(I) @LINE: 3141 +(I) @LINE: 3507 >>> Processing Test Case: handleTestValveStateOverrideRequest_Reset -(S) @LINE: 3168 +(S) @LINE: 3534 >>> Processed Test Case: handleTestValveStateOverrideRequest_Reset -(I) @LINE: 3176 +(I) @LINE: 3542 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 3189 +(S) @LINE: 3555 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 3195 +(I) @LINE: 3561 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(S) @LINE: 3218 +(S) @LINE: 3584 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(I) @LINE: 3224 +(I) @LINE: 3590 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(S) @LINE: 3246 +(S) @LINE: 3612 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(I) @LINE: 3254 +(I) @LINE: 3620 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 3265 +(S) @LINE: 3631 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 3271 +(I) @LINE: 3637 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 3290 +(S) @LINE: 3656 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 3296 +(I) @LINE: 3662 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 3314 +(S) @LINE: 3680 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 3322 +(I) @LINE: 3688 >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 3331 +(S) @LINE: 3697 >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 3337 +(I) @LINE: 3703 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 3346 +(S) @LINE: 3712 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 3352 +(I) @LINE: 3718 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 3361 +(S) @LINE: 3727 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 3367 +(I) @LINE: 3733 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 3376 +(S) @LINE: 3742 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 3382 +(I) @LINE: 3748 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 3392 +(S) @LINE: 3758 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 3400 +(I) @LINE: 3766 >>> Processing Test Case: NominalPath -(S) @LINE: 3403 +(S) @LINE: 3769 >>> Processed Test Case: NominalPath -(I) @LINE: 3411 +(I) @LINE: 3777 >>> Processing Test Case: sendACKMsg_NominalPath -(S) @LINE: 3429 +(S) @LINE: 3795 >>> Processed Test Case: sendACKMsg_NominalPath -(I) @LINE: 3437 +(I) @LINE: 3803 >>> Processing Test Case: sendAckResponseMsg_NominalPath -(S) @LINE: 3457 +(S) @LINE: 3823 >>> Processed Test Case: sendAckResponseMsg_NominalPath -(I) @LINE: 3465 +(I) @LINE: 3831 >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 3483 +(S) @LINE: 3849 >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 3491 +(I) @LINE: 3857 >>> Processing Test Case: serializeMessage_ACK -(S) @LINE: 3529 +(S) @LINE: 3895 >>> Processed Test Case: serializeMessage_ACK -(I) @LINE: 3535 +(I) @LINE: 3901 >>> Processing Test Case: serializeMessage_ACKListFull -(S) @LINE: 3551 +(S) @LINE: 3917 >>> Processed Test Case: serializeMessage_ACKListFull -(I) @LINE: 3557 +(I) @LINE: 3923 >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 3598 +(S) @LINE: 3964 >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 3604 +(I) @LINE: 3970 >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 3634 +(S) @LINE: 4000 >>> Processed Test Case: serializeMessage_NominalPath -(I) @LINE: 3640 +(I) @LINE: 4006 >>> Processing Test Case: serializeMessage_SeqWrap -(S) @LINE: 3670 +(S) @LINE: 4036 >>> Processed Test Case: serializeMessage_SeqWrap -(S) @LINE: 3670 +(S) @LINE: 4036 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:04: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/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-11-23 17:04:10 +TIME: 2020-12-05 23:23:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27371,7 +27581,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:04:10 +TIME: 2020-12-05 23:23:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27552,6 +27762,22 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.broadcastThermistorsData test cases + Running: broadcastThermistorsData_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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.broadcastFansData test cases + Running: broadcastFansData_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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handlePowerOffWarning test cases Running: handlePowerOffWarning_InvalidPayloadLen Preparing Test Data @@ -28406,10 +28632,76 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleTestThermistorsDataPublishIntervalOverride test cases + Running: handleThermistorsDataPublishIntervalOverride_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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleThermistorsDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleThermistorsDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestThermisotrsValueOverride test cases + Running: handleThermisotrsValueOverride_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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleThermisotrsValueOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleThermisotrsValueOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all SystemCommMessages.handleTestFansDataPublishIntervalOverride test cases + Running: handleFansDataPublishIntervalOverride_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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleFansDataPublishIntervalOverride_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleFansDataPublishIntervalOverride_Reset + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:14 +TIME: 2020-12-05 23:23: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/673587938/CCAST_.CFG @@ -28442,9 +28734,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:16 +TIME: 2020-12-05 23:23:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28459,9 +28751,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28474,24 +28763,9 @@ >>> Processed Test Case: taskBackground_NominalPath (S) @LINE: 25 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04: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/673587938/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 TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:18 +TIME: 2020-12-05 23:23:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28511,7 +28785,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:19 +TIME: 2020-12-05 23:23:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/CCAST_.CFG @@ -28544,9 +28818,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:21 +TIME: 2020-12-05 23:23:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28561,9 +28835,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28576,24 +28847,9 @@ >>> Processed Test Case: taskGeneral_NominalPath (S) @LINE: 26 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04: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/1381620037/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 TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:23 +TIME: 2020-12-05 23:23:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28613,7 +28869,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:24 +TIME: 2020-12-05 23:23: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/3387658641/CCAST_.CFG @@ -28646,9 +28902,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:27 +TIME: 2020-12-05 23:23:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28663,9 +28919,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28678,24 +28931,9 @@ >>> Processed Test Case: taskPriority_NominalPath (S) @LINE: 26 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04: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/3387658641/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 TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:28 +TIME: 2020-12-05 23:23:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28715,7 +28953,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:29 +TIME: 2020-12-05 23:23:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG @@ -28748,9 +28986,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:32 +TIME: 2020-12-05 23:23:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28765,9 +29003,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28780,24 +29015,9 @@ >>> Processed Test Case: taskTimer_NominalPath (S) @LINE: 26 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04: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/1607376435/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 TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:33 +TIME: 2020-12-05 23:23:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28817,7 +29037,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:04:34 +TIME: 2020-12-05 23:23:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG @@ -28852,7 +29072,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:04:37 +TIME: 2020-12-05 23:23:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28872,15 +29092,22 @@ Translated 0 script lines Processing script line 50 Processing script line 100 - Processing script line 200 Processing script line 250 + Processing script line 300 Processing script line 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 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 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28889,233 +29116,249 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: checkInletWaterTemperature_Too_High -(S) @LINE: 29 +(S) @LINE: 30 >>> Processed Test Case: checkInletWaterTemperature_Too_High -(I) @LINE: 35 +(I) @LINE: 36 >>> Processing Test Case: checkInletWaterTemperature_Too_Low -(S) @LINE: 40 +(S) @LINE: 42 >>> Processed Test Case: checkInletWaterTemperature_Too_Low -(I) @LINE: 48 +(I) @LINE: 50 >>> Processing Test Case: execTemperatureSensors_Start -(S) @LINE: 51 +(S) @LINE: 53 >>> Processed Test Case: execTemperatureSensors_Start -(I) @LINE: 57 +(I) @LINE: 59 >>> Processing Test Case: execTemperatureSensors_Start_Default -(S) @LINE: 60 +(S) @LINE: 62 >>> Processed Test Case: execTemperatureSensors_Start_Default -(I) @LINE: 66 +(I) @LINE: 68 >>> Processing Test Case: execTemperatureSensors_Start_Get_ADC_Values -(S) @LINE: 69 +(S) @LINE: 71 >>> Processed Test Case: execTemperatureSensors_Start_Get_ADC_Values -(I) @LINE: 77 +(I) @LINE: 79 >>> Processing Test Case: execTemperatureSensorsSelfTest_ADC_Check -(S) @LINE: 82 +(S) @LINE: 85 >>> Processed Test Case: execTemperatureSensorsSelfTest_ADC_Check -(I) @LINE: 88 +(I) @LINE: 91 >>> Processing Test Case: execTemperatureSensorsSelfTest_Complete -(S) @LINE: 91 +(S) @LINE: 94 >>> Processed Test Case: execTemperatureSensorsSelfTest_Complete -(I) @LINE: 97 - >>> Processing Test Case: execTemperatureSensorsSelfTest_Consistency_Check -(S) @LINE: 100 - >>> Processed Test Case: execTemperatureSensorsSelfTest_Consistency_Check -(I) @LINE: 106 +(I) @LINE: 100 >>> Processing Test Case: execTemperatureSensorsSelfTest_Default -(S) @LINE: 109 +(S) @LINE: 103 >>> Processed Test Case: execTemperatureSensorsSelfTest_Default -(I) @LINE: 115 +(I) @LINE: 109 >>> Processing Test Case: execTemperatureSensorsSelfTest_Start -(S) @LINE: 120 +(S) @LINE: 114 >>> Processed Test Case: execTemperatureSensorsSelfTest_Start -(I) @LINE: 128 +(I) @LINE: 122 >>> Processing Test Case: getADC2TempConversion_Conversion_Coeff_Not_Zero -(S) @LINE: 136 +(S) @LINE: 130 >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Not_Zero -(I) @LINE: 142 +(I) @LINE: 136 >>> Processing Test Case: getADC2TempConversion_Conversion_Coeff_Zero -(S) @LINE: 149 +(S) @LINE: 144 >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Zero -(I) @LINE: 155 - >>> Processing Test Case: getADC2TempConversion_Conversion_Coeff_Zero2 -(S) @LINE: 162 - >>> Processed Test Case: getADC2TempConversion_Conversion_Coeff_Zero2 -(I) @LINE: 170 +(I) @LINE: 152 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Negative -(S) @LINE: 177 +(S) @LINE: 159 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Negative -(I) @LINE: 183 +(I) @LINE: 165 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater -(S) @LINE: 190 +(S) @LINE: 172 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater -(I) @LINE: 196 +(I) @LINE: 178 >>> Processing Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater -(S) @LINE: 203 +(S) @LINE: 185 >>> Processed Test Case: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater -(I) @LINE: 211 +(I) @LINE: 193 >>> Processing Test Case: getPublishTemperatureSensorsDataInterval_No_Override -(S) @LINE: 217 +(S) @LINE: 199 >>> Processed Test Case: getPublishTemperatureSensorsDataInterval_No_Override -(I) @LINE: 223 +(I) @LINE: 205 >>> Processing Test Case: getPublishTemperatureSensorsDataInterval_Override -(S) @LINE: 229 +(S) @LINE: 211 >>> Processed Test Case: getPublishTemperatureSensorsDataInterval_Override -(I) @LINE: 237 +(I) @LINE: 219 >>> Processing Test Case: getTemperatureValue_InvalidSensor -(S) @LINE: 240 +(S) @LINE: 229 >>> Processed Test Case: getTemperatureValue_InvalidSensor -(I) @LINE: 246 +(I) @LINE: 235 >>> Processing Test Case: getTemperatureValue_No_Override -(S) @LINE: 251 +(S) @LINE: 241 >>> Processed Test Case: getTemperatureValue_No_Override -(I) @LINE: 257 +(I) @LINE: 247 >>> Processing Test Case: getTemperatureValue_Override -(S) @LINE: 262 +(S) @LINE: 253 >>> Processed Test Case: getTemperatureValue_Override -(I) @LINE: 270 - >>> Processing Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc -(S) @LINE: 273 - >>> Processed Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc -(I) @LINE: 279 - >>> Processing Test Case: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override -(S) @LINE: 284 - >>> Processed Test Case: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override -(I) @LINE: 292 +(I) @LINE: 261 + >>> Processing Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc_Time +(S) @LINE: 378 + >>> Processed Test Case: handleExecGetADCValues_Internal_Heaters_Temp_Calc_Time +(I) @LINE: 384 + >>> Processing Test Case: handleExecGetADCValues_Not_ADC_Read_Time +(S) @LINE: 389 + >>> Processed Test Case: handleExecGetADCValues_Not_ADC_Read_Time +(I) @LINE: 395 + >>> Processing Test Case: handleExecGetADCValues_Not_Internal_Heaters_Temp_Calc_Time +(S) @LINE: 512 + >>> Processed Test Case: handleExecGetADCValues_Not_Internal_Heaters_Temp_Calc_Time +(I) @LINE: 520 >>> Processing Test Case: handleExecStart_Running -(S) @LINE: 297 +(S) @LINE: 525 >>> Processed Test Case: handleExecStart_Running -(I) @LINE: 303 +(I) @LINE: 531 >>> Processing Test Case: handleExecStart_Time_Elapsed -(S) @LINE: 309 +(S) @LINE: 537 >>> Processed Test Case: handleExecStart_Time_Elapsed -(I) @LINE: 315 +(I) @LINE: 543 >>> Processing Test Case: handleExecStart_Time_Zero -(S) @LINE: 321 +(S) @LINE: 549 >>> Processed Test Case: handleExecStart_Time_Zero -(I) @LINE: 329 +(I) @LINE: 557 >>> Processing Test Case: handleSelfTestADCCheck_Equal_FullScale -(S) @LINE: 332 +(S) @LINE: 562 >>> Processed Test Case: handleSelfTestADCCheck_Equal_FullScale -(I) @LINE: 338 +(I) @LINE: 568 >>> Processing Test Case: handleSelfTestADCCheck_Greater_Than_Full_Scale -(S) @LINE: 341 +(S) @LINE: 571 >>> Processed Test Case: handleSelfTestADCCheck_Greater_Than_Full_Scale -(I) @LINE: 347 - >>> Processing Test Case: handleSelfTestADCCheck_In_Range -(S) @LINE: 351 - >>> Processed Test Case: handleSelfTestADCCheck_In_Range -(I) @LINE: 357 +(I) @LINE: 577 >>> Processing Test Case: handleSelfTestADCCheck_Less_Than_Zero -(S) @LINE: 360 +(S) @LINE: 580 >>> Processed Test Case: handleSelfTestADCCheck_Less_Than_Zero -(I) @LINE: 368 - >>> Processing Test Case: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff -(S) @LINE: 380 - >>> Processed Test Case: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff -(I) @LINE: 386 - >>> Processing Test Case: handleSelfTestConsistencyCheck_In_Range -(S) @LINE: 398 - >>> Processed Test Case: handleSelfTestConsistencyCheck_In_Range -(I) @LINE: 406 +(I) @LINE: 588 >>> Processing Test Case: handleSelfTestStart_NominalPath -(S) @LINE: 411 +(S) @LINE: 592 >>> Processed Test Case: handleSelfTestStart_NominalPath -(I) @LINE: 419 +(I) @LINE: 600 >>> Processing Test Case: initTemperatureSensors_NominalPath -(S) @LINE: 524 +(S) @LINE: 749 >>> Processed Test Case: initTemperatureSensors_NominalPath -(I) @LINE: 532 - >>> Processing Test Case: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time -(S) @LINE: 541 - >>> Processed Test Case: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time -(I) @LINE: 547 +(I) @LINE: 757 >>> Processing Test Case: isADCReadValid_FPGA_Error_Not_Zero -(S) @LINE: 552 +(S) @LINE: 767 >>> Processed Test Case: isADCReadValid_FPGA_Error_Not_Zero -(I) @LINE: 558 +(I) @LINE: 773 >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(S) @LINE: 568 +(S) @LINE: 781 >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(I) @LINE: 574 +(I) @LINE: 787 >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(S) @LINE: 582 +(S) @LINE: 795 >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(I) @LINE: 588 +(I) @LINE: 801 >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(S) @LINE: 598 +(S) @LINE: 812 >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(I) @LINE: 604 +(I) @LINE: 818 >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(S) @LINE: 614 +(S) @LINE: 826 >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(I) @LINE: 622 - >>> Processing Test Case: processADCRead_Index_Wrap -(S) @LINE: 630 - >>> Processed Test Case: processADCRead_Index_Wrap -(I) @LINE: 636 - >>> Processing Test Case: processADCRead_No_Index_Wrap -(S) @LINE: 647 - >>> Processed Test Case: processADCRead_No_Index_Wrap -(I) @LINE: 655 - >>> Processing Test Case: processHtrsTempSnsrsADCRead_NominalPath -(S) @LINE: 664 - >>> Processed Test Case: processHtrsTempSnsrsADCRead_NominalPath -(I) @LINE: 672 - >>> Processing Test Case: processTempSnsrsADCRead_NominalPath -(S) @LINE: 681 - >>> Processed Test Case: processTempSnsrsADCRead_NominalPath -(I) @LINE: 689 +(I) @LINE: 834 + >>> Processing Test Case: processADCRead_Index_Wrap_Inlet_Primary_Case_Group +(S) @LINE: 838 + >>> Range Value Command VARY FROM:0 TO:9 BY: 1 + >>> Results in 10 Iterations. +(S) @LINE: 842 + >>> Processed Test Case: processADCRead_Index_Wrap_Inlet_Primary_Case_Group +(I) @LINE: 848 + >>> Processing Test Case: processADCRead_No_Index_Wrap_Default +(I) @LINE: 853 + >>> 'SW_FAULT_ID_INVALID_TEMPERATURE_SENSOR_SELECTED' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 856 + >>> Processed Test Case: processADCRead_No_Index_Wrap_Default +(I) @LINE: 862 + >>> Processing Test Case: processADCRead_No_Index_Wrap_FPGA_Board +(S) @LINE: 873 + >>> Processed Test Case: processADCRead_No_Index_Wrap_FPGA_Board +(I) @LINE: 879 + >>> Processing Test Case: processADCRead_No_Index_Wrap_Load_Cell_Group +(S) @LINE: 885 + >>> Range Value Command VARY FROM:13 TO:17 BY: 1 + >>> Results in 5 Iterations. +(S) @LINE: 890 + >>> Processed Test Case: processADCRead_No_Index_Wrap_Load_Cell_Group +(I) @LINE: 898 + >>> Processing Test Case: processHtrsTempSnsrsADCRead_Load_Cell_A2 +(S) @LINE: 909 + >>> Processed Test Case: processHtrsTempSnsrsADCRead_Load_Cell_A2 +(I) @LINE: 915 + >>> Processing Test Case: processHtrsTempSnsrsADCRead_Primay_CJ +(S) @LINE: 925 + >>> Processed Test Case: processHtrsTempSnsrsADCRead_Primay_CJ +(I) @LINE: 931 + >>> Processing Test Case: processHtrsTempSnsrsADCRead_Primay_TC +(S) @LINE: 941 + >>> Processed Test Case: processHtrsTempSnsrsADCRead_Primay_TC +(I) @LINE: 947 + >>> Processing Test Case: processHtrsTempSnsrsADCRead_Trimmer_CJ +(S) @LINE: 957 + >>> Processed Test Case: processHtrsTempSnsrsADCRead_Trimmer_CJ +(I) @LINE: 963 + >>> Processing Test Case: processHtrsTempSnsrsADCRead_Trimmer_TC_FPGA_Error +(S) @LINE: 971 + >>> Processed Test Case: processHtrsTempSnsrsADCRead_Trimmer_TC_FPGA_Error +(I) @LINE: 979 + >>> Processing Test Case: processTempSnsrsADCRead_FPGA_Error +(S) @LINE: 988 + >>> Processed Test Case: processTempSnsrsADCRead_FPGA_Error +(I) @LINE: 994 + >>> Processing Test Case: processTempSnsrsADCRead_No_FPGA_Error +(S) @LINE: 1001 + >>> Processed Test Case: processTempSnsrsADCRead_No_FPGA_Error +(I) @LINE: 1009 >>> Processing Test Case: publishTemperatureSensorsData_Time_Elapsed -(S) @LINE: 700 +(S) @LINE: 1020 >>> Processed Test Case: publishTemperatureSensorsData_Time_Elapsed -(I) @LINE: 706 +(I) @LINE: 1026 >>> Processing Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(S) @LINE: 711 +(S) @LINE: 1031 >>> Processed Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(I) @LINE: 719 +(I) @LINE: 1039 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 724 +(S) @LINE: 1044 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 730 +(I) @LINE: 1050 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 740 +(S) @LINE: 1060 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 746 +(I) @LINE: 1066 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 751 +(S) @LINE: 1071 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 759 +(I) @LINE: 1079 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(S) @LINE: 768 +(S) @LINE: 1088 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(I) @LINE: 774 +(I) @LINE: 1094 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(S) @LINE: 783 +(S) @LINE: 1103 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(I) @LINE: 791 +(I) @LINE: 1111 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 796 +(S) @LINE: 1116 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 802 +(I) @LINE: 1122 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 810 +(S) @LINE: 1130 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 816 +(I) @LINE: 1136 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 822 +(S) @LINE: 1142 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 830 +(I) @LINE: 1150 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(S) @LINE: 839 +(S) @LINE: 1159 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(I) @LINE: 845 +(I) @LINE: 1165 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 854 +(S) @LINE: 1174 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 854 +(S) @LINE: 1174 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:04:39 +TIME: 2020-12-05 23:23:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29130,7 +29373,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:04:39 +TIME: 2020-12-05 23:23:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29162,13 +29405,6 @@ 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: execTemperatureSensorsSelfTest_Default Preparing Test Data Running Test Case @@ -29257,59 +29493,80 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getADC2TempConversion_Conversion_Coeff_Zero2 + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.getHeaterInternalTemp test cases - Running: getHeaterInternalTemp_Cold_Junction_Negative + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getHeaterInternalTemp_Cold_Junction_Positive_Primary_Heater + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getHeaterInternalTemp_Cold_Junction_Positive_Trimmer_Heater + Running all TemperatureSensors.processTempSnsrsADCRead test cases + Running: processTempSnsrsADCRead_FPGA_Error 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.processTempSnsrsADCRead test cases - Running: processTempSnsrsADCRead_NominalPath + Running: processTempSnsrsADCRead_No_FPGA_Error 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 Processing Execution Data Updating Coverage Data Test Execution Complete Running all TemperatureSensors.processHtrsTempSnsrsADCRead test cases - Running: processHtrsTempSnsrsADCRead_NominalPath + Running: processHtrsTempSnsrsADCRead_Load_Cell_A2 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.isADCReadValid test cases - Running: isADCReadValid_FPGA_Error_Exceeds_Max_In_Windowed_Time + Running: processHtrsTempSnsrsADCRead_Primay_CJ 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 Processing Execution Data Updating Coverage Data Test Execution Complete + Running: processHtrsTempSnsrsADCRead_Primay_TC + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processHtrsTempSnsrsADCRead_Trimmer_CJ + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: processHtrsTempSnsrsADCRead_Trimmer_TC_FPGA_Error + 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 + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all TemperatureSensors.isADCReadValid test cases Running: isADCReadValid_FPGA_Error_Not_Zero Preparing Test Data Running Test Case @@ -29346,103 +29603,102 @@ Updating Coverage Data Test Execution Complete Running all TemperatureSensors.processADCRead test cases - Running: processADCRead_Index_Wrap + Running: processADCRead_Index_Wrap_Inlet_Primary_Case_Group 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: processADCRead_No_Index_Wrap + Running: processADCRead_No_Index_Wrap_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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.handleSelfTestStart test cases - Running: handleSelfTestStart_NominalPath + Running: processADCRead_No_Index_Wrap_FPGA_Board 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.handleSelfTestADCCheck test cases - Running: handleSelfTestADCCheck_Equal_FullScale + Running: processADCRead_No_Index_Wrap_Load_Cell_Group 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSelfTestADCCheck_Greater_Than_Full_Scale + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSelfTestADCCheck_In_Range + Running all TemperatureSensors.handleSelfTestADCCheck test cases + Running: handleSelfTestADCCheck_Equal_FullScale 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSelfTestADCCheck_Less_Than_Zero + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.handleSelfTestConsistencyCheck test cases - Running: handleSelfTestConsistencyCheck_Greater_Than_Max_Temperature_Diff + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleSelfTestConsistencyCheck_In_Range + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.handleExecStart test cases - Running: handleExecStart_Running + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleExecStart_Time_Elapsed + 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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleExecStart_Time_Zero + Running all TemperatureSensors.handleExecGetADCValues test cases + Running: handleExecGetADCValues_Internal_Heaters_Temp_Calc_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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running all TemperatureSensors.handleExecGetADCValues test cases - Running: handleExecGetADCValues_Internal_Heaters_Temp_Calc + Running: handleExecGetADCValues_Not_ADC_Read_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 Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleExecGetADCValues_Not_Elapsed_Time_Elapsed_Override + Running: handleExecGetADCValues_Not_Internal_Heaters_Temp_Calc_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 @@ -29554,9 +29810,542 @@ 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/1226597324/THERMISTORS.env +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:23:34 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/CCAST_.CFG + Reading environment script "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "THERMISTORS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Thermistors + Unit 9 (tdd-sbf-source): Thermistors + 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 Thermistors + Compiling file Thermistors + 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 THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst.tmp +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:23: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/1226597324/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/1226597324/THERMISTORS/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 (1) + 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 500 + 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/1226597324/THERMISTORS.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: calculateTemperature_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: calculateTemperature_NominalPath +(I) @LINE: 37 + >>> Processing Test Case: convertADC2Temperature_NominalPath +(S) @LINE: 50 + >>> Processed Test Case: convertADC2Temperature_NominalPath +(I) @LINE: 58 + >>> Processing Test Case: execThermistors_Default +(S) @LINE: 70 + >>> Processed Test Case: execThermistors_Default +(I) @LINE: 76 + >>> Processing Test Case: execThermistors_Get_ADC_Values +(S) @LINE: 80 + >>> Processed Test Case: execThermistors_Get_ADC_Values +(I) @LINE: 86 + >>> Processing Test Case: execThermistors_Start +(S) @LINE: 90 + >>> Processed Test Case: execThermistors_Start +(I) @LINE: 98 + >>> Processing Test Case: execThermistorsSelfTest_Check_Range +(S) @LINE: 102 + >>> Processed Test Case: execThermistorsSelfTest_Check_Range +(I) @LINE: 108 + >>> Processing Test Case: execThermistorsSelfTest_Complete +(S) @LINE: 113 + >>> Processed Test Case: execThermistorsSelfTest_Complete +(I) @LINE: 119 + >>> Processing Test Case: execThermistorsSelfTest_Default +(S) @LINE: 131 + >>> Processed Test Case: execThermistorsSelfTest_Default +(I) @LINE: 139 + >>> Processing Test Case: getPublishThermistorsDataInterval_No_Override +(S) @LINE: 144 + >>> Processed Test Case: getPublishThermistorsDataInterval_No_Override +(I) @LINE: 150 + >>> Processing Test Case: getPublishThermistorsDataInterval_Override +(S) @LINE: 156 + >>> Processed Test Case: getPublishThermistorsDataInterval_Override +(I) @LINE: 164 + >>> Processing Test Case: getThermistorTemperatureValue_Thermistor_In_Range_Data +(S) @LINE: 171 + >>> Processed Test Case: getThermistorTemperatureValue_Thermistor_In_Range_Data +(I) @LINE: 177 + >>> Processing Test Case: getThermistorTemperatureValue_Thermistor_In_Range_Override +(S) @LINE: 183 + >>> Processed Test Case: getThermistorTemperatureValue_Thermistor_In_Range_Override +(I) @LINE: 189 + >>> Processing Test Case: getThermistorTemperatureValue_Thermistor_Not_In_Range +(S) @LINE: 203 + >>> Processed Test Case: getThermistorTemperatureValue_Thermistor_Not_In_Range +(I) @LINE: 211 + >>> Processing Test Case: handleExecGetADCValues_Not_Read_ADC_Time +(S) @LINE: 214 + >>> Processed Test Case: handleExecGetADCValues_Not_Read_ADC_Time +(I) @LINE: 220 + >>> Processing Test Case: handleExecGetADCValues_Read_ADC_Time +(S) @LINE: 230 + >>> Processed Test Case: handleExecGetADCValues_Read_ADC_Time +(I) @LINE: 238 + >>> Processing Test Case: handleExecStart_FPGA_Delay_Elapsed +(S) @LINE: 242 + >>> Processed Test Case: handleExecStart_FPGA_Delay_Elapsed +(I) @LINE: 248 + >>> Processing Test Case: handleExecStart_FPGA_Delay_Not_Elapsed +(S) @LINE: 251 + >>> Processed Test Case: handleExecStart_FPGA_Delay_Not_Elapsed +(I) @LINE: 259 + >>> Processing Test Case: handleSelfTestCheckRange_Check_Time_Temp_In_Range +(S) @LINE: 268 + >>> Processed Test Case: handleSelfTestCheckRange_Check_Time_Temp_In_Range +(I) @LINE: 274 + >>> Processing Test Case: handleSelfTestCheckRange_Check_Time_Temp_Lower_Range +(S) @LINE: 290 + >>> Processed Test Case: handleSelfTestCheckRange_Check_Time_Temp_Lower_Range +(I) @LINE: 296 + >>> Processing Test Case: handleSelfTestCheckRange_Check_Time_Temp_Upper_Range +(S) @LINE: 312 + >>> Processed Test Case: handleSelfTestCheckRange_Check_Time_Temp_Upper_Range +(I) @LINE: 318 + >>> Processing Test Case: handleSelfTestCheckRange_Not_Check_Time +(S) @LINE: 321 + >>> Processed Test Case: handleSelfTestCheckRange_Not_Check_Time +(I) @LINE: 329 + >>> Processing Test Case: initThermistors_NominalPath +(S) @LINE: 338 + >>> Processed Test Case: initThermistors_NominalPath +(I) @LINE: 346 + >>> Processing Test Case: monitorThermistors_Temperature_Out_Of_Lower_Range +(S) @LINE: 364 + >>> Processed Test Case: monitorThermistors_Temperature_Out_Of_Lower_Range +(I) @LINE: 370 + >>> Processing Test Case: monitorThermistors_Temperature_Out_Of_Upper_Range +(S) @LINE: 388 + >>> Processed Test Case: monitorThermistors_Temperature_Out_Of_Upper_Range +(I) @LINE: 396 + >>> Processing Test Case: publishThermistorsData_Not_Publish_Time +(S) @LINE: 399 + >>> Processed Test Case: publishThermistorsData_Not_Publish_Time +(I) @LINE: 405 + >>> Processing Test Case: publishThermistorsData_Publish_Time +(S) @LINE: 408 + >>> Processed Test Case: publishThermistorsData_Publish_Time +(I) @LINE: 416 + >>> Processing Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_In_Range +(S) @LINE: 426 + >>> Processed Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_In_Range +(I) @LINE: 432 + >>> Processing Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range +(S) @LINE: 437 + >>> Processed Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range +(I) @LINE: 443 + >>> Processing Test Case: testResetMeasuredThermistorOverride_Not_Logged_In +(S) @LINE: 448 + >>> Processed Test Case: testResetMeasuredThermistorOverride_Not_Logged_In +(I) @LINE: 456 + >>> Processing Test Case: testResetThermistorPublishIntervalOverride_Logged_In +(S) @LINE: 465 + >>> Processed Test Case: testResetThermistorPublishIntervalOverride_Logged_In +(I) @LINE: 471 + >>> Processing Test Case: testResetThermistorPublishIntervalOverride_Not_Logged_In +(S) @LINE: 475 + >>> Processed Test Case: testResetThermistorPublishIntervalOverride_Not_Logged_In +(I) @LINE: 483 + >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_In_Ranage +(S) @LINE: 493 + >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_In_Ranage +(I) @LINE: 499 + >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Lower_Ranage +(S) @LINE: 505 + >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Lower_Ranage +(I) @LINE: 511 + >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Upper_Ranage +(S) @LINE: 517 + >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Upper_Ranage +(I) @LINE: 523 + >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range +(S) @LINE: 529 + >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range +(I) @LINE: 535 + >>> Processing Test Case: testSetMeasuredThermistorOverride_Not_Logged_In +(S) @LINE: 541 + >>> Processed Test Case: testSetMeasuredThermistorOverride_Not_Logged_In +(I) @LINE: 549 + >>> Processing Test Case: testSetThermistorPublishIntervalOverride_Logged_In +(S) @LINE: 558 + >>> Processed Test Case: testSetThermistorPublishIntervalOverride_Logged_In +(I) @LINE: 564 + >>> Processing Test Case: testSetThermistorPublishIntervalOverride_Not_Logged_In +(S) @LINE: 569 + >>> Processed Test Case: testSetThermistorPublishIntervalOverride_Not_Logged_In +(S) @LINE: 569 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:23: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/1226597324/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 THERMISTORS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:23: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/1226597324/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all Thermistors.initThermistors test cases + Running: initThermistors_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.execThermistorsSelfTest test cases + Running: execThermistorsSelfTest_Check_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execThermistorsSelfTest_Complete + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execThermistorsSelfTest_Default + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.execThermistors test cases + Running: execThermistors_Default + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execThermistors_Get_ADC_Values + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execThermistors_Start + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.getThermistorTemperatureValue test cases + Running: getThermistorTemperatureValue_Thermistor_In_Range_Data + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getThermistorTemperatureValue_Thermistor_In_Range_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getThermistorTemperatureValue_Thermistor_Not_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.handleSelfTestCheckRange test cases + Running: handleSelfTestCheckRange_Check_Time_Temp_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestCheckRange_Check_Time_Temp_Lower_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestCheckRange_Check_Time_Temp_Upper_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleSelfTestCheckRange_Not_Check_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.handleExecStart test cases + Running: handleExecStart_FPGA_Delay_Elapsed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecStart_FPGA_Delay_Not_Elapsed + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.handleExecGetADCValues test cases + Running: handleExecGetADCValues_Not_Read_ADC_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: handleExecGetADCValues_Read_ADC_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.monitorThermistors test cases + Running: monitorThermistors_Temperature_Out_Of_Lower_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: monitorThermistors_Temperature_Out_Of_Upper_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.convertADC2Temperature test cases + Running: convertADC2Temperature_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.calculateTemperature test cases + Running: calculateTemperature_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.getPublishThermistorsDataInterval test cases + Running: getPublishThermistorsDataInterval_No_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: getPublishThermistorsDataInterval_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.publishThermistorsData test cases + Running: publishThermistorsData_Not_Publish_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: publishThermistorsData_Publish_Time + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.testSetThermistorPublishIntervalOverride test cases + Running: testSetThermistorPublishIntervalOverride_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetThermistorPublishIntervalOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.testResetThermistorPublishIntervalOverride test cases + Running: testResetThermistorPublishIntervalOverride_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetThermistorPublishIntervalOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.testSetMeasuredThermistorOverride test cases + Running: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_In_Ranage + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Lower_Ranage + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Upper_Ranage + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetMeasuredThermistorOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Thermistors.testResetMeasuredThermistorOverride test cases + Running: testResetMeasuredThermistorOverride_Logged_In_Therm_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetMeasuredThermistorOverride_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS/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/4061569705/TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:41 +TIME: 2020-12-05 23:23:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/CCAST_.CFG @@ -29589,9 +30378,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:43 +TIME: 2020-12-05 23:23:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29606,9 +30395,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -29662,24 +30448,9 @@ >>> Processed Test Case: NominalPath (S) @LINE: 140 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04: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/4061569705/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 TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:45 +TIME: 2020-12-05 23:23:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29774,7 +30545,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:04:46 +TIME: 2020-12-05 23:23:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG @@ -29807,9 +30578,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:04:49 +TIME: 2020-12-05 23:23:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29824,9 +30595,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -29981,24 +30749,9 @@ >>> Processed Test Case: u32DiffWithWrap_Wrap (S) @LINE: 591 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:04: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/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/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:04:51 +TIME: 2020-12-05 23:23:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30258,7 +31011,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04:52 +TIME: 2020-12-05 23:23: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/754038457/CCAST_.CFG @@ -30291,9 +31044,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04:55 +TIME: 2020-12-05 23:23:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30308,9 +31061,6 @@ 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 200 Processing script line 250 @@ -30736,24 +31486,9 @@ >>> Processed Test Case: testSetValvesStatesPublishIntervalOverride_Override (S) @LINE: 1341 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04: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/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-11-23 17:04:57 +TIME: 2020-12-05 23:23:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31471,7 +32206,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:04:59 +TIME: 2020-12-05 23:23: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/1297968848/CCAST_.CFG @@ -31504,9 +32239,9 @@ 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 +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:05:02 +TIME: 2020-12-05 23:24:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31521,9 +32256,6 @@ 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 200 Processing script line 350 Processing script line 400 @@ -31647,24 +32379,9 @@ >>> 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-11-23 17:05: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/1297968848/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 WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:05:04 +TIME: 2020-12-05 23:24:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31894,7 +32611,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 17:05:08 +TIME: 2020-12-05 23:24:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31906,7 +32623,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-23 17:05:09 +TIME: 2020-12-05 23:24:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31918,7 +32635,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 17:05:10 +TIME: 2020-12-05 23:24:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31930,7 +32647,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 17:05:11 +TIME: 2020-12-05 23:24:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31942,7 +32659,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 17:05:12 +TIME: 2020-12-05 23:24:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31954,7 +32671,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 17:05:12 +TIME: 2020-12-05 23:24:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31966,7 +32683,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 17:05:13 +TIME: 2020-12-05 23:24:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31978,7 +32695,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 17:05:14 +TIME: 2020-12-05 23:24:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31988,9 +32705,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom management +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:24: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/1563218048/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/1563218048/FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 17:05:15 +TIME: 2020-12-05 23:24:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32002,7 +32731,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 17:05:16 +TIME: 2020-12-05 23:24:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32014,7 +32743,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 17:05:17 +TIME: 2020-12-05 23:24:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32026,7 +32755,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 17:05:18 +TIME: 2020-12-05 23:24:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32038,7 +32767,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 17:05:19 +TIME: 2020-12-05 23:24:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32050,7 +32779,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 17:05:20 +TIME: 2020-12-05 23:24:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32062,7 +32791,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 17:05:20 +TIME: 2020-12-05 23:24:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32074,7 +32803,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 17:05:21 +TIME: 2020-12-05 23:24:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32086,7 +32815,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 17:05:22 +TIME: 2020-12-05 23:24:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32098,7 +32827,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 17:05:23 +TIME: 2020-12-05 23:24:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32110,7 +32839,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 17:05:24 +TIME: 2020-12-05 23:24:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32122,7 +32851,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 17:05:25 +TIME: 2020-12-05 23:24:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32132,9 +32861,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom management +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:24: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/1981101722/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/1981101722/INT_FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 17:05:26 +TIME: 2020-12-05 23:24:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32146,7 +32887,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 17:05:27 +TIME: 2020-12-05 23:24:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32158,7 +32899,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 17:05:28 +TIME: 2020-12-05 23:24:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32170,7 +32911,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 17:05:29 +TIME: 2020-12-05 23:24:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32182,7 +32923,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 17:05:29 +TIME: 2020-12-05 23:24:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32194,7 +32935,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 17:05:30 +TIME: 2020-12-05 23:24:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32206,7 +32947,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 17:05:31 +TIME: 2020-12-05 23:24:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32218,7 +32959,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 17:05:32 +TIME: 2020-12-05 23:24:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32230,7 +32971,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 17:05:33 +TIME: 2020-12-05 23:24:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32242,7 +32983,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 17:05:34 +TIME: 2020-12-05 23:24:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32254,7 +32995,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 17:05:34 +TIME: 2020-12-05 23:24:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32266,7 +33007,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 17:05:35 +TIME: 2020-12-05 23:24:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32278,7 +33019,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 17:05:36 +TIME: 2020-12-05 23:24:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32290,7 +33031,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 17:05:37 +TIME: 2020-12-05 23:24:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32302,7 +33043,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 17:05:38 +TIME: 2020-12-05 23:24:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32314,7 +33055,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 17:05:39 +TIME: 2020-12-05 23:24:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32326,7 +33067,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 17:05:40 +TIME: 2020-12-05 23:24:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32338,7 +33079,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 17:05:40 +TIME: 2020-12-05 23:24:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32350,7 +33091,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 17:05:41 +TIME: 2020-12-05 23:24:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32362,7 +33103,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 17:05:42 +TIME: 2020-12-05 23:24:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32374,7 +33115,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 17:05:43 +TIME: 2020-12-05 23:24:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32386,7 +33127,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 17:05:44 +TIME: 2020-12-05 23:24:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32398,7 +33139,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 17:05:45 +TIME: 2020-12-05 23:24:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32410,7 +33151,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 17:05:46 +TIME: 2020-12-05 23:24:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32422,7 +33163,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:05:47 +TIME: 2020-12-05 23:24:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32434,7 +33175,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:05:48 +TIME: 2020-12-05 23:24:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32446,7 +33187,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:05:48 +TIME: 2020-12-05 23:25:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32458,7 +33199,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:05:49 +TIME: 2020-12-05 23:25:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32470,7 +33211,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:05:50 +TIME: 2020-12-05 23:25:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32482,7 +33223,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:05:51 +TIME: 2020-12-05 23:25:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32494,7 +33235,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:05:52 +TIME: 2020-12-05 23:25:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32506,7 +33247,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:05:53 +TIME: 2020-12-05 23:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32516,9 +33257,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom management +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23:25: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/2444077595/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/2444077595/INT_THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:05:54 +TIME: 2020-12-05 23:25:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32530,7 +33283,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:05:55 +TIME: 2020-12-05 23:25:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32542,7 +33295,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:05:56 +TIME: 2020-12-05 23:25:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32554,7 +33307,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:05:57 +TIME: 2020-12-05 23:25:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32566,7 +33319,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:05:57 +TIME: 2020-12-05 23:25:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32578,7 +33331,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:05:58 +TIME: 2020-12-05 23:25:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32590,7 +33343,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:05:59 +TIME: 2020-12-05 23:25:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32602,7 +33355,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:06:00 +TIME: 2020-12-05 23:25:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32614,7 +33367,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-23 17:06:01 +TIME: 2020-12-05 23:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32626,7 +33379,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:06:02 +TIME: 2020-12-05 23:25:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32638,7 +33391,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-23 17:06:02 +TIME: 2020-12-05 23:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32650,7 +33403,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-23 17:06:03 +TIME: 2020-12-05 23:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32662,7 +33415,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:06:04 +TIME: 2020-12-05 23:25:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32674,7 +33427,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:06:05 +TIME: 2020-12-05 23:25:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32686,7 +33439,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:06:06 +TIME: 2020-12-05 23:25:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32698,7 +33451,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:06:07 +TIME: 2020-12-05 23:25:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32710,7 +33463,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:06:08 +TIME: 2020-12-05 23:25:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32722,7 +33475,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:06:08 +TIME: 2020-12-05 23:25:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32734,7 +33487,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:06:09 +TIME: 2020-12-05 23:25:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32746,7 +33499,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:06:10 +TIME: 2020-12-05 23:25:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32758,7 +33511,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:06:11 +TIME: 2020-12-05 23:25:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32770,7 +33523,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:06:12 +TIME: 2020-12-05 23:25:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32782,7 +33535,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:06:13 +TIME: 2020-12-05 23:25:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32794,7 +33547,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:06:14 +TIME: 2020-12-05 23:25:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32806,7 +33559,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:06:15 +TIME: 2020-12-05 23:25:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32818,7 +33571,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:06:16 +TIME: 2020-12-05 23:25:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32830,7 +33583,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:06:16 +TIME: 2020-12-05 23:25:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32842,7 +33595,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:06:17 +TIME: 2020-12-05 23:25:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32854,7 +33607,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:06:18 +TIME: 2020-12-05 23:25:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32866,7 +33619,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:06:19 +TIME: 2020-12-05 23:25:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32878,7 +33631,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:06:20 +TIME: 2020-12-05 23:25:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32890,7 +33643,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:06:21 +TIME: 2020-12-05 23:25:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32902,7 +33655,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:06:22 +TIME: 2020-12-05 23:25:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32912,9 +33665,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom management +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:25: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/1226597324/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/1226597324/THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:06:23 +TIME: 2020-12-05 23:25:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32926,7 +33691,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:06:23 +TIME: 2020-12-05 23:25:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32938,7 +33703,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:06:24 +TIME: 2020-12-05 23:25:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32950,7 +33715,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:06:25 +TIME: 2020-12-05 23:25:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32969,7 +33734,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-11-23 17:06:27 +TIME: 2020-12-05 23:25:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32981,7 +33746,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-11-23 17:06:28 +TIME: 2020-12-05 23:25:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32993,7 +33758,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 17:06:29 +TIME: 2020-12-05 23:25:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33005,7 +33770,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 17:06:29 +TIME: 2020-12-05 23:25:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33017,7 +33782,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-11-23 17:06:30 +TIME: 2020-12-05 23:25:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33029,7 +33794,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-11-23 17:06:31 +TIME: 2020-12-05 23:25:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33041,7 +33806,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 17:06:32 +TIME: 2020-12-05 23:25:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33053,7 +33818,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 17:06:33 +TIME: 2020-12-05 23:25:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33063,9 +33828,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom actual +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 +TIME: 2020-12-05 23:25: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/1563218048/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/1563218048/FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 17:06:34 +TIME: 2020-12-05 23:25:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33077,7 +33854,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 17:06:35 +TIME: 2020-12-05 23:25:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33089,7 +33866,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 17:06:36 +TIME: 2020-12-05 23:25:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33101,7 +33878,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 17:06:37 +TIME: 2020-12-05 23:26:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33113,7 +33890,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 17:06:38 +TIME: 2020-12-05 23:26:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33125,7 +33902,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 17:06:39 +TIME: 2020-12-05 23:26:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33137,7 +33914,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 17:06:40 +TIME: 2020-12-05 23:26:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33149,7 +33926,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 17:06:41 +TIME: 2020-12-05 23:26:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33161,7 +33938,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 17:06:42 +TIME: 2020-12-05 23:26:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33173,7 +33950,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-11-23 17:06:42 +TIME: 2020-12-05 23:26:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33185,7 +33962,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 17:06:43 +TIME: 2020-12-05 23:26:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33197,7 +33974,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 17:06:44 +TIME: 2020-12-05 23:26:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33207,9 +33984,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom actual +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 +TIME: 2020-12-05 23:26: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/1981101722/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/1981101722/INT_FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 17:06:45 +TIME: 2020-12-05 23:26:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33221,7 +34010,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 17:06:46 +TIME: 2020-12-05 23:26:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33233,7 +34022,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 17:06:47 +TIME: 2020-12-05 23:26:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33245,7 +34034,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 17:06:48 +TIME: 2020-12-05 23:26:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33257,7 +34046,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 17:06:49 +TIME: 2020-12-05 23:26:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33269,7 +34058,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 17:06:50 +TIME: 2020-12-05 23:26:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33281,7 +34070,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 17:06:51 +TIME: 2020-12-05 23:26:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33293,7 +34082,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 17:06:51 +TIME: 2020-12-05 23:26:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33305,7 +34094,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 17:06:52 +TIME: 2020-12-05 23:26:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33317,7 +34106,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 17:06:53 +TIME: 2020-12-05 23:26:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33329,7 +34118,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 17:06:54 +TIME: 2020-12-05 23:26:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33341,7 +34130,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 17:06:55 +TIME: 2020-12-05 23:26:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33353,7 +34142,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 17:06:55 +TIME: 2020-12-05 23:26:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33365,7 +34154,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 17:06:56 +TIME: 2020-12-05 23:26:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33377,7 +34166,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 17:06:57 +TIME: 2020-12-05 23:26:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33389,7 +34178,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 17:06:58 +TIME: 2020-12-05 23:26:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33401,7 +34190,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 17:06:59 +TIME: 2020-12-05 23:26:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33413,7 +34202,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 17:07:00 +TIME: 2020-12-05 23:26:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33425,7 +34214,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 17:07:01 +TIME: 2020-12-05 23:26:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33437,7 +34226,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 17:07:01 +TIME: 2020-12-05 23:26:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33449,7 +34238,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-11-23 17:07:02 +TIME: 2020-12-05 23:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33461,7 +34250,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 17:07:03 +TIME: 2020-12-05 23:26:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33473,7 +34262,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-11-23 17:07:04 +TIME: 2020-12-05 23:26:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33485,7 +34274,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 17:07:05 +TIME: 2020-12-05 23:26:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33497,7 +34286,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:07:06 +TIME: 2020-12-05 23:26:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33509,7 +34298,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-11-23 17:07:07 +TIME: 2020-12-05 23:26:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33521,7 +34310,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-11-23 17:07:08 +TIME: 2020-12-05 23:26:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33533,7 +34322,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:07:09 +TIME: 2020-12-05 23:26:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33545,7 +34334,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:07:10 +TIME: 2020-12-05 23:26:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33557,7 +34346,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:07:11 +TIME: 2020-12-05 23:26:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33569,7 +34358,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:07:11 +TIME: 2020-12-05 23:26:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33581,7 +34370,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:07:12 +TIME: 2020-12-05 23:26:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33591,9 +34380,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom actual +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 +TIME: 2020-12-05 23: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/2444077595/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/2444077595/INT_THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:07:13 +TIME: 2020-12-05 23:26:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33605,7 +34406,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:07:14 +TIME: 2020-12-05 23:26:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33617,7 +34418,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:07:15 +TIME: 2020-12-05 23:26:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33629,7 +34430,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:07:16 +TIME: 2020-12-05 23:26:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33641,7 +34442,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-11-23 17:07:17 +TIME: 2020-12-05 23:26:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33653,7 +34454,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:07:18 +TIME: 2020-12-05 23:26:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33665,7 +34466,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-11-23 17:07:18 +TIME: 2020-12-05 23:26:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33677,7 +34478,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:07:19 +TIME: 2020-12-05 23:26:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33689,7 +34490,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-11-23 17:07:20 +TIME: 2020-12-05 23:26:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33701,7 +34502,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:07:21 +TIME: 2020-12-05 23:26:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33713,7 +34514,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-11-23 17:07:22 +TIME: 2020-12-05 23:26:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33725,7 +34526,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-11-23 17:07:22 +TIME: 2020-12-05 23:26:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33737,7 +34538,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:07:23 +TIME: 2020-12-05 23:26:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33749,7 +34550,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:07:24 +TIME: 2020-12-05 23:26:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33761,7 +34562,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:07:25 +TIME: 2020-12-05 23:27:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33773,7 +34574,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:07:26 +TIME: 2020-12-05 23:27:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33785,7 +34586,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:07:27 +TIME: 2020-12-05 23:27:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33797,7 +34598,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:07:28 +TIME: 2020-12-05 23:27:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33809,7 +34610,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:07:29 +TIME: 2020-12-05 23:27:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33821,7 +34622,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-11-23 17:07:30 +TIME: 2020-12-05 23:27:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33833,7 +34634,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:07:31 +TIME: 2020-12-05 23:27:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33845,7 +34646,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:07:31 +TIME: 2020-12-05 23:27:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33857,7 +34658,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-11-23 17:07:32 +TIME: 2020-12-05 23:27:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33869,7 +34670,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-11-23 17:07:33 +TIME: 2020-12-05 23:27:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33881,7 +34682,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:07:34 +TIME: 2020-12-05 23:27:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33893,7 +34694,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:07:36 +TIME: 2020-12-05 23:27:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33905,7 +34706,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-11-23 17:07:37 +TIME: 2020-12-05 23:27:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33917,7 +34718,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-11-23 17:07:38 +TIME: 2020-12-05 23:27:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33929,7 +34730,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:07:39 +TIME: 2020-12-05 23:27:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33941,7 +34742,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:07:40 +TIME: 2020-12-05 23:27:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33953,7 +34754,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:07:41 +TIME: 2020-12-05 23:27:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33965,7 +34766,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:07:42 +TIME: 2020-12-05 23:27:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33977,7 +34778,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:07:43 +TIME: 2020-12-05 23:27:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33987,9 +34788,21 @@ 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". +COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom actual +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 +TIME: 2020-12-05 23:27: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/1226597324/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/1226597324/THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:07:44 +TIME: 2020-12-05 23:27:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34001,7 +34814,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-11-23 17:07:44 +TIME: 2020-12-05 23:27:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34013,7 +34826,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:07:45 +TIME: 2020-12-05 23:27:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34025,7 +34838,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:07:47 +TIME: 2020-12-05 23:27:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) Index: results/cppcheck.log =================================================================== diff -u -r5deb1226f003e7d2e5c628377e31b914468f8ecf -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- results/cppcheck.log (.../cppcheck.log) (revision 5deb1226f003e7d2e5c628377e31b914468f8ecf) +++ results/cppcheck.log (.../cppcheck.log) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1,120 +1,124 @@ Checking dgfirmware/firmware/App/Controllers/ConcentratePumps.c ... -1/48 files checked 2% done +1/50 files checked 1% done Checking dgfirmware/firmware/App/Controllers/ConductivitySensors.c ... -2/48 files checked 4% done +2/50 files checked 3% 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... -3/48 files checked 6% done +3/50 files checked 5% done +Checking dgfirmware/firmware/App/Controllers/Fans.c ... +4/50 files checked 7% done Checking dgfirmware/firmware/App/Controllers/Heaters.c ... Checking dgfirmware/firmware/App/Controllers/Heaters.c: DEBUG_ENABLED... Checking dgfirmware/firmware/App/Controllers/Heaters.c: DEBUG_ENABLED;ENABLE_DIP_SWITCHES... -Checking dgfirmware/firmware/App/Controllers/Heaters.c: DEBUG_ENABLED;HEATERS_DEBUG... Checking dgfirmware/firmware/App/Controllers/Heaters.c: ENABLE_DIP_SWITCHES... Checking dgfirmware/firmware/App/Controllers/Heaters.c: _VECTORCAST_... -4/48 files checked 8% done +5/50 files checked 9% done Checking dgfirmware/firmware/App/Controllers/LoadCell.c ... -5/48 files checked 10% done +6/50 files checked 11% done Checking dgfirmware/firmware/App/Controllers/Pressures.c ... Checking dgfirmware/firmware/App/Controllers/Pressures.c: DEBUG_ENABLED... Checking dgfirmware/firmware/App/Controllers/Pressures.c: DEBUG_ENABLED;PRESSURES_DEBUG... -6/48 files checked 12% done +7/50 files checked 13% done Checking dgfirmware/firmware/App/Controllers/ROPump.c ... Checking dgfirmware/firmware/App/Controllers/ROPump.c: DEBUG_ENABLED... Checking dgfirmware/firmware/App/Controllers/ROPump.c: DEBUG_ENABLED;EMC_TEST_BUILD;ENABLE_DIP_SWITCHES... Checking dgfirmware/firmware/App/Controllers/ROPump.c: DEBUG_ENABLED;ENABLE_DIP_SWITCHES... Checking dgfirmware/firmware/App/Controllers/ROPump.c: EMC_TEST_BUILD... Checking dgfirmware/firmware/App/Controllers/ROPump.c: ENABLE_DIP_SWITCHES... -7/48 files checked 14% done +8/50 files checked 15% done Checking dgfirmware/firmware/App/Controllers/TemperatureSensors.c ... -8/48 files checked 16% done +9/50 files checked 17% done +Checking dgfirmware/firmware/App/Controllers/Thermistors.c ... +10/50 files checked 19% done Checking dgfirmware/firmware/App/Controllers/Valves.c ... -9/48 files checked 18% done +11/50 files checked 21% done Checking dgfirmware/firmware/App/Drivers/CPLD.c ... -10/48 files checked 20% done +12/50 files checked 23% done Checking dgfirmware/firmware/App/Drivers/Comm.c ... Checking dgfirmware/firmware/App/Drivers/Comm.c: DEBUG_ENABLED... -11/48 files checked 22% done +13/50 files checked 25% done Checking dgfirmware/firmware/App/Drivers/InternalADC.c ... -12/48 files checked 24% done +14/50 files checked 27% done Checking dgfirmware/firmware/App/Drivers/SafetyShutdown.c ... -13/48 files checked 26% done +15/50 files checked 29% done Checking dgfirmware/firmware/App/Modes/ModeChemicalDisinfect.c ... -14/48 files checked 28% done +16/50 files checked 31% done Checking dgfirmware/firmware/App/Modes/ModeDrain.c ... -15/48 files checked 30% done +17/50 files checked 33% done Checking dgfirmware/firmware/App/Modes/ModeFault.c ... -16/48 files checked 32% done +18/50 files checked 35% done Checking dgfirmware/firmware/App/Modes/ModeFill.c ... Checking dgfirmware/firmware/App/Modes/ModeFill.c: DISABLE_DIALYSATE_CHECK... -17/48 files checked 34% done +19/50 files checked 37% done Checking dgfirmware/firmware/App/Modes/ModeFlush.c ... -18/48 files checked 36% done +20/50 files checked 39% done Checking dgfirmware/firmware/App/Modes/ModeHeatDisinfect.c ... -19/48 files checked 39% done +21/50 files checked 41% 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... -20/48 files checked 41% done +Checking dgfirmware/firmware/App/Modes/ModeInitPOST.c: _VECTORCAST_... +22/50 files checked 43% done Checking dgfirmware/firmware/App/Modes/ModeRecirculate.c ... -21/48 files checked 43% done +23/50 files checked 45% done Checking dgfirmware/firmware/App/Modes/ModeService.c ... -22/48 files checked 45% done +24/50 files checked 47% done Checking dgfirmware/firmware/App/Modes/ModeSolo.c ... -23/48 files checked 47% done +25/50 files checked 49% done Checking dgfirmware/firmware/App/Modes/ModeStandby.c ... -24/48 files checked 49% done +26/50 files checked 51% done Checking dgfirmware/firmware/App/Modes/OperationModes.c ... -25/48 files checked 51% done +27/50 files checked 53% 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: DEBUG_ENABLED... -26/48 files checked 53% done +28/50 files checked 55% done Checking dgfirmware/firmware/App/Services/CommBuffers.c ... Checking dgfirmware/firmware/App/Services/CommBuffers.c: DEBUG_ENABLED... -27/48 files checked 55% done +29/50 files checked 57% done Checking dgfirmware/firmware/App/Services/FPGA.c ... Checking dgfirmware/firmware/App/Services/FPGA.c: DEBUG_ENABLED... Checking dgfirmware/firmware/App/Services/FPGA.c: RM46_EVAL_BOARD_TARGET... -28/48 files checked 57% done +30/50 files checked 59% done Checking dgfirmware/firmware/App/Services/Interrupts.c ... Checking dgfirmware/firmware/App/Services/Interrupts.c: DEBUG_ENABLED... -29/48 files checked 59% done +31/50 files checked 61% done Checking dgfirmware/firmware/App/Services/MsgQueues.c ... -30/48 files checked 61% done +32/50 files checked 63% done Checking dgfirmware/firmware/App/Services/PIControllers.c ... Checking dgfirmware/firmware/App/Services/PIControllers.c: DEBUG_ENABLED... -31/48 files checked 63% done +33/50 files checked 65% done Checking dgfirmware/firmware/App/Services/Reservoirs.c ... Checking dgfirmware/firmware/App/Services/Reservoirs.c: DEBUG_ENABLED... -32/48 files checked 65% done +34/50 files checked 67% done Checking dgfirmware/firmware/App/Services/SystemComm.c ... Checking dgfirmware/firmware/App/Services/SystemComm.c: DEBUG_ENABLED... -33/48 files checked 67% done +35/50 files checked 69% done Checking dgfirmware/firmware/App/Services/SystemCommMessages.c ... Checking dgfirmware/firmware/App/Services/SystemCommMessages.c: DEBUG_ENABLED... -34/48 files checked 69% done +36/50 files checked 71% done Checking dgfirmware/firmware/App/Services/WatchdogMgmt.c ... Checking dgfirmware/firmware/App/Services/WatchdogMgmt.c: DEBUG_ENABLED... -35/48 files checked 71% done +37/50 files checked 72% done Checking dgfirmware/firmware/App/Tasks/TaskBG.c ... -36/48 files checked 73% done +38/50 files checked 74% done Checking dgfirmware/firmware/App/Tasks/TaskGeneral.c ... Checking dgfirmware/firmware/App/Tasks/TaskGeneral.c: TASK_TIMING_OUTPUT_ENABLED... -37/48 files checked 76% done +39/50 files checked 76% done Checking dgfirmware/firmware/App/Tasks/TaskPriority.c ... Checking dgfirmware/firmware/App/Tasks/TaskPriority.c: TASK_TIMING_OUTPUT_ENABLED... -38/48 files checked 78% done +40/50 files checked 78% done Checking dgfirmware/firmware/App/Tasks/TaskTimer.c ... Checking dgfirmware/firmware/App/Tasks/TaskTimer.c: TASK_TIMING_OUTPUT_ENABLED... -39/48 files checked 80% done +41/50 files checked 80% done Checking dgfirmware/firmware/FWCommon/Accel.c ... Checking dgfirmware/firmware/FWCommon/Accel.c: _DG_... Checking dgfirmware/firmware/FWCommon/Accel.c: _HD_... Checking dgfirmware/firmware/FWCommon/Accel.c: _VECTORCAST_... -40/48 files checked 82% done +42/50 files checked 82% done Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c ... Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c: CPU_BYTE_ORDER... Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c: F021... @@ -127,34 +131,34 @@ Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c: _LITTLE_ENDIAN;__little_endian__... Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c: __ARMCC_VERSION... Checking dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c: __GNUC__... -41/48 files checked 84% done +43/50 files checked 84% done Checking dgfirmware/firmware/FWCommon/NVDataMgmt.c ... Checking dgfirmware/firmware/FWCommon/NVDataMgmt.c: _DG_... Checking dgfirmware/firmware/FWCommon/NVDataMgmt.c: _HD_... Checking dgfirmware/firmware/FWCommon/NVDataMgmt.c: _VECTORCAST_... -42/48 files checked 86% done +44/50 files checked 86% done Checking dgfirmware/firmware/FWCommon/PersistentAlarm.c ... Checking dgfirmware/firmware/FWCommon/PersistentAlarm.c: _DG_... Checking dgfirmware/firmware/FWCommon/PersistentAlarm.c: _HD_... Checking dgfirmware/firmware/FWCommon/PersistentAlarm.c: _VECTORCAST_... -43/48 files checked 88% done +45/50 files checked 88% done Checking dgfirmware/firmware/FWCommon/RTC.c ... Checking dgfirmware/firmware/FWCommon/RTC.c: _DG_... Checking dgfirmware/firmware/FWCommon/RTC.c: _VECTORCAST_... -44/48 files checked 90% done +46/50 files checked 90% done Checking dgfirmware/firmware/FWCommon/Timers.c ... Checking dgfirmware/firmware/FWCommon/Timers.c: _DG_... Checking dgfirmware/firmware/FWCommon/Timers.c: _VECTORCAST_... -45/48 files checked 92% done +47/50 files checked 92% done Checking dgfirmware/firmware/FWCommon/Utilities.c ... Checking dgfirmware/firmware/FWCommon/Utilities.c: _DG_... Checking dgfirmware/firmware/FWCommon/Utilities.c: _HD_... Checking dgfirmware/firmware/FWCommon/Utilities.c: _VECTORCAST_... -46/48 files checked 94% done +48/50 files checked 94% done Checking dgfirmware/firmware/FWCommon/irqDispatch_c.c ... Checking dgfirmware/firmware/FWCommon/irqDispatch_c.c: __TI_VIM_128CH__... Checking dgfirmware/firmware/FWCommon/irqDispatch_c.c: __TI_VIM_96CH__... Checking dgfirmware/firmware/FWCommon/irqDispatch_c.c: __TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__... -47/48 files checked 96% done +49/50 files checked 96% done Checking dgfirmware/firmware/source/sys_main.c ... -48/48 files checked 100% done +50/50 files checked 100% done Index: results/cppcheckError.csv =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -rfeb93744f73bc0a3d58841bb02bd05c38357f35d --- results/cppcheckError.csv (.../cppcheckError.csv) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) @@ -1,20 +1,21 @@ File, Line No., Severity, Issue, Description dgfirmware/firmware/App/Controllers/DrainPump.c,166,style,unreadVariable,Variable 'drnPumpSpd' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/Fans.c,222,style,redundantAssignment,Variable 'state' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Controllers/Fans.c,318,style,redundantAssignment,Variable 'temperature' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Controllers/ROPump.c,338,style,unreadVariable,Variable 'tgtPres' is assigned a value that is never used. dgfirmware/firmware/App/Controllers/ROPump.c,339,style,unreadVariable,Variable 'actPres' is assigned a value that is never used. dgfirmware/firmware/App/Controllers/ROPump.c,340,style,unusedVariable,Unused variable: newPWM -dgfirmware/firmware/App/Controllers/TemperatureSensors.c,528,style,knownConditionTrueFalse,Condition 'fpgaError==0' is always true -dgfirmware/firmware/App/Controllers/TemperatureSensors.c,525,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Controllers/TemperatureSensors.c,575,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,163,style,redundantAssignment,Variable 'isInletWaterReady' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,199,style,redundantAssignment,Variable 'isDialysateProductionGood' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,231,style,redundantAssignment,Variable 'isDialysateConductivityBad' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Services/Interrupts.c,172,style,variableScope,The scope of the variable 'debugStr' can be reduced. dgfirmware/firmware/App/Services/PIControllers.c,76,style,variableScope,The scope of the variable 'controller' can be reduced. dgfirmware/firmware/App/Services/Reservoirs.c,269,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. dgfirmware/firmware/FWCommon/FlashDrvr/Fapi_UserDefinedFunctions.c,0,information,toomanyconfigs,Too many #ifdef configurations - cppcheck only checks 12 of 21 configurations. Use --force to check all configurations. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,1526,style,variableScope,The scope of the variable 'quotient' can be reduced. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,1527,style,variableScope,The scope of the variable 'modulus' can be reduced. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,1530,style,variableScope,The scope of the variable 'i' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1566,style,variableScope,The scope of the variable 'quotient' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1567,style,variableScope,The scope of the variable 'modulus' can be reduced. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,1570,style,variableScope,The scope of the variable 'i' can be reduced. dgfirmware/firmware/FWCommon/RTC.c,1195,style,redundantAssignment,Variable 'result' is reassigned a value before the old one has been used. dgfirmware/firmware/FWCommon/RTC.c,782,style,variableScope,The scope of the variable 'decimalHigh' can be reduced. dgfirmware/firmware/FWCommon/RTC.c,783,style,variableScope,The scope of the variable 'decimalLow' can be reduced. @@ -29,57 +30,60 @@ dgfirmware/firmware/App/Services/Interrupts.c,312,style,unusedFunction,The function 'dmaGroupANotification' is never used. dgfirmware/firmware/App/Services/AlarmMgmt.c,70,style,unusedFunction,The function 'execAlarmMgmt' is never used. dgfirmware/firmware/App/Controllers/DrainPump.c,381,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,615,style,unusedFunction,The function 'execNVDataMgmtSelfTest' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,776,style,unusedFunction,The function 'execNVDataMgmt' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,655,style,unusedFunction,The function 'execNVDataMgmtSelfTest' is never used. dgfirmware/firmware/App/Controllers/ROPump.c,482,style,unusedFunction,The function 'execROPumpTest' is never used. dgfirmware/firmware/FWCommon/RTC.c,364,style,unusedFunction,The function 'execRTC' is never used. dgfirmware/firmware/FWCommon/Accel.c,665,style,unusedFunction,The function 'getAccelCalibration' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,724,style,unusedFunction,The function 'getBootloaderFlag' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,764,style,unusedFunction,The function 'getBootloaderFlag' is never used. dgfirmware/firmware/FWCommon/Utilities.c,285,style,unusedFunction,The function 'getCriticalData' is never used. dgfirmware/firmware/App/Modes/ModeChemicalDisinfect.c,94,style,unusedFunction,The function 'getCurrentChemicalDisinfectState' is never used. dgfirmware/firmware/App/Modes/ModeDrain.c,139,style,unusedFunction,The function 'getCurrentDrainState' is never used. dgfirmware/firmware/App/Modes/ModeFault.c,88,style,unusedFunction,The function 'getCurrentFaultState' is never used. dgfirmware/firmware/App/Modes/ModeFlush.c,92,style,unusedFunction,The function 'getCurrentFlushState' is never used. dgfirmware/firmware/App/Modes/ModeHeatDisinfect.c,93,style,unusedFunction,The function 'getCurrentHeatDisinfectState' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,225,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,241,style,unusedFunction,The function 'getCurrentInitAndPOSTState' is never used. dgfirmware/firmware/App/Modes/ModeService.c,88,style,unusedFunction,The function 'getCurrentServiceState' is never used. dgfirmware/firmware/App/Modes/ModeSolo.c,118,style,unusedFunction,The function 'getCurrentSoloState' is never used. dgfirmware/firmware/App/Modes/ModeStandby.c,234,style,unusedFunction,The function 'getCurrentStandbyState' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,595,style,unusedFunction,The function 'getDisinfectionDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,332,style,unusedFunction,The function 'getMfgData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,635,style,unusedFunction,The function 'getDisinfectionDate' is never used. +dgfirmware/firmware/App/Controllers/Fans.c,190,style,unusedFunction,The function 'getMeasuredFanRPM' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,340,style,unusedFunction,The function 'getMfgData' is never used. dgfirmware/firmware/App/Services/PIControllers.c,188,style,unusedFunction,The function 'getPIControllerSignals' is never used. dgfirmware/firmware/FWCommon/RTC.c,422,style,unusedFunction,The function 'getRTCTimestamp' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,425,style,unusedFunction,The function 'getServiceDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,518,style,unusedFunction,The function 'getTreatmentTime' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,555,style,unusedFunction,The function 'getWaterConsumption' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,279,style,unusedFunction,The function 'initNVDataMgmt' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,175,style,unusedFunction,The function 'isPOSTCompleted' is never used. -dgfirmware/firmware/App/Modes/ModeInitPOST.c,188,style,unusedFunction,The function 'isPOSTPassed' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,465,style,unusedFunction,The function 'getServiceDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,558,style,unusedFunction,The function 'getTreatmentTime' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,595,style,unusedFunction,The function 'getWaterConsumption' is never used. +dgfirmware/firmware/App/Services/SystemCommMessages.c,1480,style,unusedFunction,The function 'handleTestROPumpSetPointOverrideRequest' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,287,style,unusedFunction,The function 'initNVDataMgmt' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,191,style,unusedFunction,The function 'isPOSTCompleted' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,204,style,unusedFunction,The function 'isPOSTPassed' is never used. dgfirmware/firmware/App/Drivers/Comm.c,259,style,unusedFunction,The function 'isSCI2DMATransmitInProgress' is never used. dgfirmware/firmware/App/Drivers/SafetyShutdown.c,71,style,unusedFunction,The function 'isSafetyShutdownActivated' is never used. dgfirmware/firmware/App/Services/Interrupts.c,91,style,unusedFunction,The function 'phantomInterrupt' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,471,style,unusedFunction,The function 'readLogData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,511,style,unusedFunction,The function 'readLogData' is never used. dgfirmware/firmware/FWCommon/Utilities.c,400,style,unusedFunction,The function 'resetCriticalData' is never used. dgfirmware/firmware/App/Services/Interrupts.c,113,style,unusedFunction,The function 'rtiNotification' is never used. dgfirmware/firmware/App/Services/Interrupts.c,242,style,unusedFunction,The function 'sciNotification' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,703,style,unusedFunction,The function 'setBootloaderFlag' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,743,style,unusedFunction,The function 'setBootloaderFlag' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,122,style,unusedFunction,The function 'setCPLDLampBlue' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,102,style,unusedFunction,The function 'setCPLDLampGreen' is never used. dgfirmware/firmware/App/Drivers/CPLD.c,142,style,unusedFunction,The function 'setCPLDLampRed' is never used. dgfirmware/firmware/FWCommon/Utilities.c,360,style,unusedFunction,The function 'setCriticalData' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,570,style,unusedFunction,The function 'setDisinfectionDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,315,style,unusedFunction,The function 'setMfgData' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,400,style,unusedFunction,The function 'setServiceDate' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,494,style,unusedFunction,The function 'setTreatmentTime' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,532,style,unusedFunction,The function 'setWaterConsumption' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,610,style,unusedFunction,The function 'setDisinfectionDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,323,style,unusedFunction,The function 'setMfgData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,440,style,unusedFunction,The function 'setServiceDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,534,style,unusedFunction,The function 'setTreatmentTime' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,572,style,unusedFunction,The function 'setWaterConsumption' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,242,style,unusedFunction,The function 'stopDrainCmd' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,192,style,unusedFunction,The function 'stopFillCmd' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,407,style,unusedFunction,The function 'testResetCalibrationData' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,476,style,unusedFunction,The function 'testResetDGActiveReservoirOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,566,style,unusedFunction,The function 'testResetReservoirDrainVolumeMlOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,521,style,unusedFunction,The function 'testResetReservoirFillVolumeMlOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,455,style,unusedFunction,The function 'testSetDGActiveReservoirOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,544,style,unusedFunction,The function 'testSetReservoirDrainVolumeMlOverride' is never used. dgfirmware/firmware/App/Services/Reservoirs.c,499,style,unusedFunction,The function 'testSetReservoirFillVolumeMlOverride' is never used. dgfirmware/firmware/FWCommon/Utilities.c,161,style,unusedFunction,The function 'u32DiffWithWrap' is never used. -dgfirmware/firmware/FWCommon/NVDataMgmt.c,447,style,unusedFunction,The function 'writeLogData' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,487,style,unusedFunction,The function 'writeLogData' is never used. ,,information,missingInclude,Cppcheck cannot find all the include files (use --check-config for details)