Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -r3461c140ba07e74863dee1d4c51d0119076fecf8 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -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 fill the limit argument with the right value + 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 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 273f797e1b0f70a9d5720d1ffff29d26ff5144af) +++ firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -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 fill the limit argument with the right value + 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 fill the limit argument with the right value + 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 fill the limit argument with the right value + 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/DrainPump.c =================================================================== diff -u -r00a3d52090bee79dac6e9eed3bd79342fcbca83f -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision 00a3d52090bee79dac6e9eed3bd79342fcbca83f) +++ firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -63,7 +63,7 @@ #define MAX_ALLOWED_TARGET_DELTA_PRESSURE 10.0 ///< Maximum allowed delta pressure for closed loop control. #define MAX_ALLOWED_OPEN_LOOP_RPM_OUT_OF_RANGE 20 ///< Maximum allowed RPM out of range from target RPM in open loop. -#define OPEN_LOOP_RPM_OUT_OF_RANGE_TIME_OUT ( 5000 / TASK_PRIORITY_INTERVAL ) ///< Open loop RPM out of range time out in counts. +#define OPEN_LOOP_RPM_OUT_OF_RANGE_TIME_OUT 5000 ///< Open loop RPM out of range time out in ms. /// Enumeration of drain pump states. typedef enum DrainPump_States @@ -110,18 +110,13 @@ static BOOL hasClosedLoopBeenRequested = FALSE; ///< Closed loop pump control flag static U32 currentDrainPumpRPM = 0; ///< Current drain pump RPM from feedback -/* These variables are used for POST. POST will be implemented later +/* TODO These variables are used for POST. POST will be implemented later static DRAIN_PUMP_SELF_TEST_STATE_T drainPumpSelfTestState = DRAIN_PUMP_SELF_TEST_STATE_START; ///< current drain pump self test state static U32 drainPumpSelfTestTimerCount = 0; ///< timer counter for drain pump self test */ -/* - * Conversion of ADC count from micro seconds resolution to seconds and also converting toggle to pulse period. - * RPM = ( 1 / ADC ) * conversion coefficient. - * ADC = ( 1 / RPM ) * conversion coefficient. - */ /// ADC to RPM conversion coefficient or RPM to ADC conversion -static const F32 conversionCoeff = SEC_PER_MIN / ( TOGGLE_PERIOD_RESOLUTION_SECONDS * ROTATIONAL_TO_TOGGLE_PERIOD_CONVERSION ); +static const F32 CONVERSION_COEFF = SEC_PER_MIN / ( TOGGLE_PERIOD_RESOLUTION_SECONDS * ROTATIONAL_TO_TOGGLE_PERIOD_CONVERSION ); // ********** private function prototypes ********** @@ -248,14 +243,16 @@ /*********************************************************************//** * @brief * The execDrainPumpMonitor function executes the drain pump monitor. + * RPM = ( 1 / ADC ) * conversion coefficient. + * ADC = ( 1 / RPM ) * conversion coefficient. * @details Inputs: currentDrainPumpRPM * @details Outputs: currentDrainPumpRPM * @return none *************************************************************************/ void execDrainPumpMonitor( void ) { // Convert speed ADC to RPM - currentDrainPumpRPM = conversionCoeff / getFPGADrainPumpSpeed(); + currentDrainPumpRPM = CONVERSION_COEFF / getFPGADrainPumpSpeed(); // The RPM is only checked in open loop state that the pump is run at a fixed RPM. // The persistent alarm waits for a couple of seconds before raising an alarm, this is supposed to cover @@ -265,7 +262,8 @@ // Check if RPM out of range. Using fabs since the read RPM can be above or below the target. BOOL isRPMOutOfRange = fabs( getTargetDrainPumpRPM() - currentDrainPumpRPM ) > MAX_ALLOWED_OPEN_LOOP_RPM_OUT_OF_RANGE; - checkPersistentAlarm( PERSISTENT_ALARM_DRAIN_PUMP_RPM_OUT_OF_RANGE, isRPMOutOfRange, currentDrainPumpRPM ); + // TODO fill the limit argument with the right value + checkPersistentAlarm( PERSISTENT_ALARM_DRAIN_PUMP_RPM_OUT_OF_RANGE, isRPMOutOfRange, currentDrainPumpRPM, 0 ); } // Publish drain pump data on interval @@ -305,13 +303,13 @@ /*********************************************************************//** * @brief - * The execDrainPumpTest function executes the state machine for the drain + * The execDrainPumpSelfTest function executes the state machine for the drain * pump self-test. * @detailsInputs: TODO FILL UP * @details Outputs: TODO FILL UP * @return: the current state of the Drain Pump self test. *************************************************************************/ -SELF_TEST_STATUS_T execDrainPumpTest( void ) +SELF_TEST_STATUS_T execDrainPumpSelfTest( void ) { SELF_TEST_STATUS_T result = SELF_TEST_STATUS_FAILED; @@ -359,23 +357,6 @@ { DRAIN_PUMP_STATE_T result = DRAIN_PUMP_OFF_STATE; -#ifdef DEBUG_ENABLED -#ifdef ENABLE_DIP_SWITCHES - // TODO - test code - remove later - if ( GET_DIP_SW2_TEST() ) - { - setValveState( VPI, VALVE_STATE_OPEN ); - setValveState( VRC, VALVE_STATE_DRAIN_C_TO_NO ); - setValveState( VPO, VALVE_STATE_NOFILL_C_TO_NO ); - setDrainPumpTargetRPM( 1000 ); -#ifdef EMC_TEST_BUILD - setTrimmerHeaterTargetTemperature( 50.0 ); - startTrimmerHeater(); -#endif - } -#endif -#endif - // If the target drain pump speed was not 0 and the control mode // is open loop, set the drain pump to open loop if ( getTargetDrainPumpRPM() > 0 && drainPumpControlModeSet == PUMP_CONTROL_MODE_OPEN_LOOP ) @@ -427,30 +408,14 @@ F32 outletDrainPressure = getMeasuredDGPressure ( PRESSURE_SENSOR_DRAIN_PUMP_OUTLET ); F32 pressureDiff = outletDrainPressure - inletDrainPressure; F32 dac = runPIController( PI_CONTROLLER_ID_DRAIN_PUMP, getTargetDrainPumpDeltaP(), pressureDiff ); + // The PI controller sends the DAC out and it is rounded to the nearest offset and is fed to the FPGA drainPumpDACSet = (U32)( dac + FLOAT_TO_INT_ROUNDUP_OFFSET ); setFPGADrainPumpSpeed( drainPumpDACSet ); drainControlTimerCounter = 0; } -#ifdef DEBUG_ENABLED -#ifdef ENABLE_DIP_SWITCHES - // TODO - test code - remove later - if ( !GET_DIP_SW2_TEST() ) - { - signalDrainPumpHardStop(); - setValveState( VPI, VALVE_STATE_OPEN ); - setValveState( VRC, VALVE_STATE_DRAIN_C_TO_NO ); - setValveState( VPO, VALVE_STATE_FILL_C_TO_NC ); -#ifdef EMC_TEST_BUILD - stopTrimmerHeater(); -#endif - result = DRAIN_PUMP_OFF_STATE; - } -#endif -#endif - return result; } Index: firmware/App/Controllers/DrainPump.h =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/DrainPump.h (.../DrainPump.h) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Controllers/DrainPump.h (.../DrainPump.h) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -57,7 +57,7 @@ void signalDrainPumpHardStop( void ); -SELF_TEST_STATUS_T execDrainPumpTest( void ); +SELF_TEST_STATUS_T execDrainPumpSelfTest( void ); U32 getTargetDrainPumpRPM( void ); Index: firmware/App/Controllers/Pressures.c =================================================================== diff -u -r28a4756da770f48c81ab421135c2012550705c74 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 28a4756da770f48c81ab421135c2012550705c74) +++ firmware/App/Controllers/Pressures.c (.../Pressures.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -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 fill the limit argument with the right value + 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 fill the limit argument with the right value + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_PRESSURE_FAULT, isPressureTooLow, pressure, 0 ); } /*********************************************************************//** Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r4d7d40a27130dc813d653f044cbb856b1b7d8481 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 4d7d40a27130dc813d653f044cbb856b1b7d8481) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -467,7 +467,7 @@ U32 presStPt = getTargetROPumpPressure(); F32 measFlow = getMeasuredROFlowRate(); F32 pumpPWMPctDutyCycle = roPumpPWMDutyCyclePctSet * FRACTION_TO_PERCENT_FACTOR; - broadcastROPumpData( presStPt, measFlow, pumpPWMPctDutyCycle ); + //broadcastROPumpData( presStPt, measFlow, pumpPWMPctDutyCycle ); roPumpDataPublicationTimerCounter = 0; } } Index: firmware/App/Controllers/TemperatureSensors.c =================================================================== diff -u -r41c7186ac17200977b632102c9c6e3a07b3eb211 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision 41c7186ac17200977b632102c9c6e3a07b3eb211) +++ firmware/App/Controllers/TemperatureSensors.c (.../TemperatureSensors.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -320,8 +320,9 @@ 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 ); + // TODO fill the limit argument with the right value + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_HIGH_TEMPERATURE, isWaterTempTooHigh, temperature, 0 ); + checkPersistentAlarm( PERSISTENT_ALARM_INLET_WATER_LOW_TEMPERATURE, isWaterTempTooLow, temperature, 0 ); } /*********************************************************************//** Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r3461c140ba07e74863dee1d4c51d0119076fecf8 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 3461c140ba07e74863dee1d4c51d0119076fecf8) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -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 fill the limit argument with the right value + checkPersistentAlarm( PERSISTENT_ALARM_RO_PUMP_FLOW_RATE_OUT_OF_RANGE, isROPumpFlowRateOutOfRange, measuredROFlowRate, 0 ); } /**@}*/ Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r4d7d40a27130dc813d653f044cbb856b1b7d8481 -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 4d7d40a27130dc813d653f044cbb856b1b7d8481) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -17,6 +17,7 @@ #include "Accel.h" #include "CPLD.h" +#include "DrainPump.h" #include "FPGA.h" #include "Heaters.h" #include "ModeInitPOST.h" @@ -126,6 +127,13 @@ postState = handlePOSTStatus( testStatus ); break; +#ifdef _VECTORCAST_ + case DG_POST_DRAIN_PUMP: + testStatus = execDrainPumpSelfTest(); + postState = handlePOSTStatus( testStatus ); + break; +#endif + case DG_POST_STATE_WATCHDOG: testStatus = execWatchdogTest(); handlePOSTStatus( testStatus ); // ignoring return value because last test Index: firmware/App/Services/MessagePayloads.h =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Services/MessagePayloads.h (.../MessagePayloads.h) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -107,14 +107,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/PIControllers.c =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -61,10 +61,10 @@ static PI_CONTROLLER_T piControllers[ NUM_OF_PI_CONTROLLERS_IDS ] = { // Kp Ki uMax uMin ref meas err esw esum ctrl { 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL }, // PI_CONTROLLER_ID_RO_PUMP - { 0.0, 0.0, 0.99, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL }, // I_CONTROLLER_ID_RO_PUMP_RAMP_UP { 0.0, 0.0, 3000, 300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_BIDIRECTIONAL }, // PI_CONTROLLER_ID_DRAIN_PUMP { 0.0, 0.0, 1.39, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL }, // PI_CONTROLLER_ID_PRIMARY_HEATER - { 0.0, 0.0, 0.50, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL } // PI_CONTROLLER_ID_TRIMMER_HEATER + { 0.0, 0.0, 0.50, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL }, // PI_CONTROLLER_ID_TRIMMER_HEATER + { 0.0, 0.0, 0.99, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, CONTROLLER_UNIDIRECTIONAL }, // I_CONTROLLER_ID_RO_PUMP_RAMP_UP }; /*********************************************************************//** Index: firmware/App/Services/PIControllers.h =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Services/PIControllers.h (.../PIControllers.h) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Services/PIControllers.h (.../PIControllers.h) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -31,12 +31,14 @@ // ********** public definitions ********** /// Enumeration of PI controllers. +/// Enumeration of PI controllers. typedef enum ControllerList { PI_CONTROLLER_ID_RO_PUMP = 0, ///< RO Pump controller + PI_CONTROLLER_ID_DRAIN_PUMP, ///< Drain Pump controller PI_CONTROLLER_ID_PRIMARY_HEATER, ///< Primary Heater controller PI_CONTROLLER_ID_TRIMMER_HEATER, ///< Trimmer Heater controller - PI_CONTROLLER_ID_DRAIN_PUMP, ///< Drain Pump controller. + I_CONTROLLER_ID_RO_PUMP_RAMP_UP, ///< RO Pump controller during ramp up time. NUM_OF_PI_CONTROLLERS_IDS ///< Number of PI controllers } PI_CONTROLLER_ID_T; Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -478,46 +478,12 @@ return result; } -/*********************************************************************//** - * @brief - * The broadcastROPumpData function sends out RO pump data. - * @details Inputs: none - * @details Outputs: RO pump data msg constructed and queued - * @param tgtPressure target pressure for RO pump in PSI - * @param measFlow measure RO flow rate in LPM - * @param setPWM set PWM duty cycle in % - * @return TRUE if msg successfully queued for transmit, FALSE if not - *************************************************************************/ -BOOL broadcastROPumpData( U32 tgtPressure, F32 measFlow, F32 setPWM ) -{ - BOOL result; - MESSAGE_T msg; - U08 *payloadPtr = msg.payload; - RO_PUMP_DATA_T payload; - - // create a message record - blankMessage( &msg ); - msg.hdr.msgID = MSG_ID_RO_PUMP_DATA; - msg.hdr.payloadLen = sizeof( RO_PUMP_DATA_T ); - - payload.setROPumpPressure = tgtPressure; - payload.measROFlowRate = measFlow; - payload.roPumpPWM = setPWM; - - memcpy( payloadPtr, &payload, sizeof( RO_PUMP_DATA_T ) ); - - // serialize the message (w/ sync, CRC, and appropriate CAN padding) and add serialized message data to appropriate comm buffer - result = serializeMessage( msg, COMM_BUFFER_OUT_CAN_DG_BROADCAST, ACK_NOT_REQUIRED ); - - return result; -} - /*********************************************************************//** * @brief * The broadcastDrainPumpData function sends out the drain pump data. - * @details Inputs : none - * @details Outputs : Drain pump data msg constructed and queued - * @param drain pump data structure pointer + * @details Inputs: none + * @details Outputs: Drain pump data msg constructed and queued + * @param drainPumpData which is the drain pump data structure pointer * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ BOOL broadcastDrainPumpData( DRAIN_PUMP_DATA_T *drainPumpData ) @@ -1507,25 +1473,25 @@ /*********************************************************************//** * @brief - * The handleTestDrainPumpSetPointOverrideRequest function handles a request to + * The handleTestDrainPumpRPMOverrideRequest function handles a request to * override the drain pump speed set point (in RPM). - * @details - * Inputs : none - * Outputs : message handled + * @details Inputs: none + * @details Outputs: message handled * @param message a pointer to the message to handle * @return none *************************************************************************/ void handleTestDrainPumpRPMOverrideRequest( 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( U32 ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof(TEST_OVERRIDE_PAYLOAD_T) ); + U32 payLoad; - result = testSetTargetDrainPumpRPM( payload.state.u32 ); + memcpy( &payLoad, message->payload, sizeof( U32 ) ); + + result = testSetTargetDrainPumpRPM( payLoad ); } // respond to request @@ -1536,9 +1502,8 @@ * @brief * The handleTestDrainPumpDataBroadcastIntervalOverrideRequest function handles * a request to override the broadcast interval for drain pump data. - * @details - * Inputs : none - * Outputs : message handled + * @details Inputs: none + * @details Outputs: message handled * @param message a pointer to the message to handle * @return none *************************************************************************/ @@ -1672,14 +1637,16 @@ *************************************************************************/ void handleSetDrainPumpDeltaPressureOverrideRequest( MESSAGE_T *message ) { - TEST_OVERRIDE_PAYLOAD_T payload; BOOL result = 0; + /* verify payload length */ - if ( sizeof(TEST_OVERRIDE_PAYLOAD_T) == message->hdr.payloadLen ) + if ( sizeof( F32 ) == message->hdr.payloadLen ) { - memcpy( &payload, message->payload, sizeof(TEST_OVERRIDE_PAYLOAD_T) ); + F32 payLoad; - result = testSetTargetDrainPumpDeltaPressure( (U32)(payload.state.u32) ); + memcpy( &payLoad, message->payload, sizeof( F32 ) ); + + result = testSetTargetDrainPumpDeltaPressure( payLoad ); } /* respond to request */ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -re4b79bd0d31e779619a787f9ce4352d0fd3d4dce -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision e4b79bd0d31e779619a787f9ce4352d0fd3d4dce) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -21,7 +21,6 @@ #include "DrainPump.h" #include "DGCommon.h" #include "MsgQueues.h" -#include "DrainPump.h" /** * @defgroup SystemCommMessages SystemCommMessages @@ -59,9 +58,6 @@ // MSG_ID_DG_VALVES_STATES BOOL broadcastValvesStates( U16 valvesStates ); -// MSG_ID_RO_PUMP_DATA -BOOL broadcastROPumpData( U32 tgtPressure, F32 measFlow, F32 setPWM ); - // MSG_ID_DRAIN_PUMP_DATA BOOL broadcastDrainPumpData( DRAIN_PUMP_DATA_T *drainPumpData ); Index: results/Build_Status_Report.csv =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -1,10 +1,18 @@ Running Project, dgfirmware -Date, Mon Nov 23 16:53:34 PST 2020 +Date, Thu Dec 3 13:24:47 PST 2020 -VectorCAST Pass/Fail Status, Passed +VectorCAST Pass/Fail Status, Failed +The following test(s) failed: +VectorCAST_MinGW_C_LinuxTestSuite_INT_PERSISTENTALARM_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_MODEINITPOST_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_PERSISTENTALARM_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(%):,93,Branch_Cov(%):,96,Pairs_Cov(%):,100 +VectorCAST_MinGW_C_LinuxTestSuite_NVDATAMGMT_management_report.html,Statement_Cov(%):,98,Branch_Cov(%):,97,Pairs_Cov(%):,97 +VectorCAST_MinGW_C_LinuxTestSuite_PICONTROLLERS_management_report.html,Statement_Cov(%):,98,Branch_Cov(%):,96,Pairs_Cov(%):,92 Integration Test Coverage, Passed @@ -21,11 +29,11 @@ systemcommmessages,broadcastLoadCellData systemcommmessages,broadcastValvesStates systemcommmessages,broadcastHeatersData -systemcommmessages,broadcastROPumpData systemcommmessages,broadcastDrainPumpData systemcommmessages,broadcastPressureSensorsData systemcommmessages,broadcastReservoirData systemcommmessages,broadcastTemperatureSensorsData +systemcommmessages,handleTestROPumpSetPointOverrideRequest accel,getAccelCalibration reservoirs,stopFillCmd reservoirs,stopDrainCmd @@ -74,7 +82,6 @@ rtc,handleExecWriteToRAMState rtc,handleExecReadFromRAMState rtc,handleExecReadState -drainpump,execDrainPumpTest List of Untested Modules NVDataMgmt, Missing Integration Test Index: results/VectorCAST.log =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- results/VectorCAST.log (.../VectorCAST.log) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -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-03 13:24:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/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-03 13:24:51 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-03 13:24:52 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-03 13:24: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/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-03 13:24:57 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-03 13:24:58 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-03 13:25: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/2974704408/CCAST_.CFG @@ -1221,7 +1203,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:51 +TIME: 2020-12-03 13:25:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1306,7 +1288,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:53 +TIME: 2020-12-03 13:25:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1321,7 +1303,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-11-23 16:53:53 +TIME: 2020-12-03 13:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1440,7 +1422,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-03 13:25:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG @@ -1475,7 +1457,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:53:57 +TIME: 2020-12-03 13:25:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1491,7 +1473,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 100 Processing script line 200 @@ -1626,7 +1608,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:53:59 +TIME: 2020-12-03 13:25:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1641,7 +1623,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-11-23 16:54:00 +TIME: 2020-12-03 13:25:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1857,7 +1839,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-03 13:25:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG @@ -1890,9 +1872,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-03 13:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1907,9 +1889,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 +2110,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-03 13:25:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2514,7 +2478,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-03 13:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG @@ -2547,9 +2511,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-03 13:25:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2564,9 +2528,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 +2773,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-03 13:25:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3250,7 +3196,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-03 13:25: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/3337817776/CCAST_.CFG @@ -3286,7 +3232,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:19 +TIME: 2020-12-03 13:25:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3352,7 +3298,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:20 +TIME: 2020-12-03 13:25:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3367,7 +3313,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-11-23 16:54:20 +TIME: 2020-12-03 13:25:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3448,7 +3394,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-03 13:25: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/2400209084/CCAST_.CFG @@ -3484,7 +3430,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-11-23 16:54:25 +TIME: 2020-12-03 13:25:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3500,167 +3446,316 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines - Processing script line 100 + Test Script Maintenance Complete (1) + Translated 2 script lines + Processing script line 50 Processing script line 150 Processing script line 200 + Processing script line 250 Processing script line 400 Processing script line 500 + Processing script line 600 + Processing script line 700 + Processing script line 750 + Processing script line 800 + Processing script line 850 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/convertScript-translated.tst (I) @LINE: 24 >>> Processing Test Case: execDrainPumpController_ControlState -(S) @LINE: 36 +(E) Errors from previous script import(s) + >>> (E) @LINE: 27 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 32 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 43 >>> Processed Test Case: execDrainPumpController_ControlState -(I) @LINE: 42 +(I) @LINE: 49 >>> Processing Test Case: execDrainPumpController_InvalidState -(S) @LINE: 48 +(S) @LINE: 62 >>> Processed Test Case: execDrainPumpController_InvalidState -(I) @LINE: 54 +(I) @LINE: 68 >>> Processing Test Case: execDrainPumpController_OffState -(S) @LINE: 66 +(E) Errors from previous script import(s) + >>> (E) @LINE: 57 TEST.VALUE:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 62 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 87 >>> Processed Test Case: execDrainPumpController_OffState -(I) @LINE: 74 - >>> Processing Test Case: execDrainPumpMonitor_NominalPath -(S) @LINE: 78 - >>> Processed Test Case: execDrainPumpMonitor_NominalPath -(I) @LINE: 86 +(I) @LINE: 93 + >>> Processing Test Case: execDrainPumpController_Open_Loop_State +(S) @LINE: 97 + >>> Processed Test Case: execDrainPumpController_Open_Loop_State +(I) @LINE: 105 + >>> Processing Test Case: execDrainPumpMonitor_Not_Open_Loop_Mode +(S) @LINE: 110 + >>> Processed Test Case: execDrainPumpMonitor_Not_Open_Loop_Mode +(I) @LINE: 116 + >>> Processing Test Case: execDrainPumpMonitor_Open_Loop_Mode_RPM_In +(S) @LINE: 130 + >>> Processed Test Case: execDrainPumpMonitor_Open_Loop_Mode_RPM_In +(I) @LINE: 136 + >>> Processing Test Case: execDrainPumpMonitor_Open_Loop_Mode_RPM_Out +(S) @LINE: 150 + >>> Processed Test Case: execDrainPumpMonitor_Open_Loop_Mode_RPM_Out +(I) @LINE: 158 >>> Processing Test Case: execDrainPumpTest_NominalPath -(S) @LINE: 88 +(S) @LINE: 160 >>> Processed Test Case: execDrainPumpTest_NominalPath -(I) @LINE: 96 +(I) @LINE: 168 >>> Processing Test Case: getPublishDrainPumpDataInterval_NominalPath -(S) @LINE: 102 +(S) @LINE: 175 >>> Processed Test Case: getPublishDrainPumpDataInterval_NominalPath -(I) @LINE: 108 +(I) @LINE: 181 >>> Processing Test Case: getPublishDrainPumpDataInterval_Override -(S) @LINE: 114 +(S) @LINE: 188 >>> Processed Test Case: getPublishDrainPumpDataInterval_Override -(I) @LINE: 122 +(I) @LINE: 196 + >>> Processing Test Case: getTargetDrainPumpDeltaP_NominalPath +(S) @LINE: 200 + >>> Processed Test Case: getTargetDrainPumpDeltaP_NominalPath +(I) @LINE: 208 >>> Processing Test Case: getTargetDrainPumpSpeed_NominalPath -(S) @LINE: 128 +(E) Errors from previous script import(s) + >>> (E) @LINE: 123 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 124 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.ovInitData:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 125 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.ovData:500 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 126 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.override:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 227 >>> Processed Test Case: getTargetDrainPumpSpeed_NominalPath -(I) @LINE: 134 - >>> Processing Test Case: getTargetDrainPumpSpeed_Override -(S) @LINE: 140 - >>> Processed Test Case: getTargetDrainPumpSpeed_Override -(I) @LINE: 148 - >>> Processing Test Case: handleDrainPumpControlToTargetState_ClosedLoop_NominalPath -(S) @LINE: 158 - >>> Processed Test Case: handleDrainPumpControlToTargetState_ClosedLoop_NominalPath -(I) @LINE: 164 - >>> Processing Test Case: handleDrainPumpControlToTargetState_Control -(S) @LINE: 174 - >>> Processed Test Case: handleDrainPumpControlToTargetState_Control -(I) @LINE: 180 - >>> Processing Test Case: handleDrainPumpControlToTargetState_NoControl -(S) @LINE: 190 - >>> Processed Test Case: handleDrainPumpControlToTargetState_NoControl -(I) @LINE: 196 - >>> Processing Test Case: handleDrainPumpControlToTargetState_Stop -(S) @LINE: 211 - >>> Processed Test Case: handleDrainPumpControlToTargetState_Stop -(I) @LINE: 219 - >>> Processing Test Case: handleDrainPumpOffState_NominalPath -(S) @LINE: 225 - >>> Processed Test Case: handleDrainPumpOffState_NominalPath -(I) @LINE: 231 - >>> Processing Test Case: handleDrainPumpOffState_ToControl -(S) @LINE: 247 - >>> Processed Test Case: handleDrainPumpOffState_ToControl -(I) @LINE: 255 +(I) @LINE: 235 + >>> Processing Test Case: handleDrainPumpControlToTargetState_Control_Time +(E) Errors from previous script import(s) + >>> (E) @LINE: 165 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 170 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 258 + >>> Processed Test Case: handleDrainPumpControlToTargetState_Control_Time +(I) @LINE: 264 + >>> Processing Test Case: handleDrainPumpControlToTargetState_Not_Control_Time +(E) Errors from previous script import(s) + >>> (E) @LINE: 181 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 186 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 282 + >>> Processed Test Case: handleDrainPumpControlToTargetState_Not_Control_Time +(I) @LINE: 290 + >>> Processing Test Case: handleDrainPumpOffState_Closed_Loop_Control_Flag_Set +(E) Errors from previous script import(s) + >>> (E) @LINE: 235 TEST.VALUE:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 240 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 242 TEST.EXPECTED:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 321 + >>> Processed Test Case: handleDrainPumpOffState_Closed_Loop_Control_Flag_Set +(I) @LINE: 327 + >>> Processing Test Case: handleDrainPumpOffState_Closed_Loop_No_Flag +(S) @LINE: 335 + >>> Processed Test Case: handleDrainPumpOffState_Closed_Loop_No_Flag +(I) @LINE: 341 + >>> Processing Test Case: handleDrainPumpOffState_No_Mode_Request +(E) Errors from previous script import(s) + >>> (E) @LINE: 220 TEST.VALUE:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 223 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 357 + >>> Processed Test Case: handleDrainPumpOffState_No_Mode_Request +(I) @LINE: 363 + >>> Processing Test Case: handleDrainPumpOffState_No_Open_Loop_RPM_Set +(S) @LINE: 371 + >>> Processed Test Case: handleDrainPumpOffState_No_Open_Loop_RPM_Set +(I) @LINE: 377 + >>> Processing Test Case: handleDrainPumpOffState_Open_Loop_No_RPM_Set +(S) @LINE: 385 + >>> Processed Test Case: handleDrainPumpOffState_Open_Loop_No_RPM_Set +(I) @LINE: 391 + >>> Processing Test Case: handleDrainPumpOffState_Open_Loop_RPM_Set +(S) @LINE: 406 + >>> Processed Test Case: handleDrainPumpOffState_Open_Loop_RPM_Set +(I) @LINE: 414 + >>> Processing Test Case: handleDrainPumpOpenLoopState_NominalPath +(S) @LINE: 417 + >>> Processed Test Case: handleDrainPumpOpenLoopState_NominalPath +(I) @LINE: 425 >>> Processing Test Case: initDrainPump_NominalPath -(S) @LINE: 266 +(E) Errors from previous script import(s) + >>> (E) @LINE: 258 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 262 TEST.EXPECTED:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 446 >>> Processed Test Case: initDrainPump_NominalPath -(I) @LINE: 274 +(I) @LINE: 454 >>> Processing Test Case: publishDrainPumpData_NotTime -(S) @LINE: 278 +(S) @LINE: 458 >>> Processed Test Case: publishDrainPumpData_NotTime -(I) @LINE: 284 +(I) @LINE: 464 >>> Processing Test Case: publishDrainPumpData_TimeToBroadcast -(S) @LINE: 293 +(E) Errors from previous script import(s) + >>> (E) @LINE: 289 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 292 TEST.EXPECTED:uut_prototype_stubs.broadcastDrainPumpData.tgtSpeed:300 + >>> >>> Unknown parameter/object name tgtSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 478 >>> Processed Test Case: publishDrainPumpData_TimeToBroadcast -(I) @LINE: 301 +(I) @LINE: 486 + >>> Processing Test Case: setDrainPumpTargetDeltaPressure_DeltaP_In_Range +(S) @LINE: 500 + >>> Processed Test Case: setDrainPumpTargetDeltaPressure_DeltaP_In_Range +(I) @LINE: 506 + >>> Processing Test Case: setDrainPumpTargetDeltaPressure_DeltaP_Out_Of_Lower_Range +(S) @LINE: 520 + >>> Processed Test Case: setDrainPumpTargetDeltaPressure_DeltaP_Out_Of_Lower_Range +(I) @LINE: 526 + >>> Processing Test Case: setDrainPumpTargetDeltaPressure_DeltaP_Out_Of_Upper_Range +(S) @LINE: 540 + >>> Processed Test Case: setDrainPumpTargetDeltaPressure_DeltaP_Out_Of_Upper_Range +(I) @LINE: 548 >>> Processing Test Case: setDrainPumpTargetSpeed_NominalPath -(S) @LINE: 310 +(E) Errors from previous script import(s) + >>> (E) @LINE: 304 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:50 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 308 TEST.EXPECTED:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 567 >>> Processed Test Case: setDrainPumpTargetSpeed_NominalPath -(I) @LINE: 316 +(I) @LINE: 573 >>> Processing Test Case: setDrainPumpTargetSpeed_TooHigh -(S) @LINE: 319 +(S) @LINE: 587 >>> Processed Test Case: setDrainPumpTargetSpeed_TooHigh -(I) @LINE: 325 +(I) @LINE: 593 >>> Processing Test Case: setDrainPumpTargetSpeed_TooLow -(S) @LINE: 328 +(S) @LINE: 607 >>> Processed Test Case: setDrainPumpTargetSpeed_TooLow -(I) @LINE: 334 +(I) @LINE: 613 >>> Processing Test Case: setDrainPumpTargetSpeed_Zero -(S) @LINE: 343 +(E) Errors from previous script import(s) + >>> (E) @LINE: 337 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:50 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 341 TEST.EXPECTED:DrainPump.<>.targetDrainPumpSpeed.data:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 632 >>> Processed Test Case: setDrainPumpTargetSpeed_Zero -(I) @LINE: 351 +(I) @LINE: 640 >>> Processing Test Case: signalDrainPumpHardStop_NominalPath -(S) @LINE: 368 +(E) Errors from previous script import(s) + >>> (E) @LINE: 355 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 358 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:300 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 362 TEST.EXPECTED:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 365 TEST.EXPECTED:DrainPump.<>.targetDrainPumpSpeed.data:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 674 >>> Processed Test Case: signalDrainPumpHardStop_NominalPath -(I) @LINE: 376 +(I) @LINE: 682 >>> Processing Test Case: stopDrainPump_NominalPath -(S) @LINE: 387 +(E) Errors from previous script import(s) + >>> (E) @LINE: 379 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 383 TEST.EXPECTED:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 701 >>> Processed Test Case: stopDrainPump_NominalPath -(I) @LINE: 395 +(I) @LINE: 709 >>> Processing Test Case: testResetDrainPumpDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 403 +(S) @LINE: 718 >>> Processed Test Case: testResetDrainPumpDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 409 +(I) @LINE: 724 >>> Processing Test Case: testResetDrainPumpDataPublishIntervalOverride_Reset -(S) @LINE: 417 +(S) @LINE: 734 >>> Processed Test Case: testResetDrainPumpDataPublishIntervalOverride_Reset -(I) @LINE: 425 - >>> Processing Test Case: testResetTargetDrainPumpSpeedOverride_NotLoggedIn -(S) @LINE: 434 - >>> Processed Test Case: testResetTargetDrainPumpSpeedOverride_NotLoggedIn -(I) @LINE: 440 - >>> Processing Test Case: testResetTargetDrainPumpSpeedOverride_Reset -(S) @LINE: 449 - >>> Processed Test Case: testResetTargetDrainPumpSpeedOverride_Reset -(I) @LINE: 457 +(I) @LINE: 742 >>> Processing Test Case: testSetDrainPumpDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 466 +(S) @LINE: 752 >>> Processed Test Case: testSetDrainPumpDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 472 +(I) @LINE: 758 >>> Processing Test Case: testSetDrainPumpDataPublishIntervalOverride_Overrride -(S) @LINE: 482 +(S) @LINE: 769 >>> Processed Test Case: testSetDrainPumpDataPublishIntervalOverride_Overrride -(I) @LINE: 490 - >>> Processing Test Case: testSetTargetDrainPumpSpeedOverride_NotLoggedIn -(S) @LINE: 500 - >>> Processed Test Case: testSetTargetDrainPumpSpeedOverride_NotLoggedIn -(I) @LINE: 506 - >>> Processing Test Case: testSetTargetDrainPumpSpeedOverride_Override -(S) @LINE: 516 - >>> Processed Test Case: testSetTargetDrainPumpSpeedOverride_Override -(S) @LINE: 516 +(I) @LINE: 777 + >>> Processing Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_In_Range +(S) @LINE: 782 + >>> Processed Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_In_Range +(I) @LINE: 788 + >>> Processing Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Lower_Range +(S) @LINE: 793 + >>> Processed Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Lower_Range +(I) @LINE: 799 + >>> Processing Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Upper_Range +(S) @LINE: 804 + >>> Processed Test Case: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Upper_Range +(I) @LINE: 810 + >>> Processing Test Case: testSetTargetDrainPumpDeltaPressure_Not_Logged_In +(S) @LINE: 815 + >>> Processed Test Case: testSetTargetDrainPumpDeltaPressure_Not_Logged_In +(I) @LINE: 823 + >>> Processing Test Case: testSetTargetDrainPumpRPM_Not_Logged_In +(S) @LINE: 828 + >>> Processed Test Case: testSetTargetDrainPumpRPM_Not_Logged_In +(I) @LINE: 834 + >>> Processing Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_In_Range +(S) @LINE: 839 + >>> Processed Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_In_Range +(I) @LINE: 845 + >>> Processing Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Lower_Range +(S) @LINE: 850 + >>> Processed Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Lower_Range +(I) @LINE: 856 + >>> Processing Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Upper_Range +(S) @LINE: 861 + >>> Processed Test Case: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Upper_Range +(S) @LINE: 861 >>> 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-03 13:25:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3682,7 +3777,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-03 13:25:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3699,7 +3794,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.setDrainPumpTargetSpeed test cases + Running all DrainPump.setDrainPumpTargetRPM test cases Running: setDrainPumpTargetSpeed_NominalPath Preparing Test Data Running Test Case @@ -3728,6 +3823,28 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all DrainPump.setDrainPumpTargetDeltaPressure test cases + Running: setDrainPumpTargetDeltaPressure_DeltaP_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setDrainPumpTargetDeltaPressure_DeltaP_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/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: setDrainPumpTargetDeltaPressure_DeltaP_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/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all DrainPump.signalDrainPumpHardStop test cases Running: signalDrainPumpHardStop_NominalPath Preparing Test Data @@ -3737,13 +3854,27 @@ Updating Coverage Data Test Execution Complete Running all DrainPump.execDrainPumpMonitor test cases - Running: execDrainPumpMonitor_NominalPath + Running: execDrainPumpMonitor_Not_Open_Loop_Mode Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execDrainPumpMonitor_Open_Loop_Mode_RPM_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: execDrainPumpMonitor_Open_Loop_Mode_RPM_Out + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all DrainPump.execDrainPumpController test cases Running: execDrainPumpController_ControlState Preparing Test Data @@ -3766,105 +3897,135 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execDrainPumpController_Open_Loop_State + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all DrainPump.execDrainPumpSelfTest test cases + Running: execDrainPumpTest_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all DrainPump.getTargetDrainPumpRPM test cases + Running: getTargetDrainPumpSpeed_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all DrainPump.getTargetDrainPumpDeltaP test cases + Running: getTargetDrainPumpDeltaP_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all DrainPump.handleDrainPumpOffState test cases - Running: handleDrainPumpOffState_NominalPath + Running: handleDrainPumpOffState_Closed_Loop_Control_Flag_Set Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleDrainPumpOffState_ToControl + Running: handleDrainPumpOffState_Closed_Loop_No_Flag Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.handleDrainPumpControlToTargetState test cases - Running: handleDrainPumpControlToTargetState_ClosedLoop_NominalPath + Running: handleDrainPumpOffState_No_Mode_Request Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleDrainPumpControlToTargetState_Control + Running: handleDrainPumpOffState_No_Open_Loop_RPM_Set Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleDrainPumpControlToTargetState_NoControl + Running: handleDrainPumpOffState_Open_Loop_No_RPM_Set Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleDrainPumpControlToTargetState_Stop + Running: handleDrainPumpOffState_Open_Loop_RPM_Set Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.stopDrainPump test cases - Running: stopDrainPump_NominalPath + Running all DrainPump.handleDrainPumpControlToTargetState test cases + Running: handleDrainPumpControlToTargetState_Control_Time Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.getPublishDrainPumpDataInterval test cases - Running: getPublishDrainPumpDataInterval_NominalPath + Running: handleDrainPumpControlToTargetState_Not_Control_Time Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getPublishDrainPumpDataInterval_Override + Running all DrainPump.handleDrainPumpOpenLoopState test cases + Running: handleDrainPumpOpenLoopState_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.getTargetDrainPumpSpeed test cases - Running: getTargetDrainPumpSpeed_NominalPath + Running all DrainPump.stopDrainPump test cases + Running: stopDrainPump_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: getTargetDrainPumpSpeed_Override + Running all DrainPump.getPublishDrainPumpDataInterval test cases + Running: getPublishDrainPumpDataInterval_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.publishDrainPumpData test cases - Running: publishDrainPumpData_NotTime + Running: getPublishDrainPumpDataInterval_Override Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: publishDrainPumpData_TimeToBroadcast + Running all DrainPump.publishDrainPumpData test cases + Running: publishDrainPumpData_NotTime Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.execDrainPumpTest test cases - Running: execDrainPumpTest_NominalPath + Running: publishDrainPumpData_TimeToBroadcast Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST @@ -3901,40 +4062,68 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.testSetTargetDrainPumpSpeedOverride test cases - Running: testSetTargetDrainPumpSpeedOverride_NotLoggedIn + Running all DrainPump.testSetTargetDrainPumpRPM test cases + Running: testSetTargetDrainPumpRPM_Not_Logged_In Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: testSetTargetDrainPumpSpeedOverride_Override + Running: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_In_Range Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all DrainPump.testResetTargetDrainPumpSpeedOverride test cases - Running: testResetTargetDrainPumpSpeedOverride_NotLoggedIn + Running: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Lower_Range Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: testResetTargetDrainPumpSpeedOverride_Reset + Running: testSetTargetDrainPumpRPM_Not_Logged_In_RPM_Out_Upper_Range Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all DrainPump.testSetTargetDrainPumpDeltaPressure test cases + Running: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_In_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Lower_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetTargetDrainPumpDeltaPressure_Logged_In_DeltaP_Out_Upper_Range + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testSetTargetDrainPumpDeltaPressure_Not_Logged_In + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP/UUT_INST + 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-03 13:25: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/1655952326/CCAST_.CFG @@ -3969,7 +4158,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-03 13:25:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3985,7 +4174,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 100 Processing script line 150 @@ -4424,7 +4613,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 16:54:36 +TIME: 2020-12-03 13:25:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4439,7 +4628,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-03 13:25:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5223,7 +5412,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:40 +TIME: 2020-12-03 13:25:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG @@ -5259,7 +5448,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:44 +TIME: 2020-12-03 13:25:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5509,7 +5698,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:45 +TIME: 2020-12-03 13:25:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5524,7 +5713,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-11-23 16:54:46 +TIME: 2020-12-03 13:25:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5940,7 +6129,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-03 13:25: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/3825867763/CCAST_.CFG @@ -5975,7 +6164,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:51 +TIME: 2020-12-03 13:25:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6036,7 +6225,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:52 +TIME: 2020-12-03 13:26:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6051,7 +6240,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-11-23 16:54:53 +TIME: 2020-12-03 13:26:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6116,7 +6305,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-03 13:26:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG @@ -6152,7 +6341,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:57 +TIME: 2020-12-03 13:26:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6293,7 +6482,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:58 +TIME: 2020-12-03 13:26:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6308,7 +6497,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-11-23 16:54:59 +TIME: 2020-12-03 13:26:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6516,7 +6705,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-03 13:26:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG @@ -6537,7 +6726,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 @@ -6598,7 +6787,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:07 +TIME: 2020-12-03 13:26:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6614,7 +6803,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -6675,7 +6864,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:09 +TIME: 2020-12-03 13:26:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6690,7 +6879,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-11-23 16:55:09 +TIME: 2020-12-03 13:26:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6720,7 +6909,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-03 13:26:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6816,7 +7005,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-03 13:26:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/CCAST_.CFG @@ -6828,10 +7017,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: SystemComm.c (using cached data) + File: AlarmMgmt.c + File: SystemComm.c 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 @@ -6892,7 +7081,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:17 +TIME: 2020-12-03 13:26:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6908,7 +7097,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Script Creation Completed @@ -6945,7 +7134,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:19 +TIME: 2020-12-03 13:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6960,7 +7149,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-11-23 16:55:19 +TIME: 2020-12-03 13:26:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6990,7 +7179,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-03 13:26:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7049,7 +7238,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-03 13:26: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/2591524098/CCAST_.CFG @@ -7058,10 +7247,10 @@ 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: FPGA.c File: Interrupts.c (using cached data) File: SystemComm.c (using cached data) QuickParse Utility Completed @@ -7117,7 +7306,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:26 +TIME: 2020-12-03 13:26:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7133,7 +7322,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (4) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -7179,7 +7368,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:28 +TIME: 2020-12-03 13:26:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7194,7 +7383,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-11-23 16:55:28 +TIME: 2020-12-03 13:26:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7222,7 +7411,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-03 13:26:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7301,7 +7490,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-03 13:26: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/925127052/CCAST_.CFG @@ -7313,7 +7502,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: CommBuffers.c (using cached data) + File: CommBuffers.c File: MsgQueues.c (using cached data) File: SystemComm.c (using cached data) File: SystemCommMessages.c (using cached data) @@ -7377,7 +7566,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:36 +TIME: 2020-12-03 13:26:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7393,7 +7582,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 100 Script Creation Completed @@ -7418,7 +7607,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:38 +TIME: 2020-12-03 13:26:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7433,7 +7622,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-11-23 16:55:39 +TIME: 2020-12-03 13:26:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7469,7 +7658,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-03 13:26: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 +7670,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/ @@ -7560,7 +7749,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:47 +TIME: 2020-12-03 13:27:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7576,7 +7765,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 100 Processing script line 150 @@ -7645,7 +7834,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:49 +TIME: 2020-12-03 13:27:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7660,7 +7849,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-11-23 16:55:49 +TIME: 2020-12-03 13:27:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7773,7 +7962,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-03 13:27:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG @@ -7785,7 +7974,7 @@ 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) @@ -7863,9 +8052,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-03 13:27:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7880,9 +8069,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 +8117,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-03 13:27:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8029,7 +8200,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-03 13:27:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG @@ -8041,7 +8212,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) @@ -8090,7 +8261,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:06 +TIME: 2020-12-03 13:27:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8131,7 +8302,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:08 +TIME: 2020-12-03 13:27:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8146,7 +8317,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-11-23 16:56:08 +TIME: 2020-12-03 13:27:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8172,7 +8343,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-03 13:27:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8208,7 +8379,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-03 13:27: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/194968077/CCAST_.CFG @@ -8224,6 +8395,8 @@ QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeDrain.c (using cached data) + File: ModeInitPOST.c (using cached data) + File: ModeStandby.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) @@ -8239,6 +8412,8 @@ Saving unit data Parsing DrainPump Parsing ModeDrain + Parsing ModeInitPOST + Parsing ModeStandby Parsing SystemCommMessages Parsing TaskGeneral Parsing TaskPriority @@ -8253,26 +8428,36 @@ Initializing parse data Generating harness code Saving unit data - Unit 12 (stub-by-function): SystemCommMessages + Unit 12 (stub-by-function): ModeInitPOST Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 13 (stub-by-function): TaskGeneral + Unit 13 (stub-by-function): ModeStandby Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 14 (stub-by-function): TaskPriority + Unit 14 (stub-by-function): SystemCommMessages Loading stored IL Initializing parse data Generating harness code Saving unit data - Unit 15 (stub-by-function): sys_main + Unit 15 (stub-by-function): TaskGeneral Loading stored IL Initializing parse data Generating harness code Saving unit data + Unit 16 (stub-by-function): TaskPriority + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 17 (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 @@ -8285,6 +8470,10 @@ Compiling file DrainPump Instrumenting file ModeDrain Compiling file ModeDrain + Instrumenting file ModeInitPOST + Compiling file ModeInitPOST + Instrumenting file ModeStandby + Compiling file ModeStandby Instrumenting file SystemCommMessages Compiling file SystemCommMessages Instrumenting file TaskGeneral @@ -8300,7 +8489,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-11-23 16:56:17 +TIME: 2020-12-03 13:27:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8319,7 +8508,6 @@ Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 - Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -8328,60 +8516,76 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp (I) @LINE: 24 >>> Processing Test Case: setDrainPumpTargetSpeed -(S) @LINE: 35 +(E) Errors from previous script import(s) + >>> (E) @LINE: 26 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 40 >>> Processed Test Case: setDrainPumpTargetSpeed -(I) @LINE: 45 +(I) @LINE: 50 + >>> Processing Test Case: execInitAndPOSTMode_Drain_Pump +(S) @LINE: 54 + >>> Processed Test Case: execInitAndPOSTMode_Drain_Pump +(I) @LINE: 64 + >>> Processing Test Case: transitionToStandbyMode_NominalPath +(S) @LINE: 74 + >>> Processed Test Case: transitionToStandbyMode_NominalPath +(I) @LINE: 84 + >>> Processing Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Override +(S) @LINE: 95 + >>> Processed Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Override +(I) @LINE: 103 >>> Processing Test Case: OverrideBroadcastInterval -(S) @LINE: 63 +(S) @LINE: 121 >>> Processed Test Case: OverrideBroadcastInterval -(I) @LINE: 69 +(I) @LINE: 127 >>> Processing Test Case: ResetOverrideBroadcastInterval -(S) @LINE: 88 +(S) @LINE: 146 >>> Processed Test Case: ResetOverrideBroadcastInterval -(I) @LINE: 96 - >>> Processing Test Case: OverrideDrainPumpSetPoint -(S) @LINE: 117 - >>> Processed Test Case: OverrideDrainPumpSetPoint -(I) @LINE: 123 - >>> Processing Test Case: ResetOverrideDrainPumpSetPoint -(S) @LINE: 144 - >>> Processed Test Case: ResetOverrideDrainPumpSetPoint (I) @LINE: 154 - >>> Processing Test Case: execDrainPumpController + >>> Processing Test Case: handleTestDrainPumpRPMOverrideRequest_Override (S) @LINE: 165 - >>> Processed Test Case: execDrainPumpController -(I) @LINE: 171 - >>> Processing Test Case: execDrainPumpController2 -(S) @LINE: 181 - >>> Processed Test Case: execDrainPumpController2 -(I) @LINE: 191 + >>> Processed Test Case: handleTestDrainPumpRPMOverrideRequest_Override +(I) @LINE: 175 + >>> Processing Test Case: execDrainPumpController_Off_State +(E) Errors from previous script import(s) + >>> (E) @LINE: 161 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:2000 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 191 + >>> Processed Test Case: execDrainPumpController_Off_State +(I) @LINE: 197 + >>> Processing Test Case: execDrainPumpController_Open_Loop_State +(E) Errors from previous script import(s) + >>> (E) @LINE: 178 TEST.VALUE:DrainPump.<>.targetDrainPumpSpeed.data:0 + >>> >>> Unknown parameter/object name targetDrainPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 212 + >>> Processed Test Case: execDrainPumpController_Open_Loop_State +(I) @LINE: 218 + >>> Processing Test Case: execDrainPumpController_Open_Loop_State.001 +(S) @LINE: 227 + >>> Processed Test Case: execDrainPumpController_Open_Loop_State.001 +(I) @LINE: 237 >>> Processing Test Case: execDrainPumpMonitor -(S) @LINE: 195 +(S) @LINE: 241 >>> Processed Test Case: execDrainPumpMonitor -(I) @LINE: 205 +(I) @LINE: 251 >>> Processing Test Case: initDrainPump -(S) @LINE: 214 +(E) Errors from previous script import(s) + >>> (E) @LINE: 207 TEST.VALUE:DrainPump.<>.isDrainPumpOn:1 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 210 TEST.EXPECTED:DrainPump.<>.isDrainPumpOn:0 + >>> >>> Unknown parameter/object name isDrainPumpOn + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 267 >>> Processed Test Case: initDrainPump -(S) @LINE: 214 +(S) @LINE: 267 >>> 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-03 13:27:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8397,23 +8601,13 @@ -------------------------------------------------------------------------------- (S) @LINE: 1 >>> Script processing started for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr -(S) @LINE: 45 - >>> Source file matched DrainPump.c -(S) @LINE: 67 - >>> Source file matched ModeDrain.c -(S) @LINE: 89 - >>> Source file matched SystemCommMessages.c -(S) @LINE: 111 - >>> Source file matched TaskGeneral.c -(S) @LINE: 133 - >>> Source file matched TaskPriority.c -(S) @LINE: 155 - >>> Source file matched sys_main.c -(S) @LINE: 173 +(E) @LINE: 1 + >>> Script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr did not contain any relevant coverage data +(S) @LINE: 1 >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_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-03 13:27:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8430,21 +8624,30 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all SystemCommMessages.handleTestDrainPumpSetPointOverrideRequest test cases - Running: OverrideDrainPumpSetPoint + Running all ModeInitPOST.execInitAndPOSTMode test cases + Running: execInitAndPOSTMode_Drain_Pump Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: ResetOverrideDrainPumpSetPoint + Running all ModeStandby.transitionToStandbyMode test cases + Running: transitionToStandbyMode_NominalPath Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleTestDrainPumpRPMOverrideRequest test cases + Running: handleTestDrainPumpRPMOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpDataBroadcastIntervalOverrideRequest test cases Running: OverrideBroadcastInterval Preparing Test Data @@ -8460,21 +8663,36 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleSetDrainPumpDeltaPressureOverrideRequest test cases + Running: handleSetDrainPumpDeltaPressureOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all TaskGeneral.taskGeneral test cases - Running: execDrainPumpController + Running: execDrainPumpController_Off_State Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: execDrainPumpController2 + Running: execDrainPumpController_Open_Loop_State Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execDrainPumpController_Open_Loop_State.001 + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all TaskPriority.taskPriority test cases Running: execDrainPumpMonitor Preparing Test Data @@ -8494,7 +8712,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:21 +TIME: 2020-12-03 13:27: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/1233794524/CCAST_.CFG @@ -8509,10 +8727,10 @@ 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: TemperatureSensors.c (using cached data) - File: Valves.c (using cached data) + File: LoadCell.c + File: ROPump.c + File: TemperatureSensors.c + File: Valves.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) @@ -8660,7 +8878,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-03 13:28:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8676,7 +8894,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (26) Translated 0 script lines Processing script line 50 Processing script line 150 @@ -8755,7 +8973,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 16:56:37 +TIME: 2020-12-03 13:28:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8770,7 +8988,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-03 13:28:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8899,7 +9117,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-03 13:28:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG @@ -8911,13 +9129,13 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: Heaters.c (using cached data) + File: Heaters.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: 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/ @@ -9000,7 +9218,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56:47 +TIME: 2020-12-03 13:28:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9016,7 +9234,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -9098,7 +9316,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56:49 +TIME: 2020-12-03 13:28:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9113,7 +9331,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-11-23 16:56:49 +TIME: 2020-12-03 13:28:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9245,7 +9463,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-03 13:28:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/CCAST_.CFG @@ -9258,10 +9476,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) @@ -9326,7 +9544,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:57 +TIME: 2020-12-03 13:28:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9371,7 +9589,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:58 +TIME: 2020-12-03 13:28:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9386,7 +9604,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-11-23 16:56:59 +TIME: 2020-12-03 13:28:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9430,7 +9648,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-03 13:28: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/1819084493/CCAST_.CFG @@ -9440,7 +9658,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 +9671,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 @@ -9558,7 +9776,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:10 +TIME: 2020-12-03 13:28:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9612,7 +9830,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:12 +TIME: 2020-12-03 13:28:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9627,7 +9845,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-11-23 16:57:12 +TIME: 2020-12-03 13:28:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9667,7 +9885,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-03 13:28:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9727,7 +9945,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-03 13:28: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 @@ -9818,7 +10036,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:21 +TIME: 2020-12-03 13:29:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9834,7 +10052,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -9881,7 +10099,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:23 +TIME: 2020-12-03 13:29:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9896,7 +10114,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-11-23 16:57:24 +TIME: 2020-12-03 13:29:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9970,7 +10188,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-03 13:29: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/777223179/CCAST_.CFG @@ -9979,8 +10197,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 @@ -10017,7 +10235,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:28 +TIME: 2020-12-03 13:29:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10053,7 +10271,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:29 +TIME: 2020-12-03 13:29:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10068,7 +10286,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-11-23 16:57:30 +TIME: 2020-12-03 13:29:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10092,7 +10310,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-03 13:29:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10120,7 +10338,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-03 13:29: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/9217169/CCAST_.CFG @@ -10167,7 +10385,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:35 +TIME: 2020-12-03 13:29:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10183,7 +10401,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 Script Creation Completed @@ -10212,7 +10430,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:36 +TIME: 2020-12-03 13:29:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10227,7 +10445,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-11-23 16:57:36 +TIME: 2020-12-03 13:29:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10251,7 +10469,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-03 13:29:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10294,7 +10512,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-03 13:29: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/2748975379/CCAST_.CFG @@ -10303,7 +10521,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 @@ -10341,7 +10559,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:41 +TIME: 2020-12-03 13:29:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10377,7 +10595,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:42 +TIME: 2020-12-03 13:29:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10392,7 +10610,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-11-23 16:57:43 +TIME: 2020-12-03 13:29:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10416,7 +10634,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-03 13:29:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10444,7 +10662,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-03 13:29: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/4235259824/CCAST_.CFG @@ -10491,7 +10709,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-11-23 16:57:48 +TIME: 2020-12-03 13:29:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10547,7 +10765,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-03 13:29:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10604,7 +10822,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-03 13:29:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/CCAST_.CFG @@ -10613,7 +10831,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 @@ -10651,7 +10869,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:53 +TIME: 2020-12-03 13:29:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10687,7 +10905,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:54 +TIME: 2020-12-03 13:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10702,7 +10920,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-11-23 16:57:55 +TIME: 2020-12-03 13:29:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10726,7 +10944,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-03 13:29:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10754,7 +10972,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-03 13:29: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/1843208983/CCAST_.CFG @@ -10763,7 +10981,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 @@ -10801,7 +11019,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:00 +TIME: 2020-12-03 13:29:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10837,7 +11055,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:01 +TIME: 2020-12-03 13:29:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10852,7 +11070,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-11-23 16:58:01 +TIME: 2020-12-03 13:29:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10876,7 +11094,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-03 13:29:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10904,7 +11122,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-03 13:29: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/1413348909/CCAST_.CFG @@ -10951,7 +11169,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:06 +TIME: 2020-12-03 13:29:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10987,7 +11205,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:07 +TIME: 2020-12-03 13:29:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11002,7 +11220,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-11-23 16:58:08 +TIME: 2020-12-03 13:29:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11026,7 +11244,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-03 13:29:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11054,7 +11272,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-03 13:29: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/1236077553/CCAST_.CFG @@ -11063,7 +11281,7 @@ Creating the Environment Directory Creating Environment "INT_MODERECIRCULATE" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeRecirculate.c (using cached data) + File: ModeRecirculate.c File: OperationModes.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ @@ -11121,7 +11339,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:15 +TIME: 2020-12-03 13:30:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11137,7 +11355,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (9) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -11183,7 +11401,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:16 +TIME: 2020-12-03 13:30:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11198,7 +11416,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-11-23 16:58:17 +TIME: 2020-12-03 13:30:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11271,7 +11489,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-03 13:30:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/CCAST_.CFG @@ -11280,7 +11498,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 @@ -11318,7 +11536,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:21 +TIME: 2020-12-03 13:30:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11354,7 +11572,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:22 +TIME: 2020-12-03 13:30:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11369,7 +11587,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-11-23 16:58:23 +TIME: 2020-12-03 13:30:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11393,7 +11611,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-03 13:30:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11421,7 +11639,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-03 13:30: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/104031509/CCAST_.CFG @@ -11430,7 +11648,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 @@ -11468,7 +11686,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:28 +TIME: 2020-12-03 13:30:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11509,7 +11727,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:29 +TIME: 2020-12-03 13:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11524,7 +11742,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-11-23 16:58:29 +TIME: 2020-12-03 13:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11548,7 +11766,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-03 13:30:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11583,7 +11801,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-03 13:30: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/3433100860/CCAST_.CFG @@ -11641,7 +11859,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:35 +TIME: 2020-12-03 13:30:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11657,7 +11875,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -11699,7 +11917,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:37 +TIME: 2020-12-03 13:30:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11714,7 +11932,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-11-23 16:58:37 +TIME: 2020-12-03 13:30:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11740,7 +11958,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-03 13:30:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11806,7 +12024,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-03 13:30: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/3336905608/CCAST_.CFG @@ -11882,7 +12100,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:45 +TIME: 2020-12-03 13:30:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11898,7 +12116,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -11928,7 +12146,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:47 +TIME: 2020-12-03 13:30:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11943,7 +12161,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-11-23 16:58:47 +TIME: 2020-12-03 13:30:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11987,7 +12205,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-03 13:30: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/553544110/CCAST_.CFG @@ -12067,7 +12285,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:55 +TIME: 2020-12-03 13:30:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12112,7 +12330,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:56 +TIME: 2020-12-03 13:30:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12127,7 +12345,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-11-23 16:58:57 +TIME: 2020-12-03 13:30:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12171,7 +12389,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-03 13:30: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/2668912522/CCAST_.CFG @@ -12183,7 +12401,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 @@ -12221,7 +12439,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59:01 +TIME: 2020-12-03 13:30:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12261,7 +12479,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59:03 +TIME: 2020-12-03 13:30:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12276,7 +12494,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-11-23 16:59:03 +TIME: 2020-12-03 13:30:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12311,7 +12529,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-03 13:30: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/996327209/CCAST_.CFG @@ -12323,7 +12541,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 @@ -12360,7 +12578,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-11-23 16:59:08 +TIME: 2020-12-03 13:31:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12411,7 +12629,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-03 13:31:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12435,7 +12653,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-03 13:31:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12471,7 +12689,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-03 13:31: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/1468105384/CCAST_.CFG @@ -12578,9 +12796,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-03 13:31:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12595,9 +12813,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 +12875,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-03 13:31:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12788,7 +12988,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-03 13:31: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/3023750484/CCAST_.CFG @@ -12906,7 +13106,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:32 +TIME: 2020-12-03 13:31:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12922,16 +13122,16 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines + Test Script Maintenance Complete (10) + Translated 2 script lines Processing script line 50 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/3023750484/INT_RESERVOIRS.tst.tmp + >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS/convertScript-translated.tst (I) @LINE: 24 >>> Processing Test Case: getInactiveReservoir (S) @LINE: 35 @@ -12976,7 +13176,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:34 +TIME: 2020-12-03 13:31:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12991,7 +13191,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-11-23 16:59:35 +TIME: 2020-12-03 13:31:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13029,7 +13229,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-03 13:31:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13120,7 +13320,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-03 13:31: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/3092074925/CCAST_.CFG @@ -13228,9 +13428,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-03 13:31:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13245,9 +13445,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 +13513,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-03 13:31:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13369,7 +13551,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-03 13:31:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13489,7 +13671,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-03 13:31:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG @@ -13508,8 +13690,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 @@ -13579,7 +13761,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 16:59:57 +TIME: 2020-12-03 13:31:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13595,7 +13777,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -13649,7 +13831,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 16:59:59 +TIME: 2020-12-03 13:31:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13664,7 +13846,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-11-23 17:00:00 +TIME: 2020-12-03 13:32:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13696,7 +13878,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-03 13:32:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13783,7 +13965,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-03 13:32: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/690517471/CCAST_.CFG @@ -13795,7 +13977,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) @@ -13844,7 +14026,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:07 +TIME: 2020-12-03 13:32:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13860,7 +14042,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Script Creation Completed @@ -13885,7 +14067,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:08 +TIME: 2020-12-03 13:32:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13900,7 +14082,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-11-23 17:00:09 +TIME: 2020-12-03 13:32:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13926,7 +14108,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-03 13:32:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13961,7 +14143,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-03 13:32: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/2689133618/CCAST_.CFG @@ -14069,7 +14251,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-03 13:32:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14136,7 +14318,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-03 13:32:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14151,7 +14333,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-03 13:32:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14231,7 +14413,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-03 13:32:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG @@ -14308,7 +14490,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-03 13:32:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14331,15 +14513,17 @@ Processing script line 150 Processing script line 200 Processing script line 250 + Processing script line 300 Processing script line 350 Processing script line 400 - Processing script line 450 - Processing script line 650 + Processing script line 500 + Processing script line 550 + Processing script line 600 Processing script line 700 Processing script line 750 Processing script line 800 Processing script line 850 - Processing script line 900 + Processing script line 950 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -14383,170 +14567,182 @@ (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 +(E) Errors from previous script import(s) + >>> (E) @LINE: 32 TEST.VALUE:uut_prototype_stubs.testSetTargetDrainPumpSpeedOverride.return:1 + >>> >>> Could not find function testSetTargetDrainPumpSpeedOverride + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 45 TEST.EXPECTED:uut_prototype_stubs.testSetTargetDrainPumpSpeedOverride.value:250 + >>> >>> Could not find function testSetTargetDrainPumpSpeedOverride + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 286 >>> Processed Test Case: A00B_handleTestDrainPumpSetPointOverrideRequest -(I) @LINE: 302 +(I) @LINE: 292 >>> Processing Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(S) @LINE: 317 +(S) @LINE: 307 >>> Processed Test Case: A00C_handleTestDrainPumpDataBroadcastIntervalOverrideRequest -(I) @LINE: 323 +(I) @LINE: 313 >>> Processing Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(S) @LINE: 338 +(S) @LINE: 328 >>> Processed Test Case: A00D_handleTestLoadCellDataBroadcastIntervalOverride -(I) @LINE: 344 +(I) @LINE: 334 >>> Processing Test Case: A00E_handleTestValveStateOverrideRequest -(S) @LINE: 364 +(S) @LINE: 354 >>> Processed Test Case: A00E_handleTestValveStateOverrideRequest -(I) @LINE: 370 +(I) @LINE: 360 >>> Processing Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(S) @LINE: 385 +(S) @LINE: 375 >>> Processed Test Case: A00F_handleTestValveStatesPublishIntervalOverrideRequest -(I) @LINE: 391 +(I) @LINE: 381 >>> Processing Test Case: A010_handleTestTemperatureSensorOverrideRequest -(S) @LINE: 411 +(S) @LINE: 401 >>> Processed Test Case: A010_handleTestTemperatureSensorOverrideRequest -(I) @LINE: 417 +(I) @LINE: 407 >>> Processing Test Case: A011_handleStartStopPrimaryHeater -(S) @LINE: 434 +(S) @LINE: 424 >>> Processed Test Case: A011_handleStartStopPrimaryHeater -(I) @LINE: 440 +(I) @LINE: 430 >>> Processing Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(S) @LINE: 455 +(S) @LINE: 445 >>> Processed Test Case: A012_handleTestTemperatureSensorsDataPublishOverrideRequest -(I) @LINE: 461 +(I) @LINE: 451 >>> Processing Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(S) @LINE: 476 +(S) @LINE: 466 >>> Processed Test Case: A013_handleTestHeatersDataPublishOverrideRequest -(I) @LINE: 482 +(I) @LINE: 472 >>> Processing Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(S) @LINE: 497 +(S) @LINE: 487 >>> Processed Test Case: A014_handleTestDGSafetyShutdownOverrideRequest -(I) @LINE: 503 +(I) @LINE: 493 >>> Processing Test Case: A015_handleTestSetConductivityOverrideRequest -(S) @LINE: 524 +(S) @LINE: 514 >>> Processed Test Case: A015_handleTestSetConductivityOverrideRequest -(I) @LINE: 530 +(I) @LINE: 520 >>> Processing Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(S) @LINE: 546 +(S) @LINE: 536 >>> Processed Test Case: A016_handleTestSetConductivityDataPublishIntervalOverrideRequest -(I) @LINE: 552 +(I) @LINE: 542 >>> Processing Test Case: A017_handleTestAccelAxisOverrideRequest -(S) @LINE: 572 +(S) @LINE: 562 >>> Processed Test Case: A017_handleTestAccelAxisOverrideRequest -(I) @LINE: 578 +(I) @LINE: 568 >>> Processing Test Case: A018_handleTestAccelMaxOverrideRequest -(S) @LINE: 598 +(S) @LINE: 588 >>> Processed Test Case: A018_handleTestAccelMaxOverrideRequest -(I) @LINE: 604 +(I) @LINE: 594 >>> Processing Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest -(S) @LINE: 619 +(S) @LINE: 609 >>> Processed Test Case: A019_handleTestAccelDataPublishIntervalOverrideRequest -(I) @LINE: 625 +(I) @LINE: 615 + >>> Processing Test Case: A01C_handleSetDrainPumpDeltaPressureOverrideRequest +(S) @LINE: 622 + >>> Processed Test Case: A01C_handleSetDrainPumpDeltaPressureOverrideRequest +(I) @LINE: 628 >>> Processing Test Case: A022_handleDGSoftwareResetRequest -(S) @LINE: 633 +(S) @LINE: 636 >>> Processed Test Case: A022_handleDGSoftwareResetRequest -(I) @LINE: 639 +(I) @LINE: 642 >>> 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: 52 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:0.0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 53 TEST.VALUE:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 70 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].ovData:5.0 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 71 TEST.EXPECTED:ConcentratePumps.<>.measuredPumpSpeed[CONCENTRATEPUMPS_CP1].override:0xCCC33C33 + >>> >>> Unknown parameter/object name measuredPumpSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 674 >>> Processed Test Case: A023_handleSetConcentratePumpMeasuredSpeed -(I) @LINE: 666 +(I) @LINE: 680 >>> 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: 78 TEST.VALUE:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:0.0 + >>> >>> Unknown parameter/object name pumpTargetSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 95 TEST.EXPECTED:ConcentratePumps.<>.pumpTargetSpeed[CONCENTRATEPUMPS_CP2]:5.0 + >>> >>> Unknown parameter/object name pumpTargetSpeed + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 706 >>> Processed Test Case: A024_handleSetConcentratePumpTargetSpeed -(I) @LINE: 691 +(I) @LINE: 712 >>> 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: 102 TEST.VALUE:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:0 + >>> >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 111 TEST.EXPECTED:ConcentratePumps.<>.hasTurnOnPumpsBeenRequested:1 + >>> >>> Unknown parameter/object name hasTurnOnPumpsBeenRequested + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 730 >>> Processed Test Case: A026_handleConcentratePumpStateChangeRequest -(I) @LINE: 708 +(I) @LINE: 736 >>> Processing Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(S) @LINE: 727 +(S) @LINE: 755 >>> Processed Test Case: A027_handleConcentratePumpDataPublishIntervalOverride -(I) @LINE: 733 +(I) @LINE: 761 >>> Processing Test Case: handleDrainCmd -(S) @LINE: 744 +(S) @LINE: 772 >>> Processed Test Case: handleDrainCmd -(I) @LINE: 750 +(I) @LINE: 778 >>> Processing Test Case: handleFWVersionCmd -(S) @LINE: 756 +(S) @LINE: 784 >>> Processed Test Case: handleFWVersionCmd -(I) @LINE: 762 +(I) @LINE: 790 >>> Processing Test Case: handleFillCmd -(S) @LINE: 772 +(S) @LINE: 800 >>> Processed Test Case: handleFillCmd -(I) @LINE: 778 +(I) @LINE: 806 >>> Processing Test Case: handlePowerOffWarning -(S) @LINE: 784 +(S) @LINE: 812 >>> Processed Test Case: handlePowerOffWarning -(I) @LINE: 790 +(I) @LINE: 818 >>> Processing Test Case: handleSampleWaterCmd -(S) @LINE: 802 +(S) @LINE: 830 >>> Processed Test Case: handleSampleWaterCmd -(I) @LINE: 808 +(I) @LINE: 836 >>> Processing Test Case: handleSetAccelCalibration -(S) @LINE: 832 +(S) @LINE: 860 >>> Processed Test Case: handleSetAccelCalibration -(I) @LINE: 838 +(I) @LINE: 866 >>> Processing Test Case: handleSetDialysateTemperatureCmd -(S) @LINE: 852 +(S) @LINE: 880 >>> Processed Test Case: handleSetDialysateTemperatureCmd -(I) @LINE: 858 +(I) @LINE: 886 >>> Processing Test Case: handleStartStopTreatmentCmd -(S) @LINE: 870 +(S) @LINE: 898 >>> Processed Test Case: handleStartStopTreatmentCmd -(I) @LINE: 876 +(I) @LINE: 904 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd -(S) @LINE: 887 +(S) @LINE: 915 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd -(I) @LINE: 893 +(I) @LINE: 921 >>> Processing Test Case: handleSwitchReservoirCmd -(S) @LINE: 903 +(S) @LINE: 931 >>> Processed Test Case: handleSwitchReservoirCmd -(I) @LINE: 911 +(I) @LINE: 939 >>> Processing Test Case: sendACKMsg -(S) @LINE: 930 +(S) @LINE: 958 >>> Processed Test Case: sendACKMsg -(S) @LINE: 930 +(S) @LINE: 958 >>> 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-03 13:32:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14572,11 +14768,11 @@ >>> Source file matched SystemComm.c (S) @LINE: 133 >>> Source file matched SystemCommMessages.c -(S) @LINE: 271 +(S) @LINE: 283 >>> 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-03 13:32:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14659,13 +14855,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 @@ -14785,6 +14974,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A01C_handleSetDrainPumpDeltaPressureOverrideRequest + 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: A022_handleDGSoftwareResetRequest Preparing Test Data Running Test Case @@ -14893,7 +15089,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-03 13:32:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/CCAST_.CFG @@ -14908,7 +15104,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 @@ -14953,7 +15149,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:38 +TIME: 2020-12-03 13:32:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14985,7 +15181,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:39 +TIME: 2020-12-03 13:32:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15000,7 +15196,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-11-23 17:00:40 +TIME: 2020-12-03 13:32:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15020,7 +15216,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-03 13:32: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/2330464402/CCAST_.CFG @@ -15069,7 +15265,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:44 +TIME: 2020-12-03 13:32:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15101,7 +15297,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:47 +TIME: 2020-12-03 13:32:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15116,7 +15312,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-11-23 17:00:47 +TIME: 2020-12-03 13:32:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15136,7 +15332,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-03 13:32: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/3515115311/CCAST_.CFG @@ -15185,7 +15381,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:52 +TIME: 2020-12-03 13:32:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15217,7 +15413,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:53 +TIME: 2020-12-03 13:32:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15232,7 +15428,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-11-23 17:00:53 +TIME: 2020-12-03 13:32:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15252,7 +15448,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-03 13:33: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/3678416002/CCAST_.CFG @@ -15312,7 +15508,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:00:59 +TIME: 2020-12-03 13:33:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15344,7 +15540,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:01:00 +TIME: 2020-12-03 13:33:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15359,7 +15555,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-11-23 17:01:00 +TIME: 2020-12-03 13:33:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15379,7 +15575,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-03 13:33:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG @@ -15480,7 +15676,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-03 13:33:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15496,7 +15692,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (9) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -15560,7 +15756,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-11-23 17:01:12 +TIME: 2020-12-03 13:33:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15575,7 +15771,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-03 13:33:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15678,7 +15874,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:13 +TIME: 2020-12-03 13:33: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/189936646/CCAST_.CFG @@ -15756,9 +15952,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:01:19 +TIME: 2020-12-03 13:33:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15773,6 +15969,9 @@ 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 @@ -15797,9 +15996,24 @@ >>> Processed Test Case: initTimers (S) @LINE: 82 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 +TIME: 2020-12-03 13:33: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/189936646/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_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-03 13:33:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15829,7 +16043,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-03 13:33:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15873,7 +16087,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-03 13:33: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/1824960653/CCAST_.CFG @@ -15890,7 +16104,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 @@ -15951,7 +16165,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:28 +TIME: 2020-12-03 13:33:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15967,7 +16181,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 100 Script Creation Completed @@ -16000,7 +16214,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:30 +TIME: 2020-12-03 13:33:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16015,7 +16229,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-11-23 17:01:30 +TIME: 2020-12-03 13:33:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16045,7 +16259,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-03 13:33:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16097,7 +16311,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-03 13:33: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/3585417238/CCAST_.CFG @@ -16179,7 +16393,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:39 +TIME: 2020-12-03 13:33:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16195,7 +16409,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (9) Translated 0 script lines Processing script line 50 Processing script line 200 @@ -16241,7 +16455,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:41 +TIME: 2020-12-03 13:33:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16256,7 +16470,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-11-23 17:01:41 +TIME: 2020-12-03 13:33:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16330,7 +16544,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-03 13:33: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/1429379182/CCAST_.CFG @@ -16419,7 +16633,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:49 +TIME: 2020-12-03 13:34:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16435,7 +16649,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (7) Translated 0 script lines Processing script line 50 Processing script line 150 @@ -16473,7 +16687,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:51 +TIME: 2020-12-03 13:34:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16488,7 +16702,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-11-23 17:01:51 +TIME: 2020-12-03 13:34:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16547,7 +16761,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-03 13:34: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/1396715880/CCAST_.CFG @@ -16580,9 +16794,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-03 13:34:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16597,9 +16811,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 +16904,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-03 13:34:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16872,7 +17068,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-03 13:34: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/92980787/CCAST_.CFG @@ -16905,9 +17101,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-11-23 17:02:01 +TIME: 2020-12-03 13:34:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16922,6 +17118,9 @@ 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 @@ -16950,9 +17149,24 @@ >>> Processed Test Case: transitionToChemicalDisinfectMode_NominalPath (S) @LINE: 69 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 +TIME: 2020-12-03 13:34: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/92980787/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 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-03 13:34:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17003,7 +17217,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-03 13:34: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/2214729248/CCAST_.CFG @@ -17036,9 +17250,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-03 13:34:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17053,9 +17267,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 @@ -17094,28 +17305,21 @@ >>> Processed Test Case: initDrainMode_NominalPath (I) @LINE: 108 >>> Processing Test Case: transitionToDrainMode_NominalPath +(E) @LINE: 110 TEST.VALUE:uut_prototype_stubs.setDrainPumpTargetSpeed.return:1 + >>> Could not find function setDrainPumpTargetSpeed + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 113 TEST.EXPECTED:uut_prototype_stubs.setDrainPumpTargetSpeed.rpm:2800 + >>> Could not find function setDrainPumpTargetSpeed + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 116 >>> 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-03 13:34:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17188,7 +17392,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-03 13:34: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/659864482/CCAST_.CFG @@ -17221,9 +17425,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-11-23 17:02:10 +TIME: 2020-12-03 13:34:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17238,6 +17442,9 @@ 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 @@ -17266,9 +17473,24 @@ >>> Processed Test Case: transitionToFaultMode_NominalPath (S) @LINE: 67 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 +TIME: 2020-12-03 13:34: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/659864482/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 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-03 13:34:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17319,7 +17541,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-03 13:34: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/3431170211/CCAST_.CFG @@ -17353,9 +17575,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-03 13:34:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17370,9 +17592,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 +17698,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-03 13:34:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17659,7 +17878,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-03 13:34:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/CCAST_.CFG @@ -17692,9 +17911,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-11-23 17:02:19 +TIME: 2020-12-03 13:34:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17709,6 +17928,9 @@ 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 @@ -17737,9 +17959,24 @@ >>> Processed Test Case: transitionToFlushMode_NominalPath (S) @LINE: 69 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 +TIME: 2020-12-03 13:34:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/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 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-03 13:34:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17790,7 +18027,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-03 13:34: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/2696398941/CCAST_.CFG @@ -17825,7 +18062,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-03 13:34:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17870,7 +18107,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-03 13:34:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17921,7 +18158,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-03 13:34:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/CCAST_.CFG @@ -17956,7 +18193,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-03 13:34:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18061,7 +18298,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-03 13:34:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18213,7 +18450,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-03 13:34: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/428270081/CCAST_.CFG @@ -18248,7 +18485,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:31 +TIME: 2020-12-03 13:34:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18264,7 +18501,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (13) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -18330,7 +18567,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:33 +TIME: 2020-12-03 13:34:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18345,7 +18582,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-11-23 17:02:33 +TIME: 2020-12-03 13:35:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18367,7 +18604,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-03 13:35:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18478,7 +18715,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-03 13:35: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/1806992042/CCAST_.CFG @@ -18513,7 +18750,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:37 +TIME: 2020-12-03 13:35:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18561,7 +18798,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:39 +TIME: 2020-12-03 13:35:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18576,7 +18813,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-11-23 17:02:39 +TIME: 2020-12-03 13:35:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18627,7 +18864,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-03 13:35: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/918555142/CCAST_.CFG @@ -18660,9 +18897,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-11-23 17:02:42 +TIME: 2020-12-03 13:35:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18677,6 +18914,9 @@ 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 @@ -18713,9 +18953,24 @@ >>> Processed Test Case: transitionToSoloMode_NominalPath (S) @LINE: 90 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 +TIME: 2020-12-03 13:35: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/918555142/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 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-03 13:35:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18781,7 +19036,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-03 13:35: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/336674795/CCAST_.CFG @@ -18816,7 +19071,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:47 +TIME: 2020-12-03 13:35:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18832,7 +19087,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (13) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -18915,7 +19170,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:48 +TIME: 2020-12-03 13:35:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18930,7 +19185,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-11-23 17:02:48 +TIME: 2020-12-03 13:35:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18952,7 +19207,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-03 13:35:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19091,7 +19346,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-03 13:35: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/1114345785/CCAST_.CFG @@ -19126,7 +19381,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:53 +TIME: 2020-12-03 13:35:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19227,7 +19482,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:54 +TIME: 2020-12-03 13:35:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19242,7 +19497,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-11-23 17:02:54 +TIME: 2020-12-03 13:35:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19380,7 +19635,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-03 13:35: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/3573947708/CCAST_.CFG @@ -19416,7 +19671,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-11-23 17:02:58 +TIME: 2020-12-03 13:35:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20083,7 +20338,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-03 13:35:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21166,7 +21421,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-03 13:35: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/241608158/CCAST_.CFG @@ -21201,7 +21456,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:06 +TIME: 2020-12-03 13:35:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21217,7 +21472,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (31) Translated 0 script lines Processing script line 50 Processing script line 200 @@ -21360,7 +21615,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:08 +TIME: 2020-12-03 13:35:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21375,7 +21630,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-11-23 17:03:08 +TIME: 2020-12-03 13:35:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21618,7 +21873,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-03 13:35:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/CCAST_.CFG @@ -21651,9 +21906,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk 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 +COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C test script run /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-03 13:35:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21668,9 +21923,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 Script Creation Completed -------------------------------------------------------------------------------- @@ -21712,24 +21964,9 @@ >>> Processed Test Case: initPersistentAlarm_NominalPath (S) @LINE: 157 >>> 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 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/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 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-03 13:35:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21799,7 +22036,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-03 13:35: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/396578388/CCAST_.CFG @@ -21834,7 +22071,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:18 +TIME: 2020-12-03 13:35:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21850,7 +22087,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -21967,7 +22204,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:19 +TIME: 2020-12-03 13:35:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21982,7 +22219,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-11-23 17:03:19 +TIME: 2020-12-03 13:35:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22159,7 +22396,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-03 13:35:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG @@ -22194,7 +22431,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:23 +TIME: 2020-12-03 13:35:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22378,7 +22615,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:25 +TIME: 2020-12-03 13:35:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22393,7 +22630,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-11-23 17:03:25 +TIME: 2020-12-03 13:35:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22672,7 +22909,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-03 13:36: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/148424956/CCAST_.CFG @@ -22705,9 +22942,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-03 13:36:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22722,9 +22959,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 +23175,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-03 13:36:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23335,7 +23554,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-03 13:36: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/1091159810/CCAST_.CFG @@ -23369,9 +23588,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-03 13:36:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23386,9 +23605,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 @@ -23418,18 +23634,82 @@ >>> Processed Test Case: execROPumpController_OffState (I) @LINE: 80 >>> Processing Test Case: execROPumpMonitor_CalcAvg +(E) @LINE: 92 TEST.VALUE:uut_prototype_stubs.broadcastROPumpData.return:1 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 98 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.tgtPressure:120 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 99 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.measFlow:3.63636 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 100 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.setPWM:40.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 101 >>> Processed Test Case: execROPumpMonitor_CalcAvg (I) @LINE: 107 >>> Processing Test Case: execROPumpMonitor_CalcAvg_Zero +(E) @LINE: 119 TEST.VALUE:uut_prototype_stubs.broadcastROPumpData.return:1 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 125 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.tgtPressure:120 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 126 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.measFlow:0.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 127 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.setPWM:40.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 128 >>> Processed Test Case: execROPumpMonitor_CalcAvg_Zero (I) @LINE: 134 >>> Processing Test Case: execROPumpMonitor_CalcAvg_Zero2 +(E) @LINE: 146 TEST.VALUE:uut_prototype_stubs.broadcastROPumpData.return:1 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 152 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.tgtPressure:120 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 153 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.measFlow:0.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 154 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.setPWM:40.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 155 >>> Processed Test Case: execROPumpMonitor_CalcAvg_Zero2 (I) @LINE: 161 >>> Processing Test Case: execROPumpMonitor_NominalPath +(E) @LINE: 173 TEST.VALUE:uut_prototype_stubs.broadcastROPumpData.return:1 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 179 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.tgtPressure:120 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 180 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.measFlow:2.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 181 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.setPWM:40.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 182 >>> Processed Test Case: execROPumpMonitor_NominalPath (I) @LINE: 190 @@ -23494,6 +23774,22 @@ >>> Processed Test Case: publishROPumpData_NotTime (I) @LINE: 408 >>> Processing Test Case: publishROPumpData_TimeToBroadcast +(E) @LINE: 414 TEST.VALUE:uut_prototype_stubs.broadcastROPumpData.return:1 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 416 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.tgtPressure:120 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 417 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.measFlow:250.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored +(E) @LINE: 418 TEST.EXPECTED:uut_prototype_stubs.broadcastROPumpData.setPWM:50.0 + >>> Could not find function broadcastROPumpData + >>> in unit uut_prototype_stubs. + >>> Value Line Error - Command Ignored (S) @LINE: 419 >>> Processed Test Case: publishROPumpData_TimeToBroadcast (I) @LINE: 427 @@ -23570,24 +23866,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-03 13:36:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23609,7 +23890,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-03 13:36:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23929,7 +24210,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-03 13:36: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/428499850/CCAST_.CFG @@ -23965,7 +24246,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:43 +TIME: 2020-12-03 13:36:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23981,7 +24262,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 100 Processing script line 150 @@ -24445,7 +24726,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:45 +TIME: 2020-12-03 13:36:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24460,7 +24741,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-11-23 17:03:46 +TIME: 2020-12-03 13:36:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25265,7 +25546,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-03 13:36: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/129022383/CCAST_.CFG @@ -25301,7 +25582,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:51 +TIME: 2020-12-03 13:36:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25317,7 +25598,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 50 Script Creation Completed @@ -25366,7 +25647,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:53 +TIME: 2020-12-03 13:36:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25381,7 +25662,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-11-23 17:03:53 +TIME: 2020-12-03 13:36:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25461,7 +25742,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-03 13:36: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/480960922/CCAST_.CFG @@ -25496,7 +25777,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-03 13:36:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25512,7 +25793,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 @@ -25527,12 +25808,11 @@ Processing script line 700 Processing script line 750 Processing script line 850 - Processing script line 1150 - Processing script line 1200 - Processing script line 1250 + Processing script line 1300 + Processing script line 1350 + Processing script line 1400 Processing script line 1450 Processing script line 1500 - Processing script line 1600 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -25785,168 +26065,178 @@ >>> Processed Test Case: A007_PressureBroadcastIntervalOverride (I) @LINE: 1144 >>> Processing Test Case: A008_ROPumpSetPtOverride -(S) @LINE: 1151 +(E) Errors from previous script import(s) + >>> (E) @LINE: 16 TEST.EXPECTED:uut_prototype_stubs.handleTestROPumpSetPointOverrideRequest.message[0].hdr.msgID:0xA008 + >>> >>> Could not find function handleTestROPumpSetPointOverrideRequest + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 17 TEST.EXPECTED:uut_prototype_stubs.handleTestROPumpSetPointOverrideRequest.message[0].hdr.payloadLen:8 + >>> >>> Could not find function handleTestROPumpSetPointOverrideRequest + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 1160 >>> Processed Test Case: A008_ROPumpSetPtOverride -(I) @LINE: 1157 +(I) @LINE: 1166 >>> Processing Test Case: A009_ROMeasFlowOverride -(S) @LINE: 1164 +(S) @LINE: 1173 >>> Processed Test Case: A009_ROMeasFlowOverride -(I) @LINE: 1170 +(I) @LINE: 1179 >>> Processing Test Case: A00A_ROPumpBroadcastIntervalOverride -(S) @LINE: 1177 +(S) @LINE: 1186 >>> Processed Test Case: A00A_ROPumpBroadcastIntervalOverride -(I) @LINE: 1183 +(I) @LINE: 1192 >>> Processing Test Case: A00B_DrainPumpSetPtOverride -(S) @LINE: 1190 +(E) Errors from previous script import(s) + >>> (E) @LINE: 28 TEST.EXPECTED:uut_prototype_stubs.handleTestDrainPumpSetPointOverrideRequest.message[0].hdr.msgID:0xA00B + >>> >>> Could not find function handleTestDrainPumpSetPointOverrideRequest + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 29 TEST.EXPECTED:uut_prototype_stubs.handleTestDrainPumpSetPointOverrideRequest.message[0].hdr.payloadLen:8 + >>> >>> Could not find function handleTestDrainPumpSetPointOverrideRequest + >>> >>> in unit uut_prototype_stubs. + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 1210 >>> Processed Test Case: A00B_DrainPumpSetPtOverride -(I) @LINE: 1196 +(I) @LINE: 1216 >>> Processing Test Case: A00C_DrainPumpBroadcastIntervalOverride -(S) @LINE: 1203 +(S) @LINE: 1223 >>> Processed Test Case: A00C_DrainPumpBroadcastIntervalOverride -(I) @LINE: 1209 +(I) @LINE: 1229 >>> Processing Test Case: A00D_LoadCellBroadcastIntervalOverride -(S) @LINE: 1216 +(S) @LINE: 1236 >>> Processed Test Case: A00D_LoadCellBroadcastIntervalOverride -(I) @LINE: 1222 +(I) @LINE: 1242 >>> Processing Test Case: A00E_ValveStateOverride -(S) @LINE: 1229 +(S) @LINE: 1249 >>> Processed Test Case: A00E_ValveStateOverride -(I) @LINE: 1235 +(I) @LINE: 1255 >>> Processing Test Case: A00F_ValveBroadcastIntervalOverride -(S) @LINE: 1242 +(S) @LINE: 1262 >>> Processed Test Case: A00F_ValveBroadcastIntervalOverride -(I) @LINE: 1248 +(I) @LINE: 1268 >>> Processing Test Case: A010_TemperatureOverride -(S) @LINE: 1255 +(S) @LINE: 1275 >>> Processed Test Case: A010_TemperatureOverride -(I) @LINE: 1261 +(I) @LINE: 1281 >>> Processing Test Case: A011_StartStopPrimaryHeaterCmd -(S) @LINE: 1269 +(S) @LINE: 1289 >>> Processed Test Case: A011_StartStopPrimaryHeaterCmd -(I) @LINE: 1275 +(I) @LINE: 1295 >>> Processing Test Case: A012_TemperatureBroadcastIntervalOverride -(S) @LINE: 1282 +(S) @LINE: 1302 >>> Processed Test Case: A012_TemperatureBroadcastIntervalOverride -(I) @LINE: 1288 +(I) @LINE: 1308 >>> Processing Test Case: A013_HeatersBroadcastIntervalOverride -(S) @LINE: 1295 +(S) @LINE: 1315 >>> Processed Test Case: A013_HeatersBroadcastIntervalOverride -(I) @LINE: 1301 +(I) @LINE: 1321 >>> Processing Test Case: A014_SafetyShutdownOverride -(S) @LINE: 1308 +(S) @LINE: 1328 >>> Processed Test Case: A014_SafetyShutdownOverride -(I) @LINE: 1314 +(I) @LINE: 1334 >>> Processing Test Case: A015_ConductivityOverride -(S) @LINE: 1321 +(S) @LINE: 1341 >>> Processed Test Case: A015_ConductivityOverride -(I) @LINE: 1327 +(I) @LINE: 1347 >>> Processing Test Case: A016_ConductivityBroadcastIntervalOverride -(S) @LINE: 1334 +(S) @LINE: 1354 >>> Processed Test Case: A016_ConductivityBroadcastIntervalOverride -(I) @LINE: 1340 +(I) @LINE: 1360 >>> Processing Test Case: A017_AccelAxisOverride -(S) @LINE: 1347 +(S) @LINE: 1367 >>> Processed Test Case: A017_AccelAxisOverride -(I) @LINE: 1353 +(I) @LINE: 1373 >>> Processing Test Case: A018_AccelMaxOverride -(S) @LINE: 1360 +(S) @LINE: 1380 >>> Processed Test Case: A018_AccelMaxOverride -(I) @LINE: 1366 +(I) @LINE: 1386 >>> Processing Test Case: A019_AccelBroadcastIntervalOverride -(S) @LINE: 1373 +(S) @LINE: 1393 >>> Processed Test Case: A019_AccelBroadcastIntervalOverride -(I) @LINE: 1379 +(I) @LINE: 1399 >>> Processing Test Case: A01A_SetAccelCalibration -(S) @LINE: 1386 +(S) @LINE: 1406 >>> Processed Test Case: A01A_SetAccelCalibration -(I) @LINE: 1392 +(I) @LINE: 1412 + >>> Processing Test Case: A01C_handleSetDrainPumpDeltaPressureOverrideRequest +(E) @LINE: 1427 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestPressureSensorOverrideRequest.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: 1428 + >>> Processed Test Case: A01C_handleSetDrainPumpDeltaPressureOverrideRequest +(I) @LINE: 1434 >>> Processing Test Case: A022_SoftwareResetRequest -(S) @LINE: 1399 +(S) @LINE: 1441 >>> Processed Test Case: A022_SoftwareResetRequest -(I) @LINE: 1405 +(I) @LINE: 1447 >>> Processing Test Case: A023_ConcentratePumpMeasuredSpeedOverride -(S) @LINE: 1412 +(S) @LINE: 1454 >>> Processed Test Case: A023_ConcentratePumpMeasuredSpeedOverride -(I) @LINE: 1418 +(I) @LINE: 1460 >>> Processing Test Case: A024_ConcentratePumpTargetSpeedOverride -(S) @LINE: 1425 +(S) @LINE: 1467 >>> Processed Test Case: A024_ConcentratePumpTargetSpeedOverride -(I) @LINE: 1431 +(I) @LINE: 1473 >>> Processing Test Case: A026_ConcentratePumpStateChange -(S) @LINE: 1438 +(S) @LINE: 1480 >>> Processed Test Case: A026_ConcentratePumpStateChange -(I) @LINE: 1444 +(I) @LINE: 1486 >>> Processing Test Case: A027_ConcentratePumpPublishIntervalOverride -(S) @LINE: 1451 +(S) @LINE: 1493 >>> Processed Test Case: A027_ConcentratePumpPublishIntervalOverride -(I) @LINE: 1457 +(I) @LINE: 1499 >>> Processing Test Case: InvalidMessageID -(S) @LINE: 1464 +(S) @LINE: 1506 >>> Processed Test Case: InvalidMessageID -(I) @LINE: 1470 +(I) @LINE: 1512 >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 1477 +(S) @LINE: 1519 >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 1483 +(I) @LINE: 1525 >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 1493 +(S) @LINE: 1535 >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 1499 +(I) @LINE: 1541 >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 1509 +(S) @LINE: 1551 >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 1517 +(I) @LINE: 1559 >>> Processing Test Case: processReceivedMessages_ACKReceived -(S) @LINE: 1528 +(S) @LINE: 1570 >>> Processed Test Case: processReceivedMessages_ACKReceived -(I) @LINE: 1534 +(I) @LINE: 1576 >>> Processing Test Case: processReceivedMessages_ACKRequired -(S) @LINE: 1545 +(S) @LINE: 1587 >>> Processed Test Case: processReceivedMessages_ACKRequired -(I) @LINE: 1551 +(I) @LINE: 1593 >>> Processing Test Case: processReceivedMessages_BadCRC -(S) @LINE: 1557 +(S) @LINE: 1599 >>> Processed Test Case: processReceivedMessages_BadCRC -(I) @LINE: 1563 +(I) @LINE: 1605 >>> Processing Test Case: processReceivedMessages_NoMessagesReceived -(S) @LINE: 1566 +(S) @LINE: 1608 >>> Processed Test Case: processReceivedMessages_NoMessagesReceived -(I) @LINE: 1572 +(I) @LINE: 1614 >>> Processing Test Case: processReceivedMessages_OneMessageReceived -(S) @LINE: 1578 +(S) @LINE: 1620 >>> Processed Test Case: processReceivedMessages_OneMessageReceived -(I) @LINE: 1586 +(I) @LINE: 1628 >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 1590 +(S) @LINE: 1632 >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 1596 +(I) @LINE: 1638 >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 1605 +(S) @LINE: 1647 >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 1611 +(I) @LINE: 1653 >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 1619 +(S) @LINE: 1661 >>> Processed Test Case: PendingCANPacketIsPartial -(S) @LINE: 1619 +(S) @LINE: 1661 >>> 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-03 13:36:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26592,6 +26882,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: A01C_handleSetDrainPumpDeltaPressureOverrideRequest + 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: A022_SoftwareResetRequest Preparing Test Data Running Test Case @@ -26658,7 +26955,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-03 13:36: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/456249163/CCAST_.CFG @@ -26694,7 +26991,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-03 13:36:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26710,65 +27007,57 @@ 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 Processing script line 150 Processing script line 200 Processing script line 250 - Processing script line 300 - Processing script line 350 + Processing script line 400 Processing script line 450 Processing script line 500 - Processing script line 550 Processing script line 600 Processing script line 650 - Processing script line 700 - Processing script line 750 Processing script line 800 - Processing script line 900 - Processing script line 950 + Processing script line 850 Processing script line 1000 - Processing script line 1050 + Processing script line 1100 Processing script line 1150 Processing script line 1200 Processing script line 1250 Processing script line 1300 - Processing script line 1350 Processing script line 1400 Processing script line 1450 Processing script line 1500 + Processing script line 1550 Processing script line 1600 Processing script line 1650 Processing script line 1700 + Processing script line 1750 Processing script line 1850 Processing script line 1900 - Processing script line 1950 - Processing script line 2050 Processing script line 2100 - Processing script line 2200 Processing script line 2250 + Processing script line 2350 Processing script line 2400 Processing script line 2450 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 3300 - Processing script line 3400 Processing script line 3450 Processing script line 3500 Processing script line 3550 + Processing script line 3600 Processing script line 3650 Script Creation Completed -------------------------------------------------------------------------------- @@ -26804,552 +27093,547 @@ >>> Processed Test Case: broadcastDGOperationMode_NominalPath (I) @LINE: 294 >>> Processing Test Case: broadcastDrainPumpData_NominalPath -(S) @LINE: 318 +(E) Errors from previous script import(s) + >>> (E) @LINE: 338 TEST.ATTRIBUTES:SystemCommMessages.broadcastValvesStates.valvesStates::INPUT_BASE=16 + >>> >>> Unknown parameter/object name valvesStates::INPUT_BASE=16 + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 294 TEST.VALUE:SystemCommMessages.broadcastDrainPumpData.tgtSpeed:1000 + >>> >>> Unknown parameter/object name tgtSpeed + >>> >>> Value Line Error - Command Ignored + >>> (E) @LINE: 295 TEST.VALUE:SystemCommMessages.broadcastDrainPumpData.dac:10000 + >>> >>> Unknown parameter/object name dac + >>> >>> Value Line Error - Command Ignored +(S) @LINE: 343 >>> Processed Test Case: broadcastDrainPumpData_NominalPath -(I) @LINE: 326 +(I) @LINE: 351 >>> Processing Test Case: broadcastHeatersData_NominalPath -(S) @LINE: 356 +(S) @LINE: 381 >>> Processed Test Case: broadcastHeatersData_NominalPath -(I) @LINE: 364 +(I) @LINE: 389 >>> Processing Test Case: broadcastLoadCellData_NominalPath -(S) @LINE: 398 +(S) @LINE: 423 >>> Processed Test Case: broadcastLoadCellData_NominalPath -(I) @LINE: 406 +(I) @LINE: 431 >>> Processing Test Case: broadcastPressureSensorsData_NominalPath -(S) @LINE: 436 +(S) @LINE: 461 >>> Processed Test Case: broadcastPressureSensorsData_NominalPath -(I) @LINE: 444 - >>> Processing Test Case: broadcastROPumpData_NominalPath -(S) @LINE: 473 - >>> Processed Test Case: broadcastROPumpData_NominalPath -(I) @LINE: 481 +(I) @LINE: 469 >>> Processing Test Case: broadcastRTCEpoch_NominalPath -(S) @LINE: 503 +(S) @LINE: 491 >>> Processed Test Case: broadcastRTCEpoch_NominalPath -(I) @LINE: 511 +(I) @LINE: 499 >>> Processing Test Case: broadcastReservoirData_NominalPath -(S) @LINE: 540 +(S) @LINE: 528 >>> Processed Test Case: broadcastReservoirData_NominalPath -(I) @LINE: 548 +(I) @LINE: 536 >>> Processing Test Case: broadcastTemperatureSensorsData_NominalPath -(S) @LINE: 560 +(S) @LINE: 548 >>> Processed Test Case: broadcastTemperatureSensorsData_NominalPath -(I) @LINE: 568 +(I) @LINE: 556 >>> Processing Test Case: broadcastValvesStates_NominalPath -(S) @LINE: 583 +(S) @LINE: 571 >>> Processed Test Case: broadcastValvesStates_NominalPath -(I) @LINE: 591 +(I) @LINE: 579 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_InvalidPayloadLen -(S) @LINE: 602 +(S) @LINE: 590 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_InvalidPayloadLen -(I) @LINE: 608 +(I) @LINE: 596 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_Override -(S) @LINE: 634 +(S) @LINE: 622 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_Override -(I) @LINE: 640 +(I) @LINE: 628 >>> Processing Test Case: handleConcentratePumpMeasuredSpeedOverride_Reset -(S) @LINE: 665 +(S) @LINE: 653 >>> Processed Test Case: handleConcentratePumpMeasuredSpeedOverride_Reset -(I) @LINE: 673 +(I) @LINE: 661 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen -(S) @LINE: 684 +(S) @LINE: 672 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_InvalidPayloadLen -(I) @LINE: 690 +(I) @LINE: 678 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Override -(S) @LINE: 711 +(S) @LINE: 699 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Override -(I) @LINE: 717 +(I) @LINE: 705 >>> Processing Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(S) @LINE: 737 +(S) @LINE: 725 >>> Processed Test Case: handleConcentratePumpPublishIntervalOverride_Reset -(I) @LINE: 745 +(I) @LINE: 733 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(S) @LINE: 758 +(S) @LINE: 746 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_InvalidPayloadLen -(I) @LINE: 764 +(I) @LINE: 752 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(S) @LINE: 785 +(S) @LINE: 773 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_NotLoggedIn -(I) @LINE: 791 +(I) @LINE: 779 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(S) @LINE: 817 +(S) @LINE: 805 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOff -(I) @LINE: 823 +(I) @LINE: 811 >>> Processing Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(S) @LINE: 849 +(S) @LINE: 837 >>> Processed Test Case: handleConcentratePumpStateChangeRequest_TurnPumpOn -(I) @LINE: 857 +(I) @LINE: 845 >>> Processing Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(S) @LINE: 870 +(S) @LINE: 858 >>> Processed Test Case: handleDGSoftwareResetRequest_InvalidPayloadLen -(I) @LINE: 876 +(I) @LINE: 864 >>> Processing Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(S) @LINE: 889 +(S) @LINE: 877 >>> Processed Test Case: handleDGSoftwareResetRequest_NotLoggedIn -(I) @LINE: 895 +(I) @LINE: 883 >>> Processing Test Case: handleDGSoftwareResetRequest_Reset -(S) @LINE: 911 +(S) @LINE: 899 >>> Processed Test Case: handleDGSoftwareResetRequest_Reset -(I) @LINE: 919 +(I) @LINE: 907 >>> Processing Test Case: handleDrainCmd_InvalidPayloadLength -(S) @LINE: 931 +(S) @LINE: 919 >>> Processed Test Case: handleDrainCmd_InvalidPayloadLength -(I) @LINE: 937 +(I) @LINE: 925 >>> Processing Test Case: handleDrainCmd_NominalPath -(S) @LINE: 958 +(S) @LINE: 946 >>> Processed Test Case: handleDrainCmd_NominalPath -(I) @LINE: 966 +(I) @LINE: 954 >>> Processing Test Case: handleFWVersionCmd_NominalPath -(S) @LINE: 983 +(S) @LINE: 971 >>> Processed Test Case: handleFWVersionCmd_NominalPath -(I) @LINE: 991 +(I) @LINE: 979 >>> Processing Test Case: handleFillCmd_InvalidPayloadLength -(S) @LINE: 1003 +(S) @LINE: 991 >>> Processed Test Case: handleFillCmd_InvalidPayloadLength -(I) @LINE: 1009 +(I) @LINE: 997 >>> Processing Test Case: handleFillCmd_NominalPath -(S) @LINE: 1027 +(S) @LINE: 1015 >>> Processed Test Case: handleFillCmd_NominalPath -(I) @LINE: 1035 +(I) @LINE: 1023 >>> Processing Test Case: handlePowerOffWarning_InvalidPayloadLen -(S) @LINE: 1042 +(S) @LINE: 1030 >>> Processed Test Case: handlePowerOffWarning_InvalidPayloadLen -(I) @LINE: 1048 +(I) @LINE: 1036 >>> Processing Test Case: handlePowerOffWarning_NominalPath -(S) @LINE: 1056 +(S) @LINE: 1044 >>> Processed Test Case: handlePowerOffWarning_NominalPath -(I) @LINE: 1064 +(I) @LINE: 1052 >>> Processing Test Case: handleSampleWaterCmd_InvalidPayloadLength -(S) @LINE: 1076 +(S) @LINE: 1064 >>> Processed Test Case: handleSampleWaterCmd_InvalidPayloadLength -(I) @LINE: 1082 +(I) @LINE: 1070 >>> Processing Test Case: handleSampleWaterCmd_NominalPath -(S) @LINE: 1096 +(S) @LINE: 1084 >>> Processed Test Case: handleSampleWaterCmd_NominalPath -(I) @LINE: 1102 +(I) @LINE: 1090 >>> Processing Test Case: handleSampleWaterCmd_NotStandbyMode -(S) @LINE: 1115 +(S) @LINE: 1103 >>> Processed Test Case: handleSampleWaterCmd_NotStandbyMode -(I) @LINE: 1123 +(I) @LINE: 1111 >>> Processing Test Case: handleSetAccelCalibration_InvalidPayloadLen -(S) @LINE: 1135 +(S) @LINE: 1123 >>> Processed Test Case: handleSetAccelCalibration_InvalidPayloadLen -(I) @LINE: 1141 +(I) @LINE: 1129 >>> Processing Test Case: handleSetAccelCalibration_NominalPath -(S) @LINE: 1169 +(S) @LINE: 1157 >>> Processed Test Case: handleSetAccelCalibration_NominalPath -(I) @LINE: 1177 +(I) @LINE: 1165 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(S) @LINE: 1189 +(S) @LINE: 1177 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_InvalidPayloadLength -(I) @LINE: 1195 +(I) @LINE: 1183 >>> Processing Test Case: handleSetConcentratePumpTargetSpeed_Override -(S) @LINE: 1222 +(S) @LINE: 1210 >>> Processed Test Case: handleSetConcentratePumpTargetSpeed_Override -(I) @LINE: 1230 +(I) @LINE: 1218 >>> Processing Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(S) @LINE: 1242 +(S) @LINE: 1230 >>> Processed Test Case: handleSetDialysateTemperatureCmd_InvalidPayloadLength -(I) @LINE: 1248 +(I) @LINE: 1236 >>> Processing Test Case: handleSetDialysateTemperatureCmd_NominalPath -(S) @LINE: 1270 +(S) @LINE: 1258 >>> Processed Test Case: handleSetDialysateTemperatureCmd_NominalPath -(I) @LINE: 1278 +(I) @LINE: 1266 + >>> Processing Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Invalid_Payload_Length +(S) @LINE: 1278 + >>> Processed Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Invalid_Payload_Length +(I) @LINE: 1284 + >>> Processing Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Override +(S) @LINE: 1303 + >>> Processed Test Case: handleSetDrainPumpDeltaPressureOverrideRequest_Override +(I) @LINE: 1311 >>> Processing Test Case: handleSetRTCTimestamp -(S) @LINE: 1313 +(S) @LINE: 1346 >>> Processed Test Case: handleSetRTCTimestamp -(I) @LINE: 1321 +(I) @LINE: 1354 >>> Processing Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(S) @LINE: 1336 +(S) @LINE: 1369 >>> Processed Test Case: handleStartStopPrimaryHeater_InvalidPayloadLen -(I) @LINE: 1342 +(I) @LINE: 1375 >>> Processing Test Case: handleStartStopPrimaryHeater_Start -(S) @LINE: 1352 +(S) @LINE: 1385 >>> Processed Test Case: handleStartStopPrimaryHeater_Start -(I) @LINE: 1358 +(I) @LINE: 1391 >>> Processing Test Case: handleStartStopPrimaryHeater_Stop -(S) @LINE: 1367 +(S) @LINE: 1400 >>> Processed Test Case: handleStartStopPrimaryHeater_Stop -(I) @LINE: 1375 +(I) @LINE: 1408 >>> Processing Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(S) @LINE: 1387 +(S) @LINE: 1420 >>> Processed Test Case: handleStartStopTreatmentMsg_InvalidPayloadLength -(I) @LINE: 1393 +(I) @LINE: 1426 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(S) @LINE: 1410 +(S) @LINE: 1443 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_NotStandbyMode -(I) @LINE: 1416 +(I) @LINE: 1449 >>> Processing Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(S) @LINE: 1434 +(S) @LINE: 1467 >>> Processed Test Case: handleStartStopTreatmentMsg_Start_StandbyMode -(I) @LINE: 1440 +(I) @LINE: 1473 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(S) @LINE: 1457 +(S) @LINE: 1490 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_NotRecircMode -(I) @LINE: 1463 +(I) @LINE: 1496 >>> Processing Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(S) @LINE: 1481 +(S) @LINE: 1514 >>> Processed Test Case: handleStartStopTreatmentMsg_Stop_RecircMode -(I) @LINE: 1489 +(I) @LINE: 1522 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(S) @LINE: 1501 +(S) @LINE: 1534 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_InvalidPayloadLen -(I) @LINE: 1507 +(I) @LINE: 1540 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Start -(S) @LINE: 1524 +(S) @LINE: 1557 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Start -(I) @LINE: 1530 +(I) @LINE: 1563 >>> Processing Test Case: handleStartStopTrimmerHeaterCmd_Stop -(S) @LINE: 1547 +(S) @LINE: 1580 >>> Processed Test Case: handleStartStopTrimmerHeaterCmd_Stop -(I) @LINE: 1555 +(I) @LINE: 1588 >>> Processing Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(S) @LINE: 1567 +(S) @LINE: 1600 >>> Processed Test Case: handleSwitchReservoirCmd_InvalidPayloadLength -(I) @LINE: 1573 +(I) @LINE: 1606 >>> Processing Test Case: handleSwitchReservoirCmd_NominalPath -(S) @LINE: 1591 +(S) @LINE: 1624 >>> Processed Test Case: handleSwitchReservoirCmd_NominalPath -(I) @LINE: 1599 +(I) @LINE: 1632 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 1609 +(S) @LINE: 1642 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 1615 +(I) @LINE: 1648 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 1640 +(S) @LINE: 1673 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 1646 +(I) @LINE: 1679 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 1670 +(S) @LINE: 1703 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 1678 +(I) @LINE: 1711 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 1690 +(S) @LINE: 1723 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 1696 +(I) @LINE: 1729 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(S) @LINE: 1718 +(S) @LINE: 1751 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Override -(I) @LINE: 1724 +(I) @LINE: 1757 >>> Processing Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 1745 +(S) @LINE: 1778 >>> Processed Test Case: handleTestDGAccelBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 1753 +(I) @LINE: 1786 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(S) @LINE: 1765 +(S) @LINE: 1798 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_InvalidPayloadLen -(I) @LINE: 1771 +(I) @LINE: 1804 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Override -(S) @LINE: 1798 +(S) @LINE: 1831 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Override -(I) @LINE: 1804 +(I) @LINE: 1837 >>> Processing Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(S) @LINE: 1830 +(S) @LINE: 1863 >>> Processed Test Case: handleTestDGAccelMaxOverrideRequest_Reset -(I) @LINE: 1838 +(I) @LINE: 1871 >>> Processing Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(S) @LINE: 1850 +(S) @LINE: 1883 >>> Processed Test Case: handleTestDGAccelOverrideRequest_InvalidPayloadLen -(I) @LINE: 1856 +(I) @LINE: 1889 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Override -(S) @LINE: 1883 +(S) @LINE: 1916 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Override -(I) @LINE: 1889 +(I) @LINE: 1922 >>> Processing Test Case: handleTestDGAccelOverrideRequest_Reset -(S) @LINE: 1915 +(S) @LINE: 1948 >>> Processed Test Case: handleTestDGAccelOverrideRequest_Reset -(I) @LINE: 1923 +(I) @LINE: 1956 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(S) @LINE: 1936 +(S) @LINE: 1969 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_InvalidPayloadLen -(I) @LINE: 1942 +(I) @LINE: 1975 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(S) @LINE: 1965 +(S) @LINE: 1998 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Override -(I) @LINE: 1971 +(I) @LINE: 2004 >>> Processing Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(S) @LINE: 1993 +(S) @LINE: 2026 >>> Processed Test Case: handleTestDGSafetyShutdownOverrideRequest_Reset -(I) @LINE: 2001 +(I) @LINE: 2034 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2013 +(S) @LINE: 2046 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2019 +(I) @LINE: 2052 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2041 +(S) @LINE: 2074 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2047 +(I) @LINE: 2080 >>> Processing Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2068 +(S) @LINE: 2101 >>> Processed Test Case: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2076 - >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2088 - >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2094 - >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(S) @LINE: 2116 - >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Override -(I) @LINE: 2122 - >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(S) @LINE: 2143 - >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset -(I) @LINE: 2151 +(I) @LINE: 2109 + >>> Processing Test Case: handleTestDrainPumpRPMOverrideRequest_Invalid_Payload_Length +(S) @LINE: 2121 + >>> Processed Test Case: handleTestDrainPumpRPMOverrideRequest_Invalid_Payload_Length +(I) @LINE: 2127 + >>> Processing Test Case: handleTestDrainPumpRPMOverrideRequest_Override +(S) @LINE: 2146 + >>> Processed Test Case: handleTestDrainPumpRPMOverrideRequest_Override +(I) @LINE: 2154 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2163 +(S) @LINE: 2166 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2169 +(I) @LINE: 2172 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(S) @LINE: 2192 +(S) @LINE: 2195 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Override -(I) @LINE: 2198 +(I) @LINE: 2201 >>> Processing Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(S) @LINE: 2220 +(S) @LINE: 2223 >>> Processed Test Case: handleTestHeatersDataPublishOverrideRequest_Reset -(I) @LINE: 2228 +(I) @LINE: 2231 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2240 +(S) @LINE: 2243 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2246 +(I) @LINE: 2249 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2268 +(S) @LINE: 2271 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2274 +(I) @LINE: 2277 >>> Processing Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2295 +(S) @LINE: 2298 >>> Processed Test Case: handleTestLoadCellDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2303 +(I) @LINE: 2306 >>> Processing Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(S) @LINE: 2315 +(S) @LINE: 2318 >>> Processed Test Case: handleTestLoadCellOverrideRequest_InvalidPayloadLength -(I) @LINE: 2321 +(I) @LINE: 2324 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Override -(S) @LINE: 2348 +(S) @LINE: 2351 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Override -(I) @LINE: 2354 +(I) @LINE: 2357 >>> Processing Test Case: handleTestLoadCellOverrideRequest_Reset -(S) @LINE: 2380 +(S) @LINE: 2383 >>> Processed Test Case: handleTestLoadCellOverrideRequest_Reset -(I) @LINE: 2388 +(I) @LINE: 2391 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2400 +(S) @LINE: 2403 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2406 +(I) @LINE: 2409 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2428 +(S) @LINE: 2431 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2434 +(I) @LINE: 2437 >>> Processing Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2455 +(S) @LINE: 2458 >>> Processed Test Case: handleTestPressureDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2463 +(I) @LINE: 2466 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(S) @LINE: 2475 +(S) @LINE: 2478 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_InvalidPayloadLength -(I) @LINE: 2481 +(I) @LINE: 2484 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Override -(S) @LINE: 2508 +(S) @LINE: 2511 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Override -(I) @LINE: 2514 +(I) @LINE: 2517 >>> Processing Test Case: handleTestPressureSensorOverrideRequest_Reset -(S) @LINE: 2540 +(S) @LINE: 2543 >>> Processed Test Case: handleTestPressureSensorOverrideRequest_Reset -(I) @LINE: 2548 +(I) @LINE: 2551 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(S) @LINE: 2560 +(S) @LINE: 2563 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_InvalidPayloadLength -(I) @LINE: 2566 +(I) @LINE: 2569 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(S) @LINE: 2588 +(S) @LINE: 2591 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Override -(I) @LINE: 2594 +(I) @LINE: 2597 >>> Processing Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(S) @LINE: 2615 +(S) @LINE: 2618 >>> Processed Test Case: handleTestROMeasuredFlowOverrideRequest_Reset -(I) @LINE: 2623 +(I) @LINE: 2626 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2635 +(S) @LINE: 2638 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2641 +(I) @LINE: 2644 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(S) @LINE: 2663 +(S) @LINE: 2666 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Override -(I) @LINE: 2669 +(I) @LINE: 2672 >>> Processing Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 2690 +(S) @LINE: 2693 >>> Processed Test Case: handleTestROPumpDataBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 2698 - >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(S) @LINE: 2710 - >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength -(I) @LINE: 2716 - >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Override -(S) @LINE: 2738 - >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Override -(I) @LINE: 2744 - >>> Processing Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(S) @LINE: 2765 - >>> Processed Test Case: handleTestROPumpSetPointOverrideRequest_Reset -(I) @LINE: 2773 +(I) @LINE: 2701 + >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength +(S) @LINE: 2713 + >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength +(I) @LINE: 2719 + >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Override +(S) @LINE: 2741 + >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Override +(I) @LINE: 2747 + >>> Processing Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset +(S) @LINE: 2768 + >>> Processed Test Case: handleTestDrainPumpSetPointOverrideRequest_Reset +(I) @LINE: 2776 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(S) @LINE: 2785 +(S) @LINE: 2788 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_InvalidPayloadLength -(I) @LINE: 2791 +(I) @LINE: 2794 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(S) @LINE: 2813 +(S) @LINE: 2816 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Override -(I) @LINE: 2819 +(I) @LINE: 2822 >>> Processing Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(S) @LINE: 2839 +(S) @LINE: 2842 >>> Processed Test Case: handleTestSetConductivityDataPublishIntervalOverrideRequest_Reset -(I) @LINE: 2847 +(I) @LINE: 2850 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(S) @LINE: 2859 +(S) @LINE: 2862 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_InvalidPayloadLength -(I) @LINE: 2865 +(I) @LINE: 2868 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Override -(S) @LINE: 2892 +(S) @LINE: 2895 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Override -(I) @LINE: 2898 +(I) @LINE: 2901 >>> Processing Test Case: handleTestSetConductivityOverrideRequest_Reset -(S) @LINE: 2924 +(S) @LINE: 2927 >>> Processed Test Case: handleTestSetConductivityOverrideRequest_Reset -(I) @LINE: 2932 +(I) @LINE: 2935 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(S) @LINE: 2944 +(S) @LINE: 2947 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Invalid_Payload_Length -(I) @LINE: 2950 +(I) @LINE: 2953 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(S) @LINE: 2971 +(S) @LINE: 2974 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Override -(I) @LINE: 2977 +(I) @LINE: 2980 >>> Processing Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(S) @LINE: 2997 +(S) @LINE: 3000 >>> Processed Test Case: handleTestTemperatureSensorsDataPublishOverrideRequest_Reset -(I) @LINE: 3005 +(I) @LINE: 3008 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(S) @LINE: 3017 +(S) @LINE: 3020 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Invalid_Payload_Length -(I) @LINE: 3023 +(I) @LINE: 3026 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(S) @LINE: 3049 +(S) @LINE: 3052 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Override -(I) @LINE: 3055 +(I) @LINE: 3058 >>> Processing Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(S) @LINE: 3080 +(S) @LINE: 3083 >>> Processed Test Case: handleTestTemperatureSensorsOverrideRequest_Reset -(I) @LINE: 3088 +(I) @LINE: 3091 >>> Processing Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 3101 +(S) @LINE: 3104 >>> Processed Test Case: handleTestValveStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 3107 +(I) @LINE: 3110 >>> Processing Test Case: handleTestValveStateOverrideRequest_Override -(S) @LINE: 3135 +(S) @LINE: 3138 >>> Processed Test Case: handleTestValveStateOverrideRequest_Override -(I) @LINE: 3141 +(I) @LINE: 3144 >>> Processing Test Case: handleTestValveStateOverrideRequest_Reset -(S) @LINE: 3168 +(S) @LINE: 3171 >>> Processed Test Case: handleTestValveStateOverrideRequest_Reset -(I) @LINE: 3176 +(I) @LINE: 3179 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 3189 +(S) @LINE: 3192 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 3195 +(I) @LINE: 3198 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(S) @LINE: 3218 +(S) @LINE: 3221 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Override -(I) @LINE: 3224 +(I) @LINE: 3227 >>> Processing Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(S) @LINE: 3246 +(S) @LINE: 3249 >>> Processed Test Case: handleTestValvesStatesPublishIntervalOverrideRequest_Reset -(I) @LINE: 3254 +(I) @LINE: 3257 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 3265 +(S) @LINE: 3268 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 3271 +(I) @LINE: 3274 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 3290 +(S) @LINE: 3293 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 3296 +(I) @LINE: 3299 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 3314 +(S) @LINE: 3317 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 3322 +(I) @LINE: 3325 >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 3331 +(S) @LINE: 3334 >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 3337 +(I) @LINE: 3340 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 3346 +(S) @LINE: 3349 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 3352 +(I) @LINE: 3355 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 3361 +(S) @LINE: 3364 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 3367 +(I) @LINE: 3370 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 3376 +(S) @LINE: 3379 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 3382 +(I) @LINE: 3385 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 3392 +(S) @LINE: 3395 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 3400 +(I) @LINE: 3403 >>> Processing Test Case: NominalPath -(S) @LINE: 3403 +(S) @LINE: 3406 >>> Processed Test Case: NominalPath -(I) @LINE: 3411 +(I) @LINE: 3414 >>> Processing Test Case: sendACKMsg_NominalPath -(S) @LINE: 3429 +(S) @LINE: 3432 >>> Processed Test Case: sendACKMsg_NominalPath -(I) @LINE: 3437 +(I) @LINE: 3440 >>> Processing Test Case: sendAckResponseMsg_NominalPath -(S) @LINE: 3457 +(S) @LINE: 3460 >>> Processed Test Case: sendAckResponseMsg_NominalPath -(I) @LINE: 3465 +(I) @LINE: 3468 >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 3483 +(S) @LINE: 3486 >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 3491 +(I) @LINE: 3494 >>> Processing Test Case: serializeMessage_ACK -(S) @LINE: 3529 +(S) @LINE: 3532 >>> Processed Test Case: serializeMessage_ACK -(I) @LINE: 3535 +(I) @LINE: 3538 >>> Processing Test Case: serializeMessage_ACKListFull -(S) @LINE: 3551 +(S) @LINE: 3554 >>> Processed Test Case: serializeMessage_ACKListFull -(I) @LINE: 3557 +(I) @LINE: 3560 >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 3598 +(S) @LINE: 3601 >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 3604 +(I) @LINE: 3607 >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 3634 +(S) @LINE: 3637 >>> Processed Test Case: serializeMessage_NominalPath -(I) @LINE: 3640 +(I) @LINE: 3643 >>> Processing Test Case: serializeMessage_SeqWrap -(S) @LINE: 3670 +(S) @LINE: 3673 >>> Processed Test Case: serializeMessage_SeqWrap -(S) @LINE: 3670 +(S) @LINE: 3673 >>> 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-03 13:36:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27371,7 +27655,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-03 13:36:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27496,14 +27780,6 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all SystemCommMessages.broadcastROPumpData test cases - Running: broadcastROPumpData_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running all SystemCommMessages.broadcastDrainPumpData test cases Running: broadcastDrainPumpData_NominalPath Preparing Test Data @@ -27996,21 +28272,21 @@ Updating Coverage Data Test Execution Complete Running all SystemCommMessages.handleTestROPumpSetPointOverrideRequest test cases - Running: handleTestROPumpSetPointOverrideRequest_InvalidPayloadLength + Running: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleTestROPumpSetPointOverrideRequest_Override + Running: handleTestDrainPumpSetPointOverrideRequest_Override Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: handleTestROPumpSetPointOverrideRequest_Reset + Running: handleTestDrainPumpSetPointOverrideRequest_Reset Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST @@ -28061,28 +28337,21 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all SystemCommMessages.handleTestDrainPumpSetPointOverrideRequest test cases - Running: handleTestDrainPumpSetPointOverrideRequest_InvalidPayloadLength + Running all SystemCommMessages.handleTestDrainPumpRPMOverrideRequest test cases + Running: handleTestDrainPumpRPMOverrideRequest_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: handleTestDrainPumpSetPointOverrideRequest_Override + Running: handleTestDrainPumpRPMOverrideRequest_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: handleTestDrainPumpSetPointOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running all SystemCommMessages.handleTestDrainPumpDataBroadcastIntervalOverrideRequest test cases Running: handleTestDrainPumpDataBroadcastIntervalOverrideRequest_InvalidPayloadLength Preparing Test Data @@ -28171,6 +28440,21 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all SystemCommMessages.handleSetDrainPumpDeltaPressureOverrideRequest test cases + Running: handleSetDrainPumpDeltaPressureOverrideRequest_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: handleSetDrainPumpDeltaPressureOverrideRequest_Override + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all SystemCommMessages.handleTestDGAccelOverrideRequest test cases Running: handleTestDGAccelOverrideRequest_InvalidPayloadLen Preparing Test Data @@ -28409,7 +28693,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:14 +TIME: 2020-12-03 13:36: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/673587938/CCAST_.CFG @@ -28444,7 +28728,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:16 +TIME: 2020-12-03 13:36:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28476,7 +28760,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:18 +TIME: 2020-12-03 13:36:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28491,7 +28775,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-11-23 17:04:18 +TIME: 2020-12-03 13:36:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28511,7 +28795,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-03 13:36: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/1381620037/CCAST_.CFG @@ -28546,7 +28830,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:21 +TIME: 2020-12-03 13:36:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28562,7 +28846,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (29) Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- @@ -28578,7 +28862,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:23 +TIME: 2020-12-03 13:37:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28593,7 +28877,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-11-23 17:04:23 +TIME: 2020-12-03 13:37:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28613,7 +28897,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-03 13:37: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/3387658641/CCAST_.CFG @@ -28648,7 +28932,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:27 +TIME: 2020-12-03 13:37:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28664,7 +28948,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (13) Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- @@ -28680,7 +28964,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:28 +TIME: 2020-12-03 13:37:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28695,7 +28979,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-11-23 17:04:28 +TIME: 2020-12-03 13:37:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28715,7 +28999,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-03 13:37:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG @@ -28750,7 +29034,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:32 +TIME: 2020-12-03 13:37:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28782,7 +29066,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:33 +TIME: 2020-12-03 13:37:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28797,7 +29081,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-11-23 17:04:33 +TIME: 2020-12-03 13:37:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28817,7 +29101,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-03 13:37: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/3934269912/CCAST_.CFG @@ -28852,7 +29136,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-03 13:37:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29115,7 +29399,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-11-23 17:04:39 +TIME: 2020-12-03 13:37:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29130,7 +29414,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-03 13:37:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29556,7 +29840,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:41 +TIME: 2020-12-03 13:37:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/CCAST_.CFG @@ -29591,7 +29875,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:43 +TIME: 2020-12-03 13:37:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29664,7 +29948,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:45 +TIME: 2020-12-03 13:37:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29679,7 +29963,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:04:45 +TIME: 2020-12-03 13:37:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29774,7 +30058,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-03 13:37: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/3897033276/CCAST_.CFG @@ -29807,9 +30091,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-03 13:37:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29824,9 +30108,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 +30262,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-03 13:37:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30258,7 +30524,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-03 13:37: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/754038457/CCAST_.CFG @@ -30293,7 +30559,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04:55 +TIME: 2020-12-03 13:37:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30309,7 +30575,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 50 Processing script line 200 @@ -30738,7 +31004,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04:56 +TIME: 2020-12-03 13:37:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30753,7 +31019,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-11-23 17:04:57 +TIME: 2020-12-03 13:37:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31471,7 +31737,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-03 13:37:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG @@ -31506,7 +31772,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:05:02 +TIME: 2020-12-03 13:37:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31522,7 +31788,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (17) Translated 0 script lines Processing script line 200 Processing script line 350 @@ -31649,7 +31915,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:05:03 +TIME: 2020-12-03 13:37:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31664,7 +31930,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-11-23 17:05:04 +TIME: 2020-12-03 13:37:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31894,7 +32160,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-03 13:37:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31906,7 +32172,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-03 13:37:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31918,7 +32184,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-03 13:37:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31930,7 +32196,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-03 13:37:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31942,7 +32208,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-03 13:37:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31954,7 +32220,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-03 13:37:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31966,7 +32232,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-03 13:37:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31978,7 +32244,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-03 13:38:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31990,7 +32256,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 17:05:15 +TIME: 2020-12-03 13:38:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32002,7 +32268,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-03 13:38:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32014,7 +32280,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-03 13:38:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32026,7 +32292,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-03 13:38:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32038,7 +32304,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-03 13:38:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32050,7 +32316,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-03 13:38:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32062,7 +32328,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-03 13:38:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32074,7 +32340,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-03 13:38:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32086,7 +32352,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-03 13:38:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32098,7 +32364,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-03 13:38:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32110,7 +32376,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-03 13:38:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32122,7 +32388,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-03 13:38:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32134,7 +32400,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 17:05:26 +TIME: 2020-12-03 13:38:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32146,7 +32412,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-03 13:38:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32158,7 +32424,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-03 13:38:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32170,7 +32436,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-03 13:38:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32182,7 +32448,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-03 13:38:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32194,7 +32460,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-03 13:38:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32206,7 +32472,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-03 13:38:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32218,7 +32484,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-03 13:38:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32230,7 +32496,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-03 13:38:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32242,7 +32508,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-03 13:38:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32254,7 +32520,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-03 13:38:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32266,7 +32532,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-03 13:38:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32278,7 +32544,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-03 13:38:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32290,7 +32556,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-03 13:38:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32302,7 +32568,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-03 13:38:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32314,7 +32580,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-03 13:38:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32326,7 +32592,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-03 13:38:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32338,7 +32604,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-03 13:38:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32350,7 +32616,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-03 13:38:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32362,7 +32628,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-03 13:38:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32374,7 +32640,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-03 13:38:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32386,7 +32652,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-03 13:38:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32398,7 +32664,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-03 13:38:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32410,7 +32676,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-03 13:38:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32422,7 +32688,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-03 13:38:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32434,7 +32700,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-03 13:38:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32446,7 +32712,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-03 13:38:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32458,7 +32724,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-03 13:38:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32470,7 +32736,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-03 13:38:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32482,7 +32748,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-03 13:38:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32494,7 +32760,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-03 13:38:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32506,7 +32772,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-03 13:38:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32518,7 +32784,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:05:54 +TIME: 2020-12-03 13:38:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32530,7 +32796,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-03 13:38:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32542,7 +32808,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-03 13:38:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32554,7 +32820,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-03 13:38:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32566,7 +32832,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-03 13:38:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32578,7 +32844,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-03 13:38:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32590,7 +32856,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-03 13:38:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32602,7 +32868,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-03 13:38:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32614,7 +32880,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-03 13:38:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32626,7 +32892,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-03 13:38:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32638,7 +32904,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-03 13:38:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32650,7 +32916,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-03 13:38:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32662,7 +32928,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-03 13:38:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32674,7 +32940,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-03 13:38:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32686,7 +32952,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-03 13:38:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32698,7 +32964,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-03 13:39:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32710,7 +32976,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-03 13:39:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32722,7 +32988,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-03 13:39:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32734,7 +33000,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-03 13:39:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32746,7 +33012,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-03 13:39:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32758,7 +33024,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-03 13:39:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32770,7 +33036,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-03 13:39:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32782,7 +33048,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-03 13:39:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32794,7 +33060,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-03 13:39:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32806,7 +33072,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-03 13:39:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32818,7 +33084,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-03 13:39:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32830,7 +33096,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-03 13:39:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32842,7 +33108,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-03 13:39:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32854,7 +33120,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-03 13:39:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32866,7 +33132,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-03 13:39:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32878,7 +33144,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-03 13:39:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32890,7 +33156,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-03 13:39:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32902,7 +33168,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-03 13:39:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32914,7 +33180,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:06:23 +TIME: 2020-12-03 13:39:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32926,7 +33192,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-03 13:39:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32938,7 +33204,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-03 13:39:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32950,7 +33216,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-03 13:39:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32969,7 +33235,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-03 13:39:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32981,7 +33247,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-03 13:39:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32993,7 +33259,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-03 13:39:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33005,7 +33271,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-03 13:39:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33017,7 +33283,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-03 13:39:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33029,7 +33295,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-03 13:39:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33041,7 +33307,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-03 13:39:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33053,7 +33319,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-03 13:39:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33065,7 +33331,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-11-23 17:06:34 +TIME: 2020-12-03 13:39:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33077,7 +33343,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-03 13:39:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33089,7 +33355,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-03 13:39:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33101,7 +33367,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-03 13:39:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33113,7 +33379,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-03 13:39:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33125,7 +33391,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-03 13:39:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33137,7 +33403,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-03 13:39:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33149,7 +33415,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-03 13:39:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33161,7 +33427,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-03 13:39:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33173,7 +33439,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-03 13:39:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33185,7 +33451,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-03 13:39:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33197,7 +33463,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-03 13:39:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33209,7 +33475,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-11-23 17:06:45 +TIME: 2020-12-03 13:39:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33221,7 +33487,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-03 13:39:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33233,7 +33499,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-03 13:39:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33245,7 +33511,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-03 13:39:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33257,7 +33523,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-03 13:39:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33269,7 +33535,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-03 13:39:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33281,7 +33547,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-03 13:39:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33293,7 +33559,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-03 13:39:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33305,7 +33571,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-03 13:39:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33317,7 +33583,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-03 13:39:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33329,7 +33595,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-03 13:39:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33341,7 +33607,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-03 13:39:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33353,7 +33619,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-03 13:39:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33365,7 +33631,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-03 13:39:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33377,7 +33643,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-03 13:39:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33389,7 +33655,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-03 13:39:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33401,7 +33667,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-03 13:40:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33413,7 +33679,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-03 13:40:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33425,7 +33691,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-03 13:40:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33437,7 +33703,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-03 13:40:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33449,7 +33715,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-03 13:40:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33461,7 +33727,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-03 13:40:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33473,7 +33739,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-03 13:40:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33485,7 +33751,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-03 13:40:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33497,7 +33763,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-03 13:40:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33509,7 +33775,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-03 13:40:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33521,7 +33787,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-03 13:40:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33533,7 +33799,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-03 13:40:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33545,7 +33811,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-03 13:40:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33557,7 +33823,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-03 13:40:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33569,7 +33835,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-03 13:40:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33581,7 +33847,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-03 13:40:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33593,7 +33859,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-11-23 17:07:13 +TIME: 2020-12-03 13:40:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33605,7 +33871,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-03 13:40:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33617,7 +33883,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-03 13:40:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33629,7 +33895,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-03 13:40:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33641,7 +33907,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-03 13:40:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33653,7 +33919,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-03 13:40:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33665,7 +33931,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-03 13:40:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33677,7 +33943,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-03 13:40:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33689,7 +33955,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-03 13:40:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33701,7 +33967,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-03 13:40:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33713,7 +33979,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-03 13:40:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33725,7 +33991,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-03 13:40:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33737,7 +34003,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-03 13:40:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33749,7 +34015,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-03 13:40:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33761,7 +34027,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-03 13:40:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33773,7 +34039,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-03 13:40:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33785,7 +34051,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-03 13:40:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33797,7 +34063,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-03 13:40:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33809,7 +34075,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-03 13:40:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33821,7 +34087,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-03 13:40:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33833,7 +34099,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-03 13:40:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33845,7 +34111,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-03 13:40:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33857,7 +34123,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-03 13:40:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33869,7 +34135,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-03 13:40:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33881,7 +34147,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-03 13:40:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33893,7 +34159,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-03 13:40:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33905,7 +34171,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-03 13:40:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33917,7 +34183,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-03 13:40:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33929,7 +34195,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-03 13:40:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33941,7 +34207,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-03 13:40:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33953,7 +34219,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-03 13:40:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33965,7 +34231,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-03 13:40:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33977,7 +34243,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-03 13:40:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33989,7 +34255,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-11-23 17:07:44 +TIME: 2020-12-03 13:40:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34001,7 +34267,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-03 13:40:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34013,7 +34279,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-03 13:40:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34025,7 +34291,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-03 13:40:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) Index: results/cppcheck.log =================================================================== diff -u -r5deb1226f003e7d2e5c628377e31b914468f8ecf -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- results/cppcheck.log (.../cppcheck.log) (revision 5deb1226f003e7d2e5c628377e31b914468f8ecf) +++ results/cppcheck.log (.../cppcheck.log) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -3,9 +3,6 @@ Checking dgfirmware/firmware/App/Controllers/ConductivitySensors.c ... 2/48 files checked 4% 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 Checking dgfirmware/firmware/App/Controllers/Heaters.c ... @@ -57,6 +54,7 @@ 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... +Checking dgfirmware/firmware/App/Modes/ModeInitPOST.c: _VECTORCAST_... 20/48 files checked 41% done Checking dgfirmware/firmware/App/Modes/ModeRecirculate.c ... 21/48 files checked 43% done Index: results/cppcheckError.csv =================================================================== diff -u -r0c61042b352abf8a54943a4c91a4c190442e07ee -r35246359c5a9080c704e0a6f1563e99a337e2e91 --- results/cppcheckError.csv (.../cppcheckError.csv) (revision 0c61042b352abf8a54943a4c91a4c190442e07ee) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision 35246359c5a9080c704e0a6f1563e99a337e2e91) @@ -1,20 +1,22 @@ 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/ROPump.c,467,style,unreadVariable,Variable 'presStPt' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,468,style,unreadVariable,Variable 'measFlow' is assigned a value that is never used. +dgfirmware/firmware/App/Controllers/ROPump.c,469,style,unreadVariable,Variable 'pumpPWMPctDutyCycle' is assigned a value that is never 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,529,style,knownConditionTrueFalse,Condition 'fpgaError==0' is always true +dgfirmware/firmware/App/Controllers/TemperatureSensors.c,526,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/PIControllers.c,87,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. @@ -28,58 +30,59 @@ dgfirmware/firmware/App/Services/Interrupts.c,148,style,unusedFunction,The function 'canMessageNotification' is never used. 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,233,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/App/Services/PIControllers.c,188,style,unusedFunction,The function 'getPIControllerSignals' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,635,style,unusedFunction,The function 'getDisinfectionDate' is never used. +dgfirmware/firmware/FWCommon/NVDataMgmt.c,340,style,unusedFunction,The function 'getMfgData' is never used. +dgfirmware/firmware/App/Services/PIControllers.c,209,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,1387,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,183,style,unusedFunction,The function 'isPOSTCompleted' is never used. +dgfirmware/firmware/App/Modes/ModeInitPOST.c,196,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)