Index: firmware/.settings/org.eclipse.core.resources.prefs =================================================================== diff -u -r4fc76c20dc4d515a391ef510da9360d633be8924 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/.settings/org.eclipse.core.resources.prefs (.../org.eclipse.core.resources.prefs) (revision 4fc76c20dc4d515a391ef510da9360d633be8924) +++ firmware/.settings/org.eclipse.core.resources.prefs (.../org.eclipse.core.resources.prefs) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -18,3 +18,20 @@ encoding//Debug/sources.mk=UTF-8 encoding//Debug/subdir_rules.mk=UTF-8 encoding//Debug/subdir_vars.mk=UTF-8 +encoding//Release/App/Controllers/subdir_rules.mk=UTF-8 +encoding//Release/App/Controllers/subdir_vars.mk=UTF-8 +encoding//Release/App/Drivers/subdir_rules.mk=UTF-8 +encoding//Release/App/Drivers/subdir_vars.mk=UTF-8 +encoding//Release/App/Modes/subdir_rules.mk=UTF-8 +encoding//Release/App/Modes/subdir_vars.mk=UTF-8 +encoding//Release/App/Services/subdir_rules.mk=UTF-8 +encoding//Release/App/Services/subdir_vars.mk=UTF-8 +encoding//Release/App/Tasks/subdir_rules.mk=UTF-8 +encoding//Release/App/Tasks/subdir_vars.mk=UTF-8 +encoding//Release/makefile=UTF-8 +encoding//Release/objects.mk=UTF-8 +encoding//Release/source/subdir_rules.mk=UTF-8 +encoding//Release/source/subdir_vars.mk=UTF-8 +encoding//Release/sources.mk=UTF-8 +encoding//Release/subdir_rules.mk=UTF-8 +encoding//Release/subdir_vars.mk=UTF-8 Index: firmware/App/Controllers/DialOutFlow.c =================================================================== diff -u -r89a95cb8fbc537f1c7a5448a05788342f7319c01 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/App/Controllers/DialOutFlow.c (.../DialOutFlow.c) (revision 89a95cb8fbc537f1c7a5448a05788342f7319c01) +++ firmware/App/Controllers/DialOutFlow.c (.../DialOutFlow.c) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -41,29 +41,19 @@ #define MAX_DIAL_OUT_FLOW_RATE 500 // mL/min #define MIN_DIAL_OUT_FLOW_RATE 100 // mL/min -#define DIP_P_COEFFICIENT 0.0002 // P term for dialIn pump control -#define DIP_I_COEFFICIENT 0.00002 // I term for dialIn pump control +#define DOP_P_COEFFICIENT 0.0002 // P term for dialOut pump control +#define DOP_I_COEFFICIENT 0.00002 // I term for dialOut pump control #define MAX_DIAL_OUT_PUMP_PWM_DUTY_CYCLE 0.88 // controller will error if PWM duty cycle > 90%, so set max to 88% #define MIN_DIAL_OUT_PUMP_PWM_DUTY_CYCLE 0.12 // controller will error if PWM duty cycle < 10%, so set min to 12% -#define DIP_CONTROL_INTERVAL ( 500 / TASK_GENERAL_INTERVAL ) // interval (ms/task time) at which the dialIn pump is controlled +#define DOP_CONTROL_INTERVAL ( 500 / TASK_GENERAL_INTERVAL ) // interval (ms/task time) at which the dialOut pump is controlled -#define DIP_MAX_CURR_WHEN_STOPPED_MA 150.0 // motor controller current should not exceed this when pump should be stopped -#define DIP_MIN_CURR_WHEN_RUNNING_MA 150.0 // motor controller current should always exceed this when pump should be running -#define DIP_MAX_CURR_WHEN_RUNNING_MA 1000.0 // motor controller current should not exceed this when pump should be running -#define DIP_MAX_CURR_ERROR_DURATION_MS 2000 // motor controller current errors persisting beyond this duration will trigger an alarm +#define DOP_MAX_CURR_WHEN_STOPPED_MA 150.0 // motor controller current should not exceed this when pump should be stopped +#define DOP_MIN_CURR_WHEN_RUNNING_MA 150.0 // motor controller current should always exceed this when pump should be running +#define DOP_MAX_CURR_WHEN_RUNNING_MA 1000.0 // motor controller current should not exceed this when pump should be running +#define DOP_MAX_CURR_ERROR_DURATION_MS 2000 // motor controller current errors persisting beyond this duration will trigger an alarm -#define DIP_REV_PER_LITER 124.0 // rotor revolutions per liter -#define DIP_ML_PER_MIN_TO_PUMP_RPM_FACTOR ( DIP_REV_PER_LITER / ML_PER_LITER ) -#define DIP_GEAR_RATIO 32.0 // dialIn pump motor to dialIn pump gear ratio -#define DIP_MOTOR_RPM_TO_PWM_DC_FACTOR 0.0003717 // ~27 BP motor RPM = 1% PWM duty cycle -#define DIP_PWM_ZERO_OFFSET 0.1 // 10% PWM duty cycle = zero speed -#define DIP_PWM_FROM_ML_PER_MIN(rate) ( (rate) * DIP_ML_PER_MIN_TO_PUMP_RPM_FACTOR * DIP_GEAR_RATIO * DIP_MOTOR_RPM_TO_PWM_DC_FACTOR + DIP_PWM_ZERO_OFFSET ) -#define DIAL_IN_PUMP_ADC_FULL_SCALE_V 3.0 // BP analog signals are 0-3V (while int. ADC ref V is 3.3V) -#define DIAL_IN_PUMP_ADC_MID_PT_BITS ( (F32)( INT_ADC_FULL_SCALE_BITS >> 1 ) * ( DIAL_IN_PUMP_ADC_FULL_SCALE_V / INT_ADC_REF_V ) ) -#define SIGN_FROM_12_BIT_VALUE(v) ( (S16)(v) - (S16)DIAL_IN_PUMP_ADC_MID_PT_BITS ) - #define DIAL_OUT_FLOW_SAMPLE_FREQ ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) // dialOut pump stop and direction macros @@ -78,6 +68,7 @@ #define SET_DOP_DIR() gioSetBit( gioPORTA, STOP_DO_PUMP_GIO_PORT_PIN, PIN_SIGNAL_HIGH ) #define CLR_DOP_DIR() gioSetBit( gioPORTA, STOP_DO_PUMP_GIO_PORT_PIN, PIN_SIGNAL_LOW ) + typedef enum DialOutFlow_Measured_Signals { DIALOUT_LOAD_CELL_WEIGHT = 0, @@ -93,19 +84,11 @@ static U32 dialOutFlowDataPublicationTimerCounter = 5; // used to schedule dialIn flow data publication to CAN bus -DATA_DECL( U32, DialOutFlowDataPub, dialOutFlowDataPublishInterval, DIAL_OUT_FLOW_DATA_PUB_INTERVAL, DIAL_OUT_FLOW_DATA_PUB_INTERVAL ); // interval (in ms) at which to publish dialIn flow data to CAN bus -DATA_DECL( S32, TargetDialOutFlowRate, targetDialOutFlowRate, 0, 0 ); // requested dialIn flow rate -DATA_DECL( F32, MeasuredDialOutFlowRate, measuredDialOutFlowRate, 0.0, 0.0 ); // measured dialIn flow rate -DATA_DECL( F32, MeasuredDialOutPumpRotorSpeed, dialOutPumpRotorSpeedRPM, 0.0, 0.0 );// measured dialIn pump rotor speed -DATA_DECL( F32, MeasuredDialOutPumpSpeed, dialOutPumpSpeedRPM, 0.0, 0.0 ); // measured dialIn pump motor speed -DATA_DECL( F32, MeasuredDialOutPumpMCSpeed, adcDialOutPumpMCSpeedRPM, 0.0, 0.0 ); // measured dialIn pump motor controller speed -DATA_DECL( F32, MeasuredDialOutPumpMCCurrent, adcDialOutPumpMCCurrentmA, 0.0, 0.0 );// measured dialIn pump motor controller current - // Rx values -static U32 rxTotalTargetVolumeInMl; +static F32 rxTotalTargetVolumeInMl; static U32 rxTargetTimeInSamples; -static U32 rxTargetFlowRate; -static F32 targetVolumeRatePerSample; +static F32 rxInitialTargetFlowRatePWM; +static F32 targetVolumeUFRatePerSample; // Variables used in loop @@ -122,6 +105,10 @@ static F32 sentPWM; +// Pump variables +static F32 dialOutPumpSpeedInRPM; +static F32 dialOutPumpCurrentInMA; + // ********** private function prototypes ********** static DIALOUT_FLOW_STATE_T handleDialOutFlowStopState( void ); @@ -134,64 +121,101 @@ static void setDialOutPumpDirection( MOTOR_DIR_T dir ); +static void publishDialOutFlowData( void ); -static void publishDialOutFlowData( void ); -static DATA_GET_PROTOTYPE( U32, getPublishDialOutFlowDataInterval ); +/************************************************************************* + * @brief setDialOutFlowNewState + * The setDialOutNew function changes the state to STOP, PAUSE or RUN. + * + * @param isNewBag is TRUE, if at the start of the new state a new bag will + * be used. + * @return none + *************************************************************************/ +void setDialOutFlowNewState( DIALOUT_FLOW_STATE_T newState , BOOL isNewBag ) { -void startDialOut( BOOL isNewBag ) -{ - if( isNewBag ) + switch( newState ) { - bagStartVolumeInMl = 0.0; - } -} + case DIALOUT_FLOW_RUN_UF_STATE: + case DIALOUT_FLOW_PAUSE_UF_STATE: + if( isNewBag ) + { + bagStartVolumeInMl = 0.0; + } + break; -void stopDialOut( void ) -{ + case DIALOUT_FLOW_STOP_STATE: + break; -} + default: + break; + } -void pauseDialOut( void ) -{ - + dialOutFlowState = newState; } +/************************************************************************* + * @brief setControlSignalPWM + * The setControlSignalPWM function set the PWM of the out flow pump. + * + * @param newPWM a fraction of between 0.0 and 1.0. + * @return none + *************************************************************************/ static void setControlSignalPWM( F32 newPWM ) { - F32 roundOffSet = newPWM != 0.0 ? FLOAT_TO_INT_ROUNDUP_OFFSET : 0.0; - etpwmSetCmpA( etpwmREG3, (U32)( (S32)( ( newPWM * (F32)(etpwmREG3->TBPRD) ) + roundOffSet) ) ); + etpwmSetCmpA( etpwmREG3, (U16)( FLOAT_TO_INT_WITH_ROUND( newPWM * (F32)(etpwmREG3->TBPRD) ) ) ); } +/************************************************************************* + * @brief updateTargetVolume + * The updateTargetVolume function updates the next sample for total target + * volume based on rate of UF + * + * @param newPWM a fraction of between 0.0 and 1.0. + * @return none + *************************************************************************/ static void updateTargetVolume( void ) { - rxTotalTargetVolumeInMl += targetVolumeRatePerSample; + rxTotalTargetVolumeInMl += targetVolumeUFRatePerSample; } - -BOOL setDialOutFlowRxTotalVolumeAndRxTime( U32 rxTotaVolumeInMl, U32 rxTotalTimeInMinutes, U32 rxFlowRate) +/************************************************************************* + * @brief setDialOutFlowRxTotalVolumeAndRxTime + * The setDialOutFlowRxTotalVolumeAndRxTime function updates Rx for the UF + * therapy + * + * @param rxTotalVolumeInMl Total Volume requested for ultra-filtration + * @param rxTotalTimeInMinutes Total Rx time in minutes + * @param rxFlowRateinMlPerMin + * @return none + *************************************************************************/ +BOOL setDialOutFlowRxTotalVolumeAndRxTime( U32 rxTotaVolumeInMl, U32 rxTotalTimeInMinutes, U32 rxFlowRateinMlPerMin) { #define SECS_IN_MIN 60 + #define DOP_REV_PER_LITER 124.0 // rotor revolutions per liter + #define DOP_ML_PER_MIN_TO_PUMP_RPM_FACTOR ( DOP_REV_PER_LITER / ML_PER_LITER ) + #define DOP_GEAR_RATIO 32.0 // dialIn pump motor to dialIn pump gear ratio + #define DOP_MOTOR_RPM_TO_PWM_DC_FACTOR 0.0003717 // ~27 BP motor RPM = 1% PWM duty cycle + #define DOP_PWM_ZERO_OFFSET 0.1 // 10% PWM duty cycle = zero speed + #define DOP_PWM_FROM_ML_PER_MIN(rate) ( (rate) * DOP_ML_PER_MIN_TO_PUMP_RPM_FACTOR * DOP_GEAR_RATIO * DOP_MOTOR_RPM_TO_PWM_DC_FACTOR + DOP_PWM_ZERO_OFFSET ) + //TODO: Verify RxFlowRate within range, rxTotalTimeInMinutes and rxTotalVolumeInMl + BOOL returnValue = TRUE; rxTotalTargetVolumeInMl = rxTotaVolumeInMl; rxTargetTimeInSamples = rxTotalTimeInMinutes * SEC_PER_MIN * DIAL_OUT_FLOW_SAMPLE_FREQ ; - rxTargetFlowRate = rxFlowRate; + rxInitialTargetFlowRatePWM = DOP_PWM_FROM_ML_PER_MIN(rxFlowRateinMlPerMin); - targetVolumeRatePerSample = (F32) rxTotalTargetVolumeInMl / (F32) rxTargetTimeInSamples; + targetVolumeUFRatePerSample = (F32) rxTotalTargetVolumeInMl / (F32) rxTargetTimeInSamples; - return returnValue; } /************************************************************************* * @brief initDialOutFlow * The initDialOutFlow function initializes the DialOutFlow module. - * @details - * Inputs : none - * Outputs : DialOutFlow module initialized. * @param none * @return none *************************************************************************/ @@ -209,11 +233,19 @@ accumulativeTotalUFVolumeInMl = 0.0; // initialize dialysate outlet flow PI controller - initializePIController( PI_CONTROLLER_ID_LOAD_CELL, MIN_DIAL_OUT_PUMP_PWM_DUTY_CYCLE, - DIP_P_COEFFICIENT, DIP_I_COEFFICIENT, + initializePIController( PI_CONTROLLER_ID_LOAD_CELL, rxInitialTargetFlowRatePWM, + DOP_P_COEFFICIENT, DOP_I_COEFFICIENT, MIN_DIAL_OUT_PUMP_PWM_DUTY_CYCLE, MAX_DIAL_OUT_PUMP_PWM_DUTY_CYCLE); } + +/************************************************************************* + * @brief getMeasuredVariable + * The getMeasuredVariable function returns measured signals needed by + * the DialOutFlow module. + * @param signal is a measured signal enum. + * @return actual signal as float. + *************************************************************************/ F32 getMeasuredVariable( DIALOUT_MEASURED_SIGNALS_T signal) { #define DIP_SPEED_ADC_TO_RPM_FACTOR 1.375 // conversion factor from ADC counts to RPM for dialIn pump motor @@ -239,8 +271,11 @@ break; } + + return returnValue; } + /************************************************************************* * @brief execDialOutFlowMonitor * The execDialOutFlowMonitor function executes the dialIn flow monitor. @@ -250,19 +285,16 @@ * @param none * @return none *************************************************************************/ -/*void execDialOutFlowMonitor( void ) +void execDialOutFlowMonitor( void ) { - U16 dopRPM = getIntADCReading( INT_ADC_DIAL_OUT_PUMP_SPEED ); - U16 dopmA = getIntADCReading( INT_ADC_DIAL_OUT_PUMP_MOTOR_CURRENT ); - F32 dopLoadCellWeightinGr = getFPGALoadCellWeight(); + loadCellVolumeInMl = getMeasuredVariable( DIALOUT_LOAD_CELL_WEIGHT ); + dialOutPumpSpeedInRPM = getMeasuredVariable( DIALOUT_MOTOR_SPEED ); + dialOutPumpCurrentInMA = getMeasuredVariable( DIALOUT_MOTOR_CURRENT ); - adcDialOutPumpMCSpeedRPM.data = (F32)(SIGN_FROM_12_BIT_VALUE(dipRPM)) * DIP_SPEED_ADC_TO_RPM_FACTOR; - adcDialOutPumpMCCurrentmA.data = (F32)(SIGN_FROM_12_BIT_VALUE(dipmA)) * DIP_CURRENT_ADC_TO_MA_FACTOR; - // publish dialIn flow data on interval publishDialOutFlowData(); -}*/ +} /************************************************************************* * @brief execDialOutFlowController @@ -400,90 +432,6 @@ } /************************************************************************* - * @brief getPublishDialOutFlowDataInterval - * The getPublishDialOutFlowDataInterval function gets the dialIn flow data \n - * publication interval. - * @details - * Inputs : dialOutFlowDataPublishInterval - * Outputs : none - * @param none - * @return the current dialIn flow data publication interval (in ms). - *************************************************************************/ -DATA_GET( U32, getPublishDialOutFlowDataInterval, dialOutFlowDataPublishInterval ) - -/************************************************************************* - * @brief getTargetDialOutFlowRate - * The getTargetDialOutFlowRate function gets the current target dialIn flow \n - * rate. - * @details - * Inputs : targetDialOutFlowRate - * Outputs : none - * @param none - * @return the current target dialIn flow rate (in mL/min). - *************************************************************************/ -DATA_GET( S32, getTargetDialOutFlowRate, targetDialOutFlowRate ) - -/************************************************************************* - * @brief getMeasuredDialOutFlowRate - * The getMeasuredDialOutFlowRate function gets the measured dialIn flow \n - * rate. - * @details - * Inputs : measuredDialOutFlowRate - * Outputs : none - * @param none - * @return the current dialIn flow rate (in mL/min). - *************************************************************************/ -DATA_GET( F32, getMeasuredDialOutVolume, measuredDialOutFlowRate ) - -/************************************************************************* - * @brief getMeasuredDialOutPumpRotorSpeed - * The getMeasuredDialOutPumpRotorSpeed function gets the measured dialIn flow \n - * rate. - * @details - * Inputs : dialOutPumpRotorSpeedRPM - * Outputs : none - * @param none - * @return the current dialIn flow rate (in mL/min). - *************************************************************************/ -DATA_GET( F32, getMeasuredDialOutPumpRotorSpeed, dialOutPumpRotorSpeedRPM ) - -/************************************************************************* - * @brief getMeasuredDialOutPumpSpeed - * The getMeasuredDialOutPumpSpeed function gets the measured dialIn flow \n - * rate. - * @details - * Inputs : dialOutPumpSpeedRPM - * Outputs : none - * @param none - * @return the current dialIn flow rate (in mL/min). - *************************************************************************/ -DATA_GET( F32, getMeasuredDialOutPumpSpeed, dialOutPumpSpeedRPM ) - -/************************************************************************* - * @brief getMeasuredDialOutPumpMCSpeed - * The getMeasuredDialOutPumpMCSpeed function gets the measured dialIn pump \n - * speed. - * @details - * Inputs : adcDialOutPumpMCSpeedRPM - * Outputs : none - * @param none - * @return the current dialIn pump speed (in RPM). - *************************************************************************/ -DATA_GET( F32, getMeasuredDialOutPumpMCSpeed, adcDialOutPumpMCSpeedRPM ) - -/************************************************************************* - * @brief getMeasuredDialOutPumpMCCurrent - * The getMeasuredDialOutPumpMCCurrent function gets the measured dialIn pump \n - * current. - * @details - * Inputs : adcDialOutPumpMCCurrentmA - * Outputs : none - * @param none - * @return the current dialIn pump current (in mA). - *************************************************************************/ -DATA_GET( F32, getMeasuredDialOutPumpMCCurrent, adcDialOutPumpMCCurrentmA ) - -/************************************************************************* * @brief publishDialOutFlowData * The publishDialOutFlowData function publishes dialIn flow data at the set \n * interval. @@ -496,178 +444,27 @@ *************************************************************************/ static void publishDialOutFlowData( void ) { + S16 doFlowState = (S16) FLOAT_TO_INT_WITH_ROUND( dialOutFlowState ); + S16 doTotalTargetUFVolumeInMl = (S16) FLOAT_TO_INT_WITH_ROUND( totalTargetUFVolumeInMl ); + S16 doTotalMeasuredUFVolumeInMl = (S16) FLOAT_TO_INT_WITH_ROUND( totalMeasuredUFVolumeInMl ); + S16 doControlSignalPWM = (S16) FLOAT_TO_INT_WITH_ROUND( sentPWM * FRACTION_TO_PERCENT_FACTOR ); + // publish dialIn flow data on interval if ( ++dialOutFlowDataPublicationTimerCounter > DIAL_OUT_FLOW_DATA_PUB_INTERVAL ) { #ifdef DEBUG_ENABLED // TODO - temporary debug code - remove later - char debugFlowStr[ 256 ]; + char debugFlowStr[ 128 ]; - sprintf( debugFlowStr, "St:%5d, Set Pt:%5d, Meas. Vol:%5d, PWM:%5d \n", (S32) dialOutFlowState, (S32) totalTargetUFVolumeInMl, (S32) totalMeasuredUFVolumeInMl,(S32)(sentPWM * FRACTION_TO_PERCENT_FACTOR) ); + sprintf( debugFlowStr, "St:%5d, Set Pt:%5d, Meas. Vol:%5d, PWM:%5d \n", + doFlowState, + doTotalTargetUFVolumeInMl, + doTotalMeasuredUFVolumeInMl, + doControlSignalPWM ); + sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); #endif - //broadcastDialOutFlowData( flowStPt, measFlow, measRotSpd, measSpd, measMCSpd, measMCCurr, pumpPWMPctDutyCycle ); + broadcastDialOutFlowData( doFlowState, doTotalTargetUFVolumeInMl, doTotalMeasuredUFVolumeInMl, doControlSignalPWM ); dialOutFlowDataPublicationTimerCounter = 0; } } - - -/************************************************************************* - * @brief execDialOutFlowTest - * The execDialOutFlowTest function executes the state machine for the \n - * DialOutFlow self test. - * @details - * Inputs : none - * Outputs : none - * @param none - * @return the current state of the DialOutFlow self test. - *************************************************************************/ -SELF_TEST_STATUS_T execDialOutFlowTest( void ) -{ - SELF_TEST_STATUS_T result = SELF_TEST_STATUS_FAILED; - - // TODO - implement self test(s) - - return result; -} - - -/************************************************************************* - * TEST SUPPORT FUNCTIONS - *************************************************************************/ - - -/************************************************************************* - * @brief testSetDialOutFlowDataPublishIntervalOverride - * The testSetDialOutFlowDataPublishIntervalOverride function overrides the \n - * dialIn flow data publish interval. - * @details - * Inputs : none - * Outputs : dialOutFlowDataPublishInterval - * @param value : override dialIn flow data publish interval with (in ms) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -BOOL testSetDialOutFlowDataPublishIntervalOverride( U32 value ) -{ - BOOL result = FALSE; - - if ( TRUE == isTestingActivated() ) - { - U32 intvl = value / TASK_PRIORITY_INTERVAL; - - result = TRUE; - dialOutFlowDataPublishInterval.ovData = intvl; - dialOutFlowDataPublishInterval.override = OVERRIDE_KEY; - } - - return result; -} - -/************************************************************************* - * @brief testResetDialOutFlowDataPublishIntervalOverride - * The testResetDialOutFlowDataPublishIntervalOverride function resets the override \n - * of the dialIn flow data publish interval. - * @details - * Inputs : none - * Outputs : dialOutFlowDataPublishInterval - * @return TRUE if override reset successful, FALSE if not - *************************************************************************/ -BOOL testResetDialOutFlowDataPublishIntervalOverride( void ) -{ - BOOL result = FALSE; - - if ( TRUE == isTestingActivated() ) - { - result = TRUE; - dialOutFlowDataPublishInterval.override = OVERRIDE_RESET; - dialOutFlowDataPublishInterval.ovData = dialOutFlowDataPublishInterval.ovInitData; - } - - return result; -} - -/************************************************************************* - * @brief testSetTargetDialOutFlowRateOverride and testResetTargetDialOutFlowRateOverride - * The testSetTargetDialOutFlowRateOverride function overrides the target \n - * dialIn flow rate. \n - * The testResetTargetDialOutFlowRateOverride function resets the override of the \n - * target dialIn flow rate. - * @details - * Inputs : none - * Outputs : targetDialOutFlowRate - * @param value : override target dialIn flow rate (in mL/min) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( S32, testSetTargetDialOutFlowRateOverride, testResetTargetDialOutFlowRateOverride, targetDialOutFlowRate ) - -/************************************************************************* - * @brief testSetMeasuredDialOutFlowRateOverride and testResetMeasuredDialOutFlowRateOverride - * The testResetMeasuredDialOutFlowRateOverride function overrides the measured \n - * dialIn flow rate. \n - * The testResetOffButtonStateOverride function resets the override of the \n - * measured dialIn flow rate. - * @details - * Inputs : none - * Outputs : measuredDialOutFlowRate - * @param value : override measured dialIn flow rate (in mL/min) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( F32, testSetMeasuredDialOutFlowRateOverride, testResetMeasuredDialOutFlowRateOverride, measuredDialOutFlowRate ) - -/************************************************************************* - * @brief testSetMeasuredDialOutPumpRotorSpeedOverride and testResetMeasuredDialOutPumpRotorSpeedOverride - * The testSetMeasuredDialOutPumpRotorSpeedOverride function overrides the measured \n - * dialIn pump rotor speed. \n - * The testResetMeasuredDialOutPumpRotorSpeedOverride function resets the override of the \n - * measured dialIn pump rotor speed. - * @details - * Inputs : none - * Outputs : dialOutPumpRotorSpeedRPM - * @param value : override measured dialIn pump rotor speed (in RPM) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( F32, testSetMeasuredDialOutPumpRotorSpeedOverride, testResetMeasuredDialOutPumpRotorSpeedOverride, dialOutPumpRotorSpeedRPM ) - -/************************************************************************* - * @brief testSetMeasuredDialOutPumpSpeedOverride and testResetMeasuredDialOutPumpSpeedOverride - * The testSetMeasuredDialOutPumpSpeedOverride function overrides the measured \n - * dialIn pump motor speed. \n - * The testResetMeasuredDialOutPumpSpeedOverride function resets the override of the \n - * measured dialIn pump motor speed. - * @details - * Inputs : none - * Outputs : dialOutPumpSpeedRPM - * @param value : override measured dialIn pump motor speed (in RPM) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( F32, testSetMeasuredDialOutPumpSpeedOverride, testResetMeasuredDialOutPumpSpeedOverride, dialOutPumpSpeedRPM ) - -/************************************************************************* - * @brief testSetMeasuredDialOutPumpMCSpeedOverride and testResetMeasuredDialOutPumpMCSpeedOverride - * The testSetMeasuredDialOutPumpMCSpeedOverride function overrides the measured \n - * dialIn pump motor speed. \n - * The testResetMeasuredDialOutPumpMCSpeedOverride function resets the override of the \n - * measured dialIn pump motor speed. - * @details - * Inputs : none - * Outputs : adcDialOutPumpMCSpeedRPM - * @param value : override measured dialIn pump speed (in RPM) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( F32, testSetMeasuredDialOutPumpMCSpeedOverride, testResetMeasuredDialOutPumpMCSpeedOverride, adcDialOutPumpMCSpeedRPM ) - -/************************************************************************* - * @brief testSetMeasuredDialOutPumpMCCurrentOverride and testResetMeasuredDialOutPumpMCCurrentOverride - * The testSetMeasuredDialOutPumpMCCurrentOverride function overrides the measured \n - * dialIn pump motor current. \n - * The testResetMeasuredDialOutPumpMCCurrentOverride function resets the override of the \n - * measured dialIn pump motor current. - * @details - * Inputs : none - * Outputs : adcDialOutPumpMCCurrentmA - * @param value : override measured dialIn pump current (in mA) - * @return TRUE if override successful, FALSE if not - *************************************************************************/ -DATA_OVERRIDE_FUNC( F32, testSetMeasuredDialOutPumpMCCurrentOverride, testResetMeasuredDialOutPumpMCCurrentOverride, adcDialOutPumpMCCurrentmA ) - - Index: firmware/App/Controllers/DialOutFlow.h =================================================================== diff -u -r7a4ec0d64435e269e2bd8f3b8c47ecb101b7c9bb -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/App/Controllers/DialOutFlow.h (.../DialOutFlow.h) (revision 7a4ec0d64435e269e2bd8f3b8c47ecb101b7c9bb) +++ firmware/App/Controllers/DialOutFlow.h (.../DialOutFlow.h) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -42,32 +42,9 @@ DIALOUT_FLOW_STATE_T getDialOutFlowState( void ); BOOL setdialOutFlowState( DIALOUT_FLOW_STATE_T setNewState ); +void setDialOutFlowNewState( DIALOUT_FLOW_STATE_T newState , BOOL isNewBag ); +BOOL setDialOutFlowRxTotalVolumeAndRxTime( U32 rxTotaVolumeInMl, U32 rxTotalTimeInMinutes, U32 rxFlowRateinMlPerMin); -/* later ... -SELF_TEST_STATUS_T execDialInFlowTest( void ); -DATA_GET_PROTOTYPE( S32, getTargetDialInFlowRate ); -DATA_GET_PROTOTYPE( F32, getMeasuredDialInFlowRate); -DATA_GET_PROTOTYPE( F32, getMeasuredDialInPumpRotorSpeed ); -DATA_GET_PROTOTYPE( F32, getMeasuredDialInPumpSpeed ); -DATA_GET_PROTOTYPE( F32, getMeasuredDialInPumpMCSpeed ); -DATA_GET_PROTOTYPE( F32, getMeasuredDialInPumpMCCurrent ); - -BOOL testSetDialInFlowDataPublishIntervalOverride( U32 value ); -BOOL testResetDialInFlowDataPublishIntervalOverride( void ); -BOOL testSetTargetDialInFlowRateOverride( S32 value ); -BOOL testResetTargetDialInFlowRateOverride( void ); -BOOL testSetMeasuredDialInFlowRateOverride( F32 value ); -BOOL testResetMeasuredDialInFlowRateOverride( void ); -BOOL testSetMeasuredDialInPumpRotorSpeedOverride( F32 value ); -BOOL testResetMeasuredDialInPumpRotorSpeedOverride( void ); -BOOL testSetMeasuredDialInPumpSpeedOverride( F32 value ); -BOOL testResetMeasuredDialInPumpSpeedOverride( void ); -BOOL testSetMeasuredDialInPumpMCSpeedOverride( F32 value ); -BOOL testResetMeasuredDialInPumpMCSpeedOverride( void ); -BOOL testSetMeasuredDialInPumpMCCurrentOverride( F32 value ); -BOOL testResetMeasuredDialInPumpMCCurrentOverride( void ); -*/ - #endif Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r37cfaa86d4307dfb4096e94270d2f29afc900b86 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 37cfaa86d4307dfb4096e94270d2f29afc900b86) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -763,8 +763,6 @@ handleUICheckIn( message ); break; - - case MSG_ID_TESTER_LOGIN_REQUEST: handleTesterLogInRequest( message ); break; @@ -867,6 +865,14 @@ handleTestDialPumpRotorMeasuredSpeedOverrideRequest( message ); break; + case MSG_ID_DIAL_DIALYSATE_UF_SET_STATE: + break; + + case MSG_ID_DIAL_DIALYSATE_UF_SET_RX: + break; + + + default: // TODO - unrecognized message ID received - ignore break; Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r8f8776e48894e31cba816ebef2edf96d14306ba8 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 8f8776e48894e31cba816ebef2edf96d14306ba8) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -23,6 +23,7 @@ #include "BloodFlow.h" #include "Buttons.h" #include "DialInFlow.h" +#include "DialOutFlow.h" #include "MsgQueues.h" #include "WatchdogMgmt.h" #include "SystemCommMessages.h" @@ -57,6 +58,14 @@ F32 pwmDC; } PERISTALTIC_PUMP_STATUS_PAYLOAD_T; +typedef struct +{ + S16 doState; + S16 tgtVol; + S16 measVol; + S16 pwmDC; +} DIAL_OUT_UF_STATUS_PAYLOAD_T; + #pragma pack(pop) // ********** private data ********** @@ -342,6 +351,51 @@ } /************************************************************************* + * @brief broadcastDialOutFlowData + * The broadcastDialOutFlowData function constructs a dialysate flow data msg to \n + * be broadcast and queues the msg for transmit on the appropriate CAN channel. + * @details + * Inputs : none + * Outputs : dialysate flow data msg constructed and queued. + * @param dialOutFlowState : 0 is Stop, 1 is Run, 2 is Paused + * @param dialOutTotalTargetUFVolumeInMl : target volume in ml + * @param dialOutTotalMeasuredUFVolumeInMl : actual volume in ml + * @param dialOutControlSignalPWM : PWM round to the nearest integer + * @return TRUE if msg successfully queued for transmit, FALSE if not + *************************************************************************/ +BOOL broadcastDialOutFlowData( S16 dialOutFlowState, S16 dialOutTotalTargetUFVolumeInMl, + S16 dialOutTotalMeasuredUFVolumeInMl, S16 dialOutControlSignalPWM ) +{ + BOOL result; + MESSAGE_T msg; + U32 msgSize; + U08 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding + U08 *payloadPtr = msg.payload; + DIAL_OUT_UF_STATUS_PAYLOAD_T payload; + + // create a message record + blankMessage( &msg ); + msg.hdr.msgID = MSG_ID_DIALYSATE_UF_DATA; + msg.hdr.payloadLen = sizeof( DIAL_OUT_UF_STATUS_PAYLOAD_T ); + + payload.doState = dialOutFlowState; + payload.tgtVol = dialOutTotalTargetUFVolumeInMl; + payload.measVol = dialOutTotalMeasuredUFVolumeInMl; + payload.pwmDC = dialOutControlSignalPWM; + + memcpy( payloadPtr, &payload, sizeof( DIAL_OUT_UF_STATUS_PAYLOAD_T ) ); + + // serialize the message (w/ sync, CRC, and appropriate CAN padding) + msgSize = serializeMessage( msg, data ); + + // add serialized message data to appropriate comm buffer + result = addToCommBuffer( COMM_BUFFER_OUT_CAN_HD_BROADCAST, data, msgSize ); + + return result; + +} + +/************************************************************************* * @brief broadcastDialInFlowData * The broadcastDialInFlowData function constructs a dialysate flow data msg to \n * be broadcast and queues the msg for transmit on the appropriate CAN channel. @@ -809,4 +863,58 @@ *************************************************************************/ DATA_OVERRIDE_HANDLER_FUNC( U32, handleTestDialFlowBroadcastIntervalOverrideRequest, testSetDialInFlowDataPublishIntervalOverride, testResetDialInFlowDataPublishIntervalOverride ) +/************************************************************************* + * @brief handleTesterLogInRequest + * The handleTesterLogInRequest function handles a request to login as a \n + * tester. + * @details + * Inputs : none + * Outputs : message handled + * @param message : a pointer to the message to handle + * @return none + *************************************************************************/ +void handleDialOutFlowRx( MESSAGE_T *message ) +{ + U32 rxVolumeInMl = * ( (U32*) (&message->payload[0]) ); + U32 timeInMinutes = * ( (U32*) (&message->payload[4]) ); + U32 FlowRateInMlMin = * ( (U32*) (&message->payload[8]) ); + BOOL areArgumentsValid = FALSE; + + if ( ( 12 == message->hdr.payloadLen ) ) + { + areArgumentsValid = setDialOutFlowRxTotalVolumeAndRxTime( rxVolumeInMl, timeInMinutes, FlowRateInMlMin); + } + + // respond to would be tester + sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, areArgumentsValid ); +} + +/************************************************************************* + * @brief handleTesterLogInRequest + * The handleTesterLogInRequest function handles a request to login as a \n + * tester. + * @details + * Inputs : none + * Outputs : message handled + * @param message : a pointer to the message to handle + * @return none + *************************************************************************/ +void handleDialOutFlowStateChange( MESSAGE_T *message ) +{ + BOOL isItAValidArgument = FALSE; + DIALOUT_FLOW_STATE_T newState = (DIALOUT_FLOW_STATE_T) message->payload[0]; + BOOL isBagChanged = message->payload[1]; + + + if ( ( 2 == message->hdr.payloadLen ) && + ( NUM_OF_DIALOUT_FLOW_STATES > newState ) ) + { + isItAValidArgument = TRUE; + setDialOutFlowNewState( newState, isBagChanged ); + } + + // respond to would be tester + sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, isItAValidArgument ); +} + Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r8f8776e48894e31cba816ebef2edf96d14306ba8 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 8f8776e48894e31cba816ebef2edf96d14306ba8) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -33,6 +33,7 @@ MSG_ID_DG_CHECK_IN, // 6 MSG_ID_UI_CHECK_IN, // 7 MSG_ID_DIALYSATE_FLOW_DATA, // 8 + MSG_ID_DIALYSATE_UF_DATA, // 9 // service/test CAN messages @@ -60,6 +61,8 @@ MSG_ID_DIAL_FLOW_SEND_INTERVAL_OVERRIDE, // 0x8014 MSG_ID_DIAL_PUMP_MEAS_SPEED_OVERRIDE, // 0x8015 MSG_ID_DIAL_PUMP_MEAS_ROTOR_SPEED_OVERRIDE, // 0x8016 + MSG_ID_DIAL_DIALYSATE_UF_SET_STATE, // 0x8017 + MSG_ID_DIAL_DIALYSATE_UF_SET_RX, // 0x8018 END_OF_MSG_IDS } MSG_ID_T; @@ -82,6 +85,10 @@ // MSG_ID_DIALYSATE_FLOW_DATA BOOL broadcastDialInFlowData( U32 flowStPt, F32 measFlow, F32 measRotorSpd, F32 measSpd, F32 measMCSpd, F32 measMCCurr, F32 pwmDC ); +// MSG_ID_DIALYSATE_UF_DATA +BOOL broadcastDialOutFlowData( S16 dialOutFlowState, S16 dialOutTotalTargetUFVolumeInMl, + S16 dialOutTotalMeasuredUFVolumeInMl, S16 dialOutControlSignalPWM ); + // MSG_ID_DG_CHECK_IN void handleDGCheckIn( MESSAGE_T *message ); // MSG_ID_UI_CHECK_IN Index: results/VectorCAST.log =================================================================== diff -u -r197ee67d1cc0e0e3c80ccae58858dda09cad0834 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- results/VectorCAST.log (.../VectorCAST.log) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -1,10 +1,10 @@ -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-11 09:45:13 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 +TIME: 2020-01-09 16:07:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env" Initializing search list Creating the Environment Directory Creating Environment "ALARMLAMP" @@ -14,365 +14,586 @@ Generating harness code Saving unit data Parsing AlarmLamp - Unit 9 (tdd-sbf-source): AlarmLamp + ** ERROR: Full Parse Failed: + AlarmLamp.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 26: + error: identifier "LAMP_PATTERN_OFF" is undefined + + LAMP_PATTERN_OFF = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 27: + error: identifier "LAMP_PATTERN_OK" is undefined + + LAMP_PATTERN_OK, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 28: + error: identifier "LAMP_PATTERN_FAULT" is undefined + + LAMP_PATTERN_FAULT, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 +TIME: 2020-01-09 16:08:00 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Opening Environment + Could not open environment 'ALARMLAMP' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 +TIME: 2020-01-09 16:08:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env" + Initializing search list + Creating the Environment Directory + Creating Environment "ALARMMGMT" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing AlarmMgmt + ** ERROR: Full Parse Failed: + AlarmMgmt.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/AlarmMgmt.c", line + 49: + error: variable "ALARM_T" is not a type name + const ALARM_T + alarmTable[ NUM_OF_ALARM_IDS ] = + ^ +2 errors detected in the + compilation of "AlarmMgmt.tu.c". + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 +TIME: 2020-01-09 16:08:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Opening Environment + Could not open environment 'ALARMMGMT' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 +TIME: 2020-01-09 16:08:04 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env" + Initializing search list + Creating the Environment Directory + Creating Environment "BLOODFLOW" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing BloodFlow + ** ERROR: Full Parse Failed: + BloodFlow.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 77: + error: identifier "BLOOD_PUMP_OFF_STATE" is undefined + + BLOOD_PUMP_OFF_STATE = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 78: + error: identifier "BLOOD_PUMP_RAMPING_UP_STATE" is + undefined + BLOOD_PUMP_RAMPING_UP_STATE, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 79: + error: identifier "BLOOD_PUMP_RAMPING_DOWN_STATE" is + undefined + BLOOD_PUMP_RAMPING_DOWN_STATE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 +TIME: 2020-01-09 16:08:05 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Opening Environment + Could not open environment 'BLOODFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 +TIME: 2020-01-09 16:08:06 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "BUTTONS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Buttons + ** ERROR: Full Parse Failed: + Buttons.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommM + essages.h", + line 93: error: expected a "{" + void handleDGCheckIn( + MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 29: + error: identifier "BUTTON_SELF_TEST_STATE_START" is undefined + + BUTTON_SELF_TEST_STATE_START = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 30: + error: identifier "BUTTON_SELF_TEST_STATE_IN_PROGRESS" is + undefined + BUTTON_SELF_TEST_STATE_IN_PROGRESS, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 31: + error: identifier "BUTTON_SELF_TEST_STATE_COMPLETE" is + undefined + BUTTON_SELF_TEST_STATE_COMPLETE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 +TIME: 2020-01-09 16:08:08 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Opening Environment + Could not open environment 'BUTTONS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:08:09 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env" + Initializing search list + Creating the Environment Directory + Creating Environment "COMM" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Comm + Unit 9 (tdd-sbf-source): Comm Loading stored IL Initializing parse data Generating harness code Saving unit data + Inserting Environment User Code Compiling file VECTORCAST_IO Compiling file User Defined Globals Compiling file Data File Number 1 Compiling file Data File Number 2 Compiling file Driver Compiling file User Defined Package Setting Up Statement+MC/DC Coverage - Instrumenting file AlarmLamp - Compiling file AlarmLamp + Instrumenting file Comm + Compiling file Comm Compiling file Data File Number 1 Linking Instrumented Harness Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-11 09:45:18 +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:08:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File Processing script line 50 - Processing script line 150 - Processing script line 400 + Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: NoPatternChangeManual -(S) @LINE: 36 - >>> Processed Test Case: NoPatternChangeManual -(I) @LINE: 42 - >>> Processing Test Case: NoPatternChangeStep0To1 -(S) @LINE: 57 - >>> Processed Test Case: NoPatternChangeStep0To1 -(I) @LINE: 63 - >>> Processing Test Case: NoPatternChangeStep1To0 -(S) @LINE: 78 - >>> Processed Test Case: NoPatternChangeStep1To0 -(I) @LINE: 84 - >>> Processing Test Case: NominalPatternChange -(S) @LINE: 97 - >>> Processed Test Case: NominalPatternChange -(I) @LINE: 105 - >>> Processing Test Case: CompleteToStart -(S) @LINE: 109 - >>> Processed Test Case: CompleteToStart -(I) @LINE: 115 - >>> Processing Test Case: GreenOn -(S) @LINE: 123 - >>> Processed Test Case: GreenOn -(I) @LINE: 129 - >>> Processing Test Case: GreenToOff -(S) @LINE: 139 - >>> Processed Test Case: GreenToOff -(I) @LINE: 145 - >>> Processing Test Case: InvalidState -(S) @LINE: 154 - >>> Processed Test Case: InvalidState -(I) @LINE: 160 - >>> Processing Test Case: RedOn -(S) @LINE: 168 - >>> Processed Test Case: RedOn -(I) @LINE: 174 - >>> Processing Test Case: RedToYellow + >>> Processing Test Case: clearSCI1CommErrors_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: clearSCI1CommErrors_NominalPath +(I) @LINE: 37 + >>> Processing Test Case: clearSCI1DMAReceiveInterrupt +(S) @LINE: 41 + >>> Processed Test Case: clearSCI1DMAReceiveInterrupt +(I) @LINE: 49 + >>> Processing Test Case: clearSCI1DMATransmitInterrupt +(S) @LINE: 53 + >>> Processed Test Case: clearSCI1DMATransmitInterrupt +(I) @LINE: 61 + >>> Processing Test Case: clearSCI2CommErrors_NominalPath +(S) @LINE: 65 + >>> Processed Test Case: clearSCI2CommErrors_NominalPath +(I) @LINE: 73 + >>> Processing Test Case: clearSCI2DMAReceiveInterrupt +(S) @LINE: 77 + >>> Processed Test Case: clearSCI2DMAReceiveInterrupt +(I) @LINE: 85 + >>> Processing Test Case: clearSCI2DMATransmitInterrupt +(S) @LINE: 89 + >>> Processed Test Case: clearSCI2DMATransmitInterrupt +(I) @LINE: 97 + >>> Processing Test Case: isCAN1TransmitInProgress_Ch1_8_Busy +(S) @LINE: 102 + >>> Processed Test Case: isCAN1TransmitInProgress_Ch1_8_Busy +(I) @LINE: 108 + >>> Processing Test Case: isCAN1TransmitInProgress_Ch9_16_Busy +(S) @LINE: 113 + >>> Processed Test Case: isCAN1TransmitInProgress_Ch9_16_Busy +(I) @LINE: 119 + >>> Processing Test Case: isCAN1TransmitInProgress_InProgress +(S) @LINE: 124 + >>> Processed Test Case: isCAN1TransmitInProgress_InProgress +(I) @LINE: 130 + >>> Processing Test Case: isCAN1TransmitInProgress_NotBusy +(S) @LINE: 134 + >>> Processed Test Case: isCAN1TransmitInProgress_NotBusy +(I) @LINE: 142 + >>> Processing Test Case: isSCI1DMATransmitInProgress_DMABusy +(S) @LINE: 148 + >>> Processed Test Case: isSCI1DMATransmitInProgress_DMABusy +(I) @LINE: 154 + >>> Processing Test Case: isSCI1DMATransmitInProgress_InProgress +(S) @LINE: 161 + >>> Processed Test Case: isSCI1DMATransmitInProgress_InProgress +(I) @LINE: 167 + >>> Processing Test Case: isSCI1DMATransmitInProgress_NotBusy +(S) @LINE: 173 + >>> Processed Test Case: isSCI1DMATransmitInProgress_NotBusy +(I) @LINE: 179 + >>> Processing Test Case: isSCI1DMATransmitInProgress_TransmitterBusy (S) @LINE: 185 - >>> Processed Test Case: RedToYellow -(I) @LINE: 191 - >>> Processing Test Case: StartTest + >>> Processed Test Case: isSCI1DMATransmitInProgress_TransmitterBusy +(I) @LINE: 193 + >>> Processing Test Case: isSCI2DMATransmitInProgress_DMABusy (S) @LINE: 199 - >>> Processed Test Case: StartTest + >>> Processed Test Case: isSCI2DMATransmitInProgress_DMABusy (I) @LINE: 205 - >>> Processing Test Case: YellowOn -(S) @LINE: 213 - >>> Processed Test Case: YellowOn -(I) @LINE: 219 - >>> Processing Test Case: YellowToGreen -(S) @LINE: 230 - >>> Processed Test Case: YellowToGreen -(I) @LINE: 238 - >>> Processing Test Case: NominalPath -(S) @LINE: 245 - >>> Processed Test Case: NominalPath -(I) @LINE: 251 - >>> Processing Test Case: Override -(S) @LINE: 258 - >>> Processed Test Case: Override -(I) @LINE: 266 - >>> Processing Test Case: NominalPath -(S) @LINE: 277 - >>> Processed Test Case: NominalPath -(I) @LINE: 285 - >>> Processing Test Case: InvalidLampPatternGiven -(S) @LINE: 295 - >>> Processed Test Case: InvalidLampPatternGiven -(I) @LINE: 301 - >>> Processing Test Case: NominalPath -(S) @LINE: 307 - >>> Processed Test Case: NominalPath -(I) @LINE: 315 - >>> Processing Test Case: AlarmHigh_Red -(S) @LINE: 322 - >>> Processed Test Case: AlarmHigh_Red -(I) @LINE: 328 - >>> Processing Test Case: AlarmMedium_Yellow -(S) @LINE: 336 - >>> Processed Test Case: AlarmMedium_Yellow -(I) @LINE: 342 - >>> Processing Test Case: OK_Green -(S) @LINE: 349 - >>> Processed Test Case: OK_Green -(I) @LINE: 357 - >>> Processing Test Case: TestingActive -(S) @LINE: 368 - >>> Processed Test Case: TestingActive -(I) @LINE: 374 - >>> Processing Test Case: TestingInactive -(S) @LINE: 385 - >>> Processed Test Case: TestingInactive -(I) @LINE: 393 - >>> Processing Test Case: TestingActive -(S) @LINE: 405 - >>> Processed Test Case: TestingActive -(I) @LINE: 411 - >>> Processing Test Case: TestingInactive -(S) @LINE: 423 - >>> Processed Test Case: TestingInactive -(S) @LINE: 423 + >>> Processing Test Case: isSCI2DMATransmitInProgress_NotBusy +(S) @LINE: 211 + >>> Processed Test Case: isSCI2DMATransmitInProgress_NotBusy +(I) @LINE: 217 + >>> Processing Test Case: isSCI2DMATransmitInProgress_TransmitterBusy +(S) @LINE: 223 + >>> Processed Test Case: isSCI2DMATransmitInProgress_TransmitterBusy +(I) @LINE: 231 + >>> Processing Test Case: setSCI1DMAReceiveInterrupt +(S) @LINE: 235 + >>> Processed Test Case: setSCI1DMAReceiveInterrupt +(I) @LINE: 243 + >>> Processing Test Case: setSCI1DMATransmitInterrupt +(S) @LINE: 247 + >>> Processed Test Case: setSCI1DMATransmitInterrupt +(I) @LINE: 255 + >>> Processing Test Case: setSCI2DMAReceiveInterrupt +(S) @LINE: 259 + >>> Processed Test Case: setSCI2DMAReceiveInterrupt +(I) @LINE: 267 + >>> Processing Test Case: setSCI2DMATransmitInterrupt +(S) @LINE: 272 + >>> Processed Test Case: setSCI2DMATransmitInterrupt +(I) @LINE: 280 + >>> Processing Test Case: signalCANXmitsCompleted_NominalPath +(S) @LINE: 283 + >>> Processed Test Case: signalCANXmitsCompleted_NominalPath +(I) @LINE: 291 + >>> Processing Test Case: signalCANXmitsInitiated_NominalPath +(S) @LINE: 294 + >>> Processed Test Case: signalCANXmitsInitiated_NominalPath +(I) @LINE: 302 + >>> Processing Test Case: signalSCI1XmitsCompleted_NominalPath +(S) @LINE: 305 + >>> Processed Test Case: signalSCI1XmitsCompleted_NominalPath +(I) @LINE: 313 + >>> Processing Test Case: signalSCI1XmitsInitiated_NominalPath +(S) @LINE: 316 + >>> Processed Test Case: signalSCI1XmitsInitiated_NominalPath +(S) @LINE: 316 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-11 09:45:20 +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:08:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - Running all AlarmLamp.initAlarmLamp test cases - Running: NominalPath + Running all Comm.signalCANXmitsInitiated test cases + Running: signalCANXmitsInitiated_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.execAlarmLamp test cases - Running: NoPatternChangeManual + Running all Comm.signalCANXmitsCompleted test cases + Running: signalCANXmitsCompleted_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: NoPatternChangeStep0To1 + Running all Comm.signalSCI1XmitsInitiated test cases + Running: signalSCI1XmitsInitiated_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: NoPatternChangeStep1To0 + Running all Comm.signalSCI1XmitsCompleted test cases + Running: signalSCI1XmitsCompleted_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: NominalPatternChange + Running all Comm.setSCI1DMAReceiveInterrupt test cases + Running: setSCI1DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.requestAlarmLampPattern test cases - Running: InvalidLampPatternGiven + Running all Comm.setSCI1DMATransmitInterrupt test cases + Running: setSCI1DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: NominalPath + Running all Comm.clearSCI1DMAReceiveInterrupt test cases + Running: clearSCI1DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.getCurrentAlarmLampPattern test cases - Running: NominalPath + Running all Comm.clearSCI1DMATransmitInterrupt test cases + Running: clearSCI1DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: Override + Running all Comm.setSCI2DMAReceiveInterrupt test cases + Running: setSCI2DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.execAlarmLampTest test cases - Running: CompleteToStart + Running all Comm.setSCI2DMATransmitInterrupt test cases + Running: setSCI2DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: GreenOn + Running all Comm.clearSCI2DMAReceiveInterrupt test cases + Running: clearSCI2DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: GreenToOff + Running all Comm.clearSCI2DMATransmitInterrupt test cases + Running: clearSCI2DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InvalidState + Running all Comm.clearSCI1CommErrors test cases + Running: clearSCI1CommErrors_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: RedOn + Running all Comm.clearSCI2CommErrors test cases + Running: clearSCI2CommErrors_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: RedToYellow + Running all Comm.isSCI1DMATransmitInProgress test cases + Running: isSCI1DMATransmitInProgress_DMABusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: StartTest + Running: isSCI1DMATransmitInProgress_InProgress Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: YellowOn + Running: isSCI1DMATransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: YellowToGreen + Running: isSCI1DMATransmitInProgress_TransmitterBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.setAlarmLampToPatternStep test cases - Running: AlarmHigh_Red + Running all Comm.isSCI2DMATransmitInProgress test cases + Running: isSCI2DMATransmitInProgress_DMABusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: AlarmMedium_Yellow + Running: isSCI2DMATransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OK_Green + Running: isSCI2DMATransmitInProgress_TransmitterBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.testSetCurrentLampPatternOverride test cases - Running: TestingActive + Running all Comm.isCAN1TransmitInProgress test cases + Running: isCAN1TransmitInProgress_Ch1_8_Busy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: TestingInactive + Running: isCAN1TransmitInProgress_Ch9_16_Busy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmLamp.testResetCurrentLampPatternOverride test cases - Running: TestingActive + Running: isCAN1TransmitInProgress_InProgress Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: TestingInactive + Running: isCAN1TransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-11 09:45:21 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:08:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env" Initializing search list Creating the Environment Directory - Creating Environment "ALARMMGMT" + Creating Environment "COMMBUFFERS" Unit 8 (not-stubbed): User Defined Globals Parsing Initializing parse data Generating harness code Saving unit data - Parsing AlarmMgmt - Unit 9 (tdd-sbf-source): AlarmMgmt + Parsing CommBuffers + Unit 9 (tdd-sbf-source): CommBuffers Loading stored IL Initializing parse data Generating harness code @@ -384,724 +605,301 @@ Compiling file Driver Compiling file User Defined Package Setting Up Statement+MC/DC Coverage - Instrumenting file AlarmMgmt - Compiling file AlarmMgmt + Instrumenting file CommBuffers + Compiling file CommBuffers Compiling file Data File Number 1 Linking Instrumented Harness Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-11 09:45:26 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:08:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Processing script line 50 + Processing script line 100 + Processing script line 150 Processing script line 250 - Processing script line 350 + Processing script line 300 Processing script line 400 - Processing script line 500 - Processing script line 550 - Processing script line 650 - Processing script line 700 - Processing script line 750 - Processing script line 850 - Processing script line 900 + Processing script line 450 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: activateAlarm_AlreadyActive + >>> Processing Test Case: InsufficientSpaceForAdd (S) @LINE: 31 - >>> Processed Test Case: activateAlarm_AlreadyActive + >>> Processed Test Case: InsufficientSpaceForAdd (I) @LINE: 37 - >>> Processing Test Case: activateAlarm_Fault -(S) @LINE: 45 - >>> Processed Test Case: activateAlarm_Fault -(I) @LINE: 51 - >>> Processing Test Case: activateAlarm_InvalidAlarm -(S) @LINE: 58 - >>> Processed Test Case: activateAlarm_InvalidAlarm -(I) @LINE: 64 - >>> Processing Test Case: activateAlarm_NoAlarm -(S) @LINE: 71 - >>> Processed Test Case: activateAlarm_NoAlarm -(I) @LINE: 77 - >>> Processing Test Case: activateAlarm_NotAFault -(S) @LINE: 84 - >>> Processed Test Case: activateAlarm_NotAFault -(I) @LINE: 92 - >>> Processing Test Case: activateAlarm1Data_AlreadyActive -(S) @LINE: 98 - >>> Processed Test Case: activateAlarm1Data_AlreadyActive -(I) @LINE: 104 - >>> Processing Test Case: activateAlarm1Data_NominalPath -(S) @LINE: 114 - >>> Processed Test Case: activateAlarm1Data_NominalPath -(I) @LINE: 122 - >>> Processing Test Case: activateAlarm2Data_AlreadyActive -(S) @LINE: 130 - >>> Processed Test Case: activateAlarm2Data_AlreadyActive -(I) @LINE: 136 - >>> Processing Test Case: activateAlarm2Data_NominalPath -(S) @LINE: 149 - >>> Processed Test Case: activateAlarm2Data_NominalPath -(I) @LINE: 157 - >>> Processing Test Case: activateAlarmNoData_AlreadyActive -(S) @LINE: 161 - >>> Processed Test Case: activateAlarmNoData_AlreadyActive -(I) @LINE: 167 - >>> Processing Test Case: activateAlarmNoData_NominalPath -(S) @LINE: 174 - >>> Processed Test Case: activateAlarmNoData_NominalPath -(I) @LINE: 182 - >>> Processing Test Case: clearAlarm_ClearNotAllowed -(S) @LINE: 186 - >>> Processed Test Case: clearAlarm_ClearNotAllowed -(I) @LINE: 192 - >>> Processing Test Case: clearAlarm_InvalidAlarm -(S) @LINE: 196 - >>> Processed Test Case: clearAlarm_InvalidAlarm -(I) @LINE: 202 - >>> Processing Test Case: clearAlarm_NoAlarm -(S) @LINE: 206 - >>> Processed Test Case: clearAlarm_NoAlarm -(I) @LINE: 212 - >>> Processing Test Case: clearAlarm_NominalPath -(S) @LINE: 222 - >>> Processed Test Case: clearAlarm_NominalPath -(I) @LINE: 228 - >>> Processing Test Case: clearAlarm_NotActive -(S) @LINE: 232 - >>> Processed Test Case: clearAlarm_NotActive -(I) @LINE: 238 - >>> Processing Test Case: clearAlarm_NotInFIFO -(S) @LINE: 250 - >>> Processed Test Case: clearAlarm_NotInFIFO -(I) @LINE: 258 - >>> Processing Test Case: execAlarmMgmt_NominalPath -(S) @LINE: 270 - >>> Processed Test Case: execAlarmMgmt_NominalPath -(I) @LINE: 276 - >>> Processing Test Case: execAlarmMgmt_TimeToPublishStatus -(S) @LINE: 298 - >>> Processed Test Case: execAlarmMgmt_TimeToPublishStatus -(I) @LINE: 306 - >>> Processing Test Case: getAlarmActive_InvalidAlarm -(S) @LINE: 311 - >>> Processed Test Case: getAlarmActive_InvalidAlarm -(I) @LINE: 317 - >>> Processing Test Case: getAlarmActive_NominalPath -(S) @LINE: 321 - >>> Processed Test Case: getAlarmActive_NominalPath -(I) @LINE: 327 - >>> Processing Test Case: getAlarmActive_Override -(S) @LINE: 333 - >>> Processed Test Case: getAlarmActive_Override -(I) @LINE: 341 - >>> Processing Test Case: getAlarmStartTime_InvalidAlarm -(S) @LINE: 344 - >>> Processed Test Case: getAlarmStartTime_InvalidAlarm -(I) @LINE: 350 - >>> Processing Test Case: getAlarmStartTime_NominalPath -(S) @LINE: 354 - >>> Processed Test Case: getAlarmStartTime_NominalPath -(I) @LINE: 360 - >>> Processing Test Case: getAlarmStartTime_Override -(S) @LINE: 366 - >>> Processed Test Case: getAlarmStartTime_Override -(I) @LINE: 374 - >>> Processing Test Case: getPublishAlarmStatusInterval_NominalPath -(S) @LINE: 379 - >>> Processed Test Case: getPublishAlarmStatusInterval_NominalPath -(I) @LINE: 385 - >>> Processing Test Case: getPublishAlarmStatusInterval_Override -(S) @LINE: 390 - >>> Processed Test Case: getPublishAlarmStatusInterval_Override -(I) @LINE: 398 - >>> Processing Test Case: initAlarmMgmt_NominalPath -(S) @LINE: 448 - >>> Processed Test Case: initAlarmMgmt_NominalPath -(I) @LINE: 456 - >>> Processing Test Case: isAlarmActive_NominalPath -(S) @LINE: 460 - >>> Processed Test Case: isAlarmActive_NominalPath -(I) @LINE: 468 - >>> Processing Test Case: resetAlarmPriorityFIFO_InvalidPriority -(S) @LINE: 480 - >>> Processed Test Case: resetAlarmPriorityFIFO_InvalidPriority -(I) @LINE: 486 - >>> Processing Test Case: resetAlarmPriorityFIFO_NominalPath -(S) @LINE: 490 - >>> Processed Test Case: resetAlarmPriorityFIFO_NominalPath -(I) @LINE: 498 - >>> Processing Test Case: setAlarmLampAndAudio_High -(S) @LINE: 501 - >>> Processed Test Case: setAlarmLampAndAudio_High -(I) @LINE: 507 - >>> Processing Test Case: setAlarmLampAndAudio_HighFault -(S) @LINE: 511 - >>> Processed Test Case: setAlarmLampAndAudio_HighFault -(I) @LINE: 517 - >>> Processing Test Case: setAlarmLampAndAudio_InvalidAlarmState -(S) @LINE: 521 - >>> Processed Test Case: setAlarmLampAndAudio_InvalidAlarmState -(I) @LINE: 527 - >>> Processing Test Case: setAlarmLampAndAudio_Low -(S) @LINE: 530 - >>> Processed Test Case: setAlarmLampAndAudio_Low -(I) @LINE: 536 - >>> Processing Test Case: setAlarmLampAndAudio_Manual -(S) @LINE: 541 - >>> Processed Test Case: setAlarmLampAndAudio_Manual -(I) @LINE: 547 - >>> Processing Test Case: setAlarmLampAndAudio_Medium -(S) @LINE: 550 - >>> Processed Test Case: setAlarmLampAndAudio_Medium -(I) @LINE: 556 - >>> Processing Test Case: setAlarmLampAndAudio_NoAlarms -(S) @LINE: 559 - >>> Processed Test Case: setAlarmLampAndAudio_NoAlarms -(I) @LINE: 567 - >>> Processing Test Case: testResetAlarmStartOverride_InvalidAlarm -(S) @LINE: 578 - >>> Processed Test Case: testResetAlarmStartOverride_InvalidAlarm -(I) @LINE: 584 - >>> Processing Test Case: testResetAlarmStartOverride_NominalPath -(S) @LINE: 596 - >>> Processed Test Case: testResetAlarmStartOverride_NominalPath -(I) @LINE: 602 - >>> Processing Test Case: testResetAlarmStartOverride_NotLoggedIn -(S) @LINE: 614 - >>> Processed Test Case: testResetAlarmStartOverride_NotLoggedIn -(I) @LINE: 622 - >>> Processing Test Case: testResetAlarmStateOverride_InvalidAlarm -(S) @LINE: 633 - >>> Processed Test Case: testResetAlarmStateOverride_InvalidAlarm -(I) @LINE: 639 - >>> Processing Test Case: testResetAlarmStateOverride_NominalPath -(S) @LINE: 651 - >>> Processed Test Case: testResetAlarmStateOverride_NominalPath -(I) @LINE: 657 - >>> Processing Test Case: testResetAlarmStateOverride_NotLoggedIn -(S) @LINE: 669 - >>> Processed Test Case: testResetAlarmStateOverride_NotLoggedIn -(I) @LINE: 677 - >>> Processing Test Case: testResetAlarmStatusPublishIntervalOverride_NominalPath -(S) @LINE: 688 - >>> Processed Test Case: testResetAlarmStatusPublishIntervalOverride_NominalPath -(I) @LINE: 694 - >>> Processing Test Case: testResetAlarmStatusPublishIntervalOverride_NotLoggedIn -(S) @LINE: 705 - >>> Processed Test Case: testResetAlarmStatusPublishIntervalOverride_NotLoggedIn -(I) @LINE: 713 - >>> Processing Test Case: testSetAlarmStartOverride_InvalidAlarm -(S) @LINE: 718 - >>> Processed Test Case: testSetAlarmStartOverride_InvalidAlarm -(I) @LINE: 724 - >>> Processing Test Case: testSetAlarmStartOverride_NominalPath -(S) @LINE: 738 - >>> Processed Test Case: testSetAlarmStartOverride_NominalPath -(I) @LINE: 744 - >>> Processing Test Case: testSetAlarmStartOverride_NotLoggedIn -(S) @LINE: 757 - >>> Processed Test Case: testSetAlarmStartOverride_NotLoggedIn -(I) @LINE: 763 - >>> Processing Test Case: testSetAlarmStartOverride_ValueTooLarge -(S) @LINE: 777 - >>> Processed Test Case: testSetAlarmStartOverride_ValueTooLarge -(I) @LINE: 785 - >>> Processing Test Case: testSetAlarmStateOverride_InvalidAlarm -(S) @LINE: 797 - >>> Processed Test Case: testSetAlarmStateOverride_InvalidAlarm -(I) @LINE: 803 - >>> Processing Test Case: testSetAlarmStateOverride_NominalPath -(S) @LINE: 816 - >>> Processed Test Case: testSetAlarmStateOverride_NominalPath -(I) @LINE: 822 - >>> Processing Test Case: testSetAlarmStateOverride_NotLoggedIn -(S) @LINE: 835 - >>> Processed Test Case: testSetAlarmStateOverride_NotLoggedIn -(I) @LINE: 843 - >>> Processing Test Case: testSetAlarmStatusPublishIntervalOverride_NominalPath -(S) @LINE: 855 - >>> Processed Test Case: testSetAlarmStatusPublishIntervalOverride_NominalPath -(I) @LINE: 861 - >>> Processing Test Case: testSetAlarmStatusPublishIntervalOverride_NotLoggedIn -(S) @LINE: 873 - >>> Processed Test Case: testSetAlarmStatusPublishIntervalOverride_NotLoggedIn -(I) @LINE: 881 - >>> Processing Test Case: updateAlarmsState_NoAlarmsActive -(S) @LINE: 888 - >>> Processed Test Case: updateAlarmsState_NoAlarmsActive -(I) @LINE: 894 - >>> Processing Test Case: updateAlarmsState_NominalPath -(S) @LINE: 908 - >>> Processed Test Case: updateAlarmsState_NominalPath -(S) @LINE: 908 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 41 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 47 + >>> Processing Test Case: SuccessfulAdd +(S) @LINE: 110 + >>> Processed Test Case: SuccessfulAdd +(I) @LINE: 118 + >>> Processing Test Case: ConsumeAllDataInInactiveBuffer +(S) @LINE: 137 + >>> Processed Test Case: ConsumeAllDataInInactiveBuffer +(I) @LINE: 143 + >>> Processing Test Case: ConsumePortionOfDataInInactiveBuffer +(S) @LINE: 167 + >>> Processed Test Case: ConsumePortionOfDataInInactiveBuffer +(I) @LINE: 175 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 179 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 185 + >>> Processing Test Case: LengthLargerThanBuffer +(S) @LINE: 195 + >>> Processed Test Case: LengthLargerThanBuffer +(I) @LINE: 201 + >>> Processing Test Case: LengthLargerThanContents +(S) @LINE: 211 + >>> Processed Test Case: LengthLargerThanContents +(I) @LINE: 217 + >>> Processing Test Case: SuccessfulGetFromBothBuffers +(S) @LINE: 242 + >>> Processed Test Case: SuccessfulGetFromBothBuffers +(I) @LINE: 248 + >>> Processing Test Case: SuccessfulGetFromInactiveBufferOnly +(S) @LINE: 274 + >>> Processed Test Case: SuccessfulGetFromInactiveBufferOnly +(I) @LINE: 282 + >>> Processing Test Case: NominalPath +(S) @LINE: 337 + >>> Processed Test Case: NominalPath +(I) @LINE: 345 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 348 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 354 + >>> Processing Test Case: NominalPath +(S) @LINE: 361 + >>> Processed Test Case: NominalPath +(I) @LINE: 369 + >>> Processing Test Case: InvalidBuffer +(S) @LINE: 373 + >>> Processed Test Case: InvalidBuffer +(I) @LINE: 379 + >>> Processing Test Case: LengthLargerThanBuffer +(S) @LINE: 389 + >>> Processed Test Case: LengthLargerThanBuffer +(I) @LINE: 395 + >>> Processing Test Case: LengthLargerThanContents +(S) @LINE: 405 + >>> Processed Test Case: LengthLargerThanContents +(I) @LINE: 411 + >>> Processing Test Case: SuccessfulPeekFromBothBuffers +(S) @LINE: 444 + >>> Processed Test Case: SuccessfulPeekFromBothBuffers +(I) @LINE: 450 + >>> Processing Test Case: SuccessfulPeekFromInactiveBufferOnly +(S) @LINE: 483 + >>> Processed Test Case: SuccessfulPeekFromInactiveBufferOnly +(I) @LINE: 491 + >>> Processing Test Case: Switch0To1 +(S) @LINE: 499 + >>> Processed Test Case: Switch0To1 +(I) @LINE: 505 + >>> Processing Test Case: Switch1To0 +(S) @LINE: 513 + >>> Processed Test Case: Switch1To0 +(S) @LINE: 513 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-11 09:45:28 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:08:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - Running all AlarmMgmt.initAlarmMgmt test cases - Running: initAlarmMgmt_NominalPath + Running all CommBuffers.initCommBuffers test cases + Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.execAlarmMgmt test cases - Running: execAlarmMgmt_NominalPath + Running all CommBuffers.addToCommBuffer test cases + Running: InsufficientSpaceForAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: execAlarmMgmt_TimeToPublishStatus + Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.activateAlarm test cases - Running: activateAlarm_AlreadyActive + Running: SuccessfulAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm_Fault + Running all CommBuffers.getFromCommBuffer test cases + Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm_InvalidAlarm + Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm_NoAlarm + Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm_NotAFault + Running: SuccessfulGetFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.activateAlarmNoData test cases - Running: activateAlarmNoData_AlreadyActive + Running: SuccessfulGetFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarmNoData_NominalPath + Running all CommBuffers.peekFromCommBuffer test cases + Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.activateAlarm1Data test cases - Running: activateAlarm1Data_AlreadyActive + Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm1Data_NominalPath + Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.activateAlarm2Data test cases - Running: activateAlarm2Data_AlreadyActive + Running: SuccessfulPeekFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: activateAlarm2Data_NominalPath + Running: SuccessfulPeekFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.clearAlarm test cases - Running: clearAlarm_ClearNotAllowed + Running all CommBuffers.numberOfBytesInCommBuffer test cases + Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: clearAlarm_InvalidAlarm + Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: clearAlarm_NoAlarm + Running all CommBuffers.switchDoubleBuffer test cases + Running: Switch0To1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: clearAlarm_NominalPath + Running: Switch1To0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: clearAlarm_NotActive + Running all CommBuffers.getDataFromInactiveBuffer test cases + Running: ConsumeAllDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: clearAlarm_NotInFIFO + Running: ConsumePortionOfDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all AlarmMgmt.isAlarmActive test cases - Running: isAlarmActive_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.getAlarmActive test cases - Running: getAlarmActive_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getAlarmActive_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getAlarmActive_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.getAlarmStartTime test cases - Running: getAlarmStartTime_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getAlarmStartTime_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getAlarmStartTime_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.updateAlarmsState test cases - Running: updateAlarmsState_NoAlarmsActive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: updateAlarmsState_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.setAlarmLampAndAudio test cases - Running: setAlarmLampAndAudio_High - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_HighFault - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_InvalidAlarmState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_Low - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_Manual - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_Medium - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setAlarmLampAndAudio_NoAlarms - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.resetAlarmPriorityFIFO test cases - Running: resetAlarmPriorityFIFO_InvalidPriority - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: resetAlarmPriorityFIFO_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.getPublishAlarmStatusInterval test cases - Running: getPublishAlarmStatusInterval_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getPublishAlarmStatusInterval_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testSetAlarmStatusPublishIntervalOverride test cases - Running: testSetAlarmStatusPublishIntervalOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStatusPublishIntervalOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testResetAlarmStatusPublishIntervalOverride test cases - Running: testResetAlarmStatusPublishIntervalOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetAlarmStatusPublishIntervalOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testSetAlarmStateOverride test cases - Running: testSetAlarmStateOverride_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testResetAlarmStateOverride test cases - Running: testResetAlarmStateOverride_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetAlarmStateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetAlarmStateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testSetAlarmStartOverride test cases - Running: testSetAlarmStartOverride_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStartOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStartOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetAlarmStartOverride_ValueTooLarge - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmMgmt.testResetAlarmStartOverride test cases - Running: testResetAlarmStartOverride_InvalidAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetAlarmStartOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetAlarmStartOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-11 09:45:31 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:08:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env" Initializing search list Creating the Environment Directory - Creating Environment "BLOODFLOW" + Creating Environment "CPLD" Unit 8 (not-stubbed): User Defined Globals Parsing Initializing parse data Generating harness code Saving unit data - Parsing BloodFlow - Unit 9 (tdd-sbf-source): BloodFlow + Parsing CPLD + Unit 9 (tdd-sbf-source): CPLD Loading stored IL Initializing parse data Generating harness code @@ -1114,1796 +912,1789 @@ Compiling file Driver Compiling file User Defined Package Setting Up Statement+MC/DC Coverage - Instrumenting file BloodFlow - Compiling file BloodFlow + Instrumenting file CPLD + Compiling file CPLD Compiling file Data File Number 1 Linking Instrumented Harness Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-11 09:45:36 +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:08:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File - Processing script line 250 - Processing script line 300 - Processing script line 350 - Processing script line 450 - Processing script line 500 - Processing script line 550 - Processing script line 750 - Processing script line 850 - Processing script line 900 - Processing script line 950 - Processing script line 1050 - Processing script line 1100 - Processing script line 1200 - Processing script line 1250 - Processing script line 1400 - Processing script line 1450 - Processing script line 1550 - Processing script line 1600 + Processing script line 50 + Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: checkBloodPumpDirection_Fail -(S) @LINE: 33 - >>> Processed Test Case: checkBloodPumpDirection_Fail -(I) @LINE: 39 - >>> Processing Test Case: checkBloodPumpDirection_NominalPath -(S) @LINE: 47 - >>> Processed Test Case: checkBloodPumpDirection_NominalPath -(I) @LINE: 53 - >>> Processing Test Case: checkBloodPumpDirection_NotControlling -(S) @LINE: 59 - >>> Processed Test Case: checkBloodPumpDirection_NotControlling -(I) @LINE: 67 - >>> Processing Test Case: checkBloodPumpMCCurrent_OFFOk -(S) @LINE: 72 - >>> Processed Test Case: checkBloodPumpMCCurrent_OFFOk -(I) @LINE: 78 - >>> Processing Test Case: checkBloodPumpMCCurrent_OFFTooHighAlarm -(S) @LINE: 86 - >>> Processed Test Case: checkBloodPumpMCCurrent_OFFTooHighAlarm -(I) @LINE: 92 - >>> Processing Test Case: checkBloodPumpMCCurrent_OFFTooHighShortTime -(S) @LINE: 97 - >>> Processed Test Case: checkBloodPumpMCCurrent_OFFTooHighShortTime -(I) @LINE: 103 - >>> Processing Test Case: checkBloodPumpMCCurrent_RunningOk -(S) @LINE: 108 - >>> Processed Test Case: checkBloodPumpMCCurrent_RunningOk -(I) @LINE: 114 - >>> Processing Test Case: checkBloodPumpMCCurrent_RunningTooHighAlarm -(S) @LINE: 122 - >>> Processed Test Case: checkBloodPumpMCCurrent_RunningTooHighAlarm -(I) @LINE: 128 - >>> Processing Test Case: checkBloodPumpMCCurrent_RunningTooHighShortTime -(S) @LINE: 133 - >>> Processed Test Case: checkBloodPumpMCCurrent_RunningTooHighShortTime -(I) @LINE: 139 - >>> Processing Test Case: checkBloodPumpMCCurrent_RunningTooLowAlarm -(S) @LINE: 147 - >>> Processed Test Case: checkBloodPumpMCCurrent_RunningTooLowAlarm -(I) @LINE: 153 - >>> Processing Test Case: checkBloodPumpMCCurrent_RunningTooLowShortTime + >>> Processing Test Case: getCPLDOffButton_NominalPath +(S) @LINE: 28 + >>> Processed Test Case: getCPLDOffButton_NominalPath +(I) @LINE: 36 + >>> Processing Test Case: getCPLDStopButton_NominalPath +(S) @LINE: 40 + >>> Processed Test Case: getCPLDStopButton_NominalPath +(I) @LINE: 48 + >>> Processing Test Case: getCPLDWatchdogExpired_NominalPath +(S) @LINE: 52 + >>> Processed Test Case: getCPLDWatchdogExpired_NominalPath +(I) @LINE: 60 + >>> Processing Test Case: initCPLD_NominalPath +(S) @LINE: 66 + >>> Processed Test Case: initCPLD_NominalPath +(I) @LINE: 74 + >>> Processing Test Case: setCPLDLampBlue_Off +(S) @LINE: 79 + >>> Processed Test Case: setCPLDLampBlue_Off +(I) @LINE: 85 + >>> Processing Test Case: setCPLDLampBlue_On +(S) @LINE: 90 + >>> Processed Test Case: setCPLDLampBlue_On +(I) @LINE: 98 + >>> Processing Test Case: setCPLDLampGreen_Off +(S) @LINE: 103 + >>> Processed Test Case: setCPLDLampGreen_Off +(I) @LINE: 109 + >>> Processing Test Case: setCPLDLampGreen_On +(S) @LINE: 114 + >>> Processed Test Case: setCPLDLampGreen_On +(I) @LINE: 122 + >>> Processing Test Case: setCPLDLampRed_Off +(S) @LINE: 127 + >>> Processed Test Case: setCPLDLampRed_Off +(I) @LINE: 133 + >>> Processing Test Case: setCPLDLampRed_On +(S) @LINE: 138 + >>> Processed Test Case: setCPLDLampRed_On +(I) @LINE: 146 + >>> Processing Test Case: toggleCPLDOffRequest_NominalPath +(S) @LINE: 148 + >>> Processed Test Case: toggleCPLDOffRequest_NominalPath +(I) @LINE: 156 + >>> Processing Test Case: toggleCPLDWatchdog_NominalPath (S) @LINE: 158 - >>> Processed Test Case: checkBloodPumpMCCurrent_RunningTooLowShortTime -(I) @LINE: 166 - >>> Processing Test Case: execBloodFlowController_ControlToTargetState -(S) @LINE: 175 - >>> Processed Test Case: execBloodFlowController_ControlToTargetState -(I) @LINE: 181 - >>> Processing Test Case: execBloodFlowController_InvalidState -(S) @LINE: 187 - >>> Processed Test Case: execBloodFlowController_InvalidState -(I) @LINE: 193 - >>> Processing Test Case: execBloodFlowController_OffState -(S) @LINE: 199 - >>> Processed Test Case: execBloodFlowController_OffState -(I) @LINE: 205 - >>> Processing Test Case: execBloodFlowController_RampDown -(S) @LINE: 213 - >>> Processed Test Case: execBloodFlowController_RampDown -(I) @LINE: 219 - >>> Processing Test Case: execBloodFlowController_RampUpState -(S) @LINE: 227 - >>> Processed Test Case: execBloodFlowController_RampUpState -(I) @LINE: 235 - >>> Processing Test Case: execBloodFlowMonitor_InitMode_WrapFlowBuffer -(S) @LINE: 260 - >>> Processed Test Case: execBloodFlowMonitor_InitMode_WrapFlowBuffer -(I) @LINE: 266 - >>> Processing Test Case: execBloodFlowMonitor_NominalPath -(S) @LINE: 290 - >>> Processed Test Case: execBloodFlowMonitor_NominalPath -(I) @LINE: 298 - >>> Processing Test Case: execBloodFlowTest_InvalidState -(S) @LINE: 301 - >>> Processed Test Case: execBloodFlowTest_InvalidState -(I) @LINE: 309 - >>> Processing Test Case: getMeasuredBloodFlowRate_NominalPath -(S) @LINE: 315 - >>> Processed Test Case: getMeasuredBloodFlowRate_NominalPath -(I) @LINE: 321 - >>> Processing Test Case: getMeasuredBloodFlowRate_Override -(S) @LINE: 327 - >>> Processed Test Case: getMeasuredBloodFlowRate_Override -(I) @LINE: 335 - >>> Processing Test Case: getMeasuredBloodPumpCurrent_NominalPath -(S) @LINE: 341 - >>> Processed Test Case: getMeasuredBloodPumpCurrent_NominalPath -(I) @LINE: 347 - >>> Processing Test Case: getMeasuredBloodPumpCurrent_Override -(S) @LINE: 353 - >>> Processed Test Case: getMeasuredBloodPumpCurrent_Override -(I) @LINE: 361 - >>> Processing Test Case: getMeasuredBloodPumpMCSpeed_NominalPath -(S) @LINE: 364 - >>> Processed Test Case: getMeasuredBloodPumpMCSpeed_NominalPath -(I) @LINE: 370 - >>> Processing Test Case: getMeasuredBloodPumpMCSpeed_Override -(S) @LINE: 376 - >>> Processed Test Case: getMeasuredBloodPumpMCSpeed_Override -(I) @LINE: 384 - >>> Processing Test Case: getMeasuredBloodPumpRotorSpeed_NominalPath -(S) @LINE: 387 - >>> Processed Test Case: getMeasuredBloodPumpRotorSpeed_NominalPath -(I) @LINE: 393 - >>> Processing Test Case: getMeasuredBloodPumpRotorSpeed_Override -(S) @LINE: 399 - >>> Processed Test Case: getMeasuredBloodPumpRotorSpeed_Override -(I) @LINE: 407 - >>> Processing Test Case: getMeasuredBloodPumpSpeed_NominalPath -(S) @LINE: 413 - >>> Processed Test Case: getMeasuredBloodPumpSpeed_NominalPath -(I) @LINE: 419 - >>> Processing Test Case: getMeasuredBloodPumpSpeed_Override -(S) @LINE: 425 - >>> Processed Test Case: getMeasuredBloodPumpSpeed_Override -(I) @LINE: 433 - >>> Processing Test Case: getPublishBloodFlowDataInterval_NominalPath -(S) @LINE: 439 - >>> Processed Test Case: getPublishBloodFlowDataInterval_NominalPath -(I) @LINE: 445 - >>> Processing Test Case: getPublishBloodFlowDataInterval_Override -(S) @LINE: 451 - >>> Processed Test Case: getPublishBloodFlowDataInterval_Override -(I) @LINE: 459 - >>> Processing Test Case: getTargetBloodFlowRate_NominalPath -(S) @LINE: 465 - >>> Processed Test Case: getTargetBloodFlowRate_NominalPath -(I) @LINE: 471 - >>> Processing Test Case: getTargetBloodFlowRate_Override -(S) @LINE: 477 - >>> Processed Test Case: getTargetBloodFlowRate_Override -(I) @LINE: 485 - >>> Processing Test Case: handleBloodPumpControlToTargetState_NominalPath -(S) @LINE: 501 - >>> Processed Test Case: handleBloodPumpControlToTargetState_NominalPath -(I) @LINE: 507 - >>> Processing Test Case: handleBloodPumpControlToTargetState_NotControlInterval -(S) @LINE: 511 - >>> Processed Test Case: handleBloodPumpControlToTargetState_NotControlInterval -(I) @LINE: 517 - >>> Processing Test Case: handleBloodPumpControlToTargetState_PWM_Max -(S) @LINE: 533 - >>> Processed Test Case: handleBloodPumpControlToTargetState_PWM_Max -(I) @LINE: 539 - >>> Processing Test Case: handleBloodPumpControlToTargetState_PWM_Min -(S) @LINE: 555 - >>> Processed Test Case: handleBloodPumpControlToTargetState_PWM_Min -(I) @LINE: 561 - >>> Processing Test Case: handleBloodPumpControlToTargetState_Reverse -(S) @LINE: 577 - >>> Processed Test Case: handleBloodPumpControlToTargetState_Reverse -(I) @LINE: 583 - >>> Processing Test Case: handleBloodPumpControlToTargetState_TermsMaxRange -(S) @LINE: 599 - >>> Processed Test Case: handleBloodPumpControlToTargetState_TermsMaxRange -(I) @LINE: 605 - >>> Processing Test Case: handleBloodPumpControlToTargetState_TermsMaxRange2 -(S) @LINE: 621 - >>> Processed Test Case: handleBloodPumpControlToTargetState_TermsMaxRange2 -(I) @LINE: 629 - >>> Processing Test Case: handleBloodPumpOffState_NewRateSet -(S) @LINE: 646 - >>> Processed Test Case: handleBloodPumpOffState_NewRateSet -(I) @LINE: 652 - >>> Processing Test Case: handleBloodPumpOffState_NoChange -(S) @LINE: 656 - >>> Processed Test Case: handleBloodPumpOffState_NoChange -(I) @LINE: 664 - >>> Processing Test Case: handleBloodPumpRampingDownState_ -(S) @LINE: 669 - >>> Processed Test Case: handleBloodPumpRampingDownState_ -(I) @LINE: 675 - >>> Processing Test Case: handleBloodPumpRampingDownState_RampComplete -(S) @LINE: 683 - >>> Processed Test Case: handleBloodPumpRampingDownState_RampComplete -(I) @LINE: 689 - >>> Processing Test Case: handleBloodPumpRampingDownState_StillRamping -(S) @LINE: 698 - >>> Processed Test Case: handleBloodPumpRampingDownState_StillRamping -(I) @LINE: 706 - >>> Processing Test Case: handleBloodPumpRampingUpState_RampComplete -(S) @LINE: 711 - >>> Processed Test Case: handleBloodPumpRampingUpState_RampComplete -(I) @LINE: 717 - >>> Processing Test Case: handleBloodPumpRampingUpState_StillRamping -(S) @LINE: 726 - >>> Processed Test Case: handleBloodPumpRampingUpState_StillRamping -(I) @LINE: 732 - >>> Processing Test Case: handleBloodPumpRampingUpState_StopRequested -(S) @LINE: 740 - >>> Processed Test Case: handleBloodPumpRampingUpState_StopRequested -(I) @LINE: 748 - >>> Processing Test Case: initBloodFlow_NominalPath -(S) @LINE: 765 - >>> Processed Test Case: initBloodFlow_NominalPath -(I) @LINE: 773 - >>> Processing Test Case: publishBloodFlowData_NominalPath -(S) @LINE: 785 - >>> Processed Test Case: publishBloodFlowData_NominalPath -(I) @LINE: 791 - >>> Processing Test Case: publishBloodFlowData_NotIntervalTime -(S) @LINE: 799 - >>> Processed Test Case: publishBloodFlowData_NotIntervalTime -(I) @LINE: 807 - >>> Processing Test Case: releaseBloodPumpStop_NominalPath -(S) @LINE: 811 - >>> Processed Test Case: releaseBloodPumpStop_NominalPath -(I) @LINE: 819 - >>> Processing Test Case: setBloodPumpDirection_FWD -(S) @LINE: 826 - >>> Processed Test Case: setBloodPumpDirection_FWD -(I) @LINE: 832 - >>> Processing Test Case: setBloodPumpDirection_InvalidDirection -(S) @LINE: 843 - >>> Processed Test Case: setBloodPumpDirection_InvalidDirection -(I) @LINE: 849 - >>> Processing Test Case: setBloodPumpDirection_REV -(S) @LINE: 856 - >>> Processed Test Case: setBloodPumpDirection_REV -(I) @LINE: 864 - >>> Processing Test Case: setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning -(S) @LINE: 873 - >>> Processed Test Case: setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning -(I) @LINE: 879 - >>> Processing Test Case: setBloodPumpTargetFlowRate_FlowTooHigh -(S) @LINE: 891 - >>> Processed Test Case: setBloodPumpTargetFlowRate_FlowTooHigh -(I) @LINE: 897 - >>> Processing Test Case: setBloodPumpTargetFlowRate_OffToRateFwd -(S) @LINE: 917 - >>> Processed Test Case: setBloodPumpTargetFlowRate_OffToRateFwd -(I) @LINE: 923 - >>> Processing Test Case: setBloodPumpTargetFlowRate_OffToRateRev -(S) @LINE: 943 - >>> Processed Test Case: setBloodPumpTargetFlowRate_OffToRateRev -(I) @LINE: 949 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecrease -(S) @LINE: 970 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecrease -(I) @LINE: 976 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown -(S) @LINE: 997 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown -(I) @LINE: 1003 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp -(S) @LINE: 1024 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp -(I) @LINE: 1030 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncrease -(S) @LINE: 1051 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncrease -(I) @LINE: 1057 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown -(S) @LINE: 1078 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown -(I) @LINE: 1084 - >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp -(S) @LINE: 1105 - >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp -(I) @LINE: 1111 - >>> Processing Test Case: setBloodPumpTargetFlowRate_ZeroRate -(S) @LINE: 1132 - >>> Processed Test Case: setBloodPumpTargetFlowRate_ZeroRate -(I) @LINE: 1140 - >>> Processing Test Case: stopBloodPump_NominalPath -(S) @LINE: 1149 - >>> Processed Test Case: stopBloodPump_NominalPath -(I) @LINE: 1157 - >>> Processing Test Case: testResetBloodFlowDataPublishIntervalOverride_NominalPath -(S) @LINE: 1168 - >>> Processed Test Case: testResetBloodFlowDataPublishIntervalOverride_NominalPath -(I) @LINE: 1174 - >>> Processing Test Case: testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 1185 - >>> Processed Test Case: testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 1193 - >>> Processing Test Case: testResetMeasuredBloodFlowRateOverride_NominalPath -(S) @LINE: 1204 - >>> Processed Test Case: testResetMeasuredBloodFlowRateOverride_NominalPath -(I) @LINE: 1210 - >>> Processing Test Case: testResetMeasuredBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1221 - >>> Processed Test Case: testResetMeasuredBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1229 - >>> Processing Test Case: testResetMeasuredBloodPumpCurrentOverride_NominalPath -(S) @LINE: 1240 - >>> Processed Test Case: testResetMeasuredBloodPumpCurrentOverride_NominalPath -(I) @LINE: 1246 - >>> Processing Test Case: testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(S) @LINE: 1257 - >>> Processed Test Case: testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(I) @LINE: 1265 - >>> Processing Test Case: testResetMeasuredBloodPumpMCSpeedOverride_NominalPath -(S) @LINE: 1276 - >>> Processed Test Case: testResetMeasuredBloodPumpMCSpeedOverride_NominalPath -(I) @LINE: 1282 - >>> Processing Test Case: testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn -(S) @LINE: 1293 - >>> Processed Test Case: testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn -(I) @LINE: 1301 - >>> Processing Test Case: testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath -(S) @LINE: 1312 - >>> Processed Test Case: testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath -(I) @LINE: 1318 - >>> Processing Test Case: testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn -(S) @LINE: 1329 - >>> Processed Test Case: testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn -(I) @LINE: 1337 - >>> Processing Test Case: testResetMeasuredBloodPumpSpeedOverride_NominalPath -(S) @LINE: 1348 - >>> Processed Test Case: testResetMeasuredBloodPumpSpeedOverride_NominalPath -(I) @LINE: 1354 - >>> Processing Test Case: testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(S) @LINE: 1365 - >>> Processed Test Case: testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(I) @LINE: 1373 - >>> Processing Test Case: testResetTargetBloodFlowRateOverride_NominalPath -(S) @LINE: 1384 - >>> Processed Test Case: testResetTargetBloodFlowRateOverride_NominalPath -(I) @LINE: 1390 - >>> Processing Test Case: testResetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1401 - >>> Processed Test Case: testResetTargetBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1409 - >>> Processing Test Case: testSetBloodFlowDataPublishIntervalOverride_NominalPath -(S) @LINE: 1421 - >>> Processed Test Case: testSetBloodFlowDataPublishIntervalOverride_NominalPath -(I) @LINE: 1427 - >>> Processing Test Case: testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 1439 - >>> Processed Test Case: testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 1447 - >>> Processing Test Case: testSetMeasuredBloodFlowRateOverride_NominalPath -(S) @LINE: 1459 - >>> Processed Test Case: testSetMeasuredBloodFlowRateOverride_NominalPath -(I) @LINE: 1465 - >>> Processing Test Case: testSetMeasuredBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1477 - >>> Processed Test Case: testSetMeasuredBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1485 - >>> Processing Test Case: testSetMeasuredBloodPumpCurrentOverride_NominalPath -(S) @LINE: 1497 - >>> Processed Test Case: testSetMeasuredBloodPumpCurrentOverride_NominalPath -(I) @LINE: 1503 - >>> Processing Test Case: testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(S) @LINE: 1515 - >>> Processed Test Case: testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(I) @LINE: 1523 - >>> Processing Test Case: testSetMeasuredBloodPumpMCSpeedOverride_NominalPath -(S) @LINE: 1535 - >>> Processed Test Case: testSetMeasuredBloodPumpMCSpeedOverride_NominalPath -(I) @LINE: 1541 - >>> Processing Test Case: testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn -(S) @LINE: 1553 - >>> Processed Test Case: testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn -(I) @LINE: 1561 - >>> Processing Test Case: testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath -(S) @LINE: 1573 - >>> Processed Test Case: testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath -(I) @LINE: 1579 - >>> Processing Test Case: testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn -(S) @LINE: 1591 - >>> Processed Test Case: testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn -(I) @LINE: 1599 - >>> Processing Test Case: testSetMeasuredBloodPumpSpeedOverride_NominalPath -(S) @LINE: 1611 - >>> Processed Test Case: testSetMeasuredBloodPumpSpeedOverride_NominalPath -(I) @LINE: 1617 - >>> Processing Test Case: testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(S) @LINE: 1629 - >>> Processed Test Case: testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(I) @LINE: 1637 - >>> Processing Test Case: testSetTargetBloodFlowRateOverride_NominalPath -(S) @LINE: 1649 - >>> Processed Test Case: testSetTargetBloodFlowRateOverride_NominalPath -(I) @LINE: 1655 - >>> Processing Test Case: testSetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1667 - >>> Processed Test Case: testSetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1667 + >>> Processed Test Case: toggleCPLDWatchdog_NominalPath +(S) @LINE: 158 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-11 09:45:39 +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:08:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - Running all BloodFlow.initBloodFlow test cases - Running: initBloodFlow_NominalPath + Running all CPLD.initCPLD test cases + Running: initCPLD_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all BloodFlow.setBloodPumpTargetFlowRate test cases - Running: setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning + Running all CPLD.toggleCPLDWatchdog test cases + Running: toggleCPLDWatchdog_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_FlowTooHigh + Running all CPLD.getCPLDWatchdogExpired test cases + Running: getCPLDWatchdogExpired_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_OffToRateFwd + Running all CPLD.setCPLDLampGreen test cases + Running: setCPLDLampGreen_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_OffToRateRev + Running: setCPLDLampGreen_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateDecrease + Running all CPLD.setCPLDLampBlue test cases + Running: setCPLDLampBlue_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown + Running: setCPLDLampBlue_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp + Running all CPLD.setCPLDLampRed test cases + Running: setCPLDLampRed_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateIncrease + Running: setCPLDLampRed_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown + Running all CPLD.toggleCPLDOffRequest test cases + Running: toggleCPLDOffRequest_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp + Running all CPLD.getCPLDOffButton test cases + Running: getCPLDOffButton_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: setBloodPumpTargetFlowRate_ZeroRate + Running all CPLD.getCPLDStopButton test cases + Running: getCPLDStopButton_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all BloodFlow.execBloodFlowMonitor test cases - Running: execBloodFlowMonitor_InitMode_WrapFlowBuffer - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execBloodFlowMonitor_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.execBloodFlowController test cases - Running: execBloodFlowController_ControlToTargetState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execBloodFlowController_InvalidState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execBloodFlowController_OffState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execBloodFlowController_RampDown - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execBloodFlowController_RampUpState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.handleBloodPumpOffState test cases - Running: handleBloodPumpOffState_NewRateSet - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpOffState_NoChange - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.handleBloodPumpRampingUpState test cases - Running: handleBloodPumpRampingUpState_RampComplete - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpRampingUpState_StillRamping - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpRampingUpState_StopRequested - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.handleBloodPumpRampingDownState test cases - Running: handleBloodPumpRampingDownState_ - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpRampingDownState_RampComplete - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpRampingDownState_StillRamping - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.handleBloodPumpControlToTargetState test cases - Running: handleBloodPumpControlToTargetState_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_NotControlInterval - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_PWM_Max - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_PWM_Min - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_Reverse - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_TermsMaxRange - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleBloodPumpControlToTargetState_TermsMaxRange2 - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.stopBloodPump test cases - Running: stopBloodPump_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.releaseBloodPumpStop test cases - Running: releaseBloodPumpStop_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.setBloodPumpDirection test cases - Running: setBloodPumpDirection_FWD - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setBloodPumpDirection_InvalidDirection - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setBloodPumpDirection_REV - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getPublishBloodFlowDataInterval test cases - Running: getPublishBloodFlowDataInterval_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getPublishBloodFlowDataInterval_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getTargetBloodFlowRate test cases - Running: getTargetBloodFlowRate_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getTargetBloodFlowRate_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getMeasuredBloodFlowRate test cases - Running: getMeasuredBloodFlowRate_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getMeasuredBloodFlowRate_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getMeasuredBloodPumpRotorSpeed test cases - Running: getMeasuredBloodPumpRotorSpeed_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getMeasuredBloodPumpRotorSpeed_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getMeasuredBloodPumpSpeed test cases - Running: getMeasuredBloodPumpSpeed_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getMeasuredBloodPumpSpeed_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getMeasuredBloodPumpMCSpeed test cases - Running: getMeasuredBloodPumpMCSpeed_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getMeasuredBloodPumpMCSpeed_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.getMeasuredBloodPumpMCCurrent test cases - Running: getMeasuredBloodPumpCurrent_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: getMeasuredBloodPumpCurrent_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.publishBloodFlowData test cases - Running: publishBloodFlowData_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: publishBloodFlowData_NotIntervalTime - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.checkBloodPumpDirection test cases - Running: checkBloodPumpDirection_Fail - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpDirection_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpDirection_NotControlling - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.checkBloodPumpMCCurrent test cases - Running: checkBloodPumpMCCurrent_OFFOk - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_OFFTooHighAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_OFFTooHighShortTime - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_RunningOk - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_RunningTooHighAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_RunningTooHighShortTime - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_RunningTooLowAlarm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: checkBloodPumpMCCurrent_RunningTooLowShortTime - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.execBloodFlowTest test cases - Running: execBloodFlowTest_InvalidState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetBloodFlowDataPublishIntervalOverride test cases - Running: testSetBloodFlowDataPublishIntervalOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetBloodFlowDataPublishIntervalOverride test cases - Running: testResetBloodFlowDataPublishIntervalOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetTargetBloodFlowRateOverride test cases - Running: testSetTargetBloodFlowRateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetTargetBloodFlowRateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetTargetBloodFlowRateOverride test cases - Running: testResetTargetBloodFlowRateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetTargetBloodFlowRateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodFlowRateOverride test cases - Running: testSetMeasuredBloodFlowRateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetMeasuredBloodFlowRateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodFlowRateOverride test cases - Running: testResetMeasuredBloodFlowRateOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetMeasuredBloodFlowRateOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodPumpRotorSpeedOverride test cases - Running: testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodPumpRotorSpeedOverride test cases - Running: testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodPumpSpeedOverride test cases - Running: testSetMeasuredBloodPumpSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodPumpSpeedOverride test cases - Running: testResetMeasuredBloodPumpSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodPumpMCSpeedOverride test cases - Running: testSetMeasuredBloodPumpMCSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodPumpMCSpeedOverride test cases - Running: testResetMeasuredBloodPumpMCSpeedOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodPumpMCCurrentOverride test cases - Running: testSetMeasuredBloodPumpCurrentOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodPumpMCCurrentOverride test cases - Running: testResetMeasuredBloodPumpCurrentOverride_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-11 09:45:43 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 +TIME: 2020-01-09 16:08:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.env" Initializing search list Creating the Environment Directory - Creating Environment "BUTTONS" + Creating Environment "DIALINFLOW" Unit 8 (not-stubbed): User Defined Globals Parsing Initializing parse data Generating harness code Saving unit data - Parsing Buttons - Unit 9 (tdd-sbf-source): Buttons + Parsing DialInFlow + ** ERROR: Full Parse Failed: + DialInFlow.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCo + mmMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 78: + error: identifier "DIAL_IN_PUMP_OFF_STATE" is undefined + + DIAL_IN_PUMP_OFF_STATE = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 79: + error: identifier "DIAL_IN_PUMP_RAMPING_UP_STATE" is + undefined + DIAL_IN_PUMP_RAMPING_UP_STATE, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 80: + error: identifier "DIAL_IN_PUMP_RAMPING_DOWN_STATE" is + undefined + DIAL_IN_PUMP_RAMPING_DOWN_STATE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 +TIME: 2020-01-09 16:08:30 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/CCAST_.CFG + Opening Environment + Could not open environment 'DIALINFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 +TIME: 2020-01-09 16:08:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env" + Initializing search list + Creating the Environment Directory + Creating Environment "FPGA" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing FPGA + ** ERROR: Full Parse Failed: + FPGA.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMess + ages.h", + line 93: error: expected a "{" + void handleDGCheckIn( + MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 33: + error: + identifier "FPGA_STATE_START" is undefined + + FPGA_STATE_START = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 34: + error: + identifier "FPGA_STATE_READ_HEADER" is undefined + + FPGA_STATE_READ_HEADER, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 35: + error: + identifier "FPGA_STATE_RCV_HEADER" is undefined + + FPGA_STATE_RCV_HEADER, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 +TIME: 2020-01-09 16:08:33 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG + Opening Environment + Could not open environment 'FPGA' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:08:34 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INTERRUPTS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Interrupts + Unit 9 (tdd-sbf-source): Interrupts Loading stored IL Initializing parse data Generating harness code Saving unit data + Inserting Environment User Code Compiling file VECTORCAST_IO Compiling file User Defined Globals Compiling file Data File Number 1 Compiling file Data File Number 2 Compiling file Driver Compiling file User Defined Package Setting Up Statement+MC/DC Coverage - Instrumenting file Buttons - Compiling file Buttons + Instrumenting file Interrupts + Compiling file Interrupts Compiling file Data File Number 1 Linking Instrumented Harness Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-11 09:45:48 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:08:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File Processing script line 50 - Processing script line 300 - Processing script line 350 - Processing script line 400 - Processing script line 450 - Processing script line 600 - Processing script line 650 - Processing script line 700 - Processing script line 750 + Processing script line 200 + Processing script line 250 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp (I) @LINE: 24 - >>> Processing Test Case: ButtonsPressed -(S) @LINE: 43 - >>> Processed Test Case: ButtonsPressed -(I) @LINE: 49 - >>> Processing Test Case: NoButtonsPressed -(S) @LINE: 68 - >>> Processed Test Case: NoButtonsPressed -(I) @LINE: 76 - >>> Processing Test Case: Completed -(S) @LINE: 84 - >>> Processed Test Case: Completed -(I) @LINE: 90 - >>> Processing Test Case: InProgressStuckButtonReleased -(S) @LINE: 97 - >>> Processed Test Case: InProgressStuckButtonReleased -(I) @LINE: 103 - >>> Processing Test Case: InProgressStuckButtonTimeout_OffPressed -(S) @LINE: 116 - >>> Processed Test Case: InProgressStuckButtonTimeout_OffPressed + >>> Processing Test Case: canErrorNotification_BusOff +(S) @LINE: 34 + >>> Processed Test Case: canErrorNotification_BusOff +(I) @LINE: 40 + >>> Processing Test Case: canErrorNotification_BusPassive +(S) @LINE: 50 + >>> Processed Test Case: canErrorNotification_BusPassive +(I) @LINE: 56 + >>> Processing Test Case: canErrorNotification_BusWarning +(S) @LINE: 66 + >>> Processed Test Case: canErrorNotification_BusWarning +(I) @LINE: 72 + >>> Processing Test Case: canErrorNotification_InvalidCANNode +(S) @LINE: 82 + >>> Processed Test Case: canErrorNotification_InvalidCANNode +(I) @LINE: 88 + >>> Processing Test Case: canErrorNotification_Other +(S) @LINE: 98 + >>> Processed Test Case: canErrorNotification_Other +(I) @LINE: 104 + >>> Processing Test Case: canErrorNotification_ParityError +(S) @LINE: 114 + >>> Processed Test Case: canErrorNotification_ParityError (I) @LINE: 122 - >>> Processing Test Case: InProgressStuckButtonTimeout_StopPressed -(S) @LINE: 135 - >>> Processed Test Case: InProgressStuckButtonTimeout_StopPressed -(I) @LINE: 141 - >>> Processing Test Case: InvalidState -(S) @LINE: 148 - >>> Processed Test Case: InvalidState -(I) @LINE: 154 - >>> Processing Test Case: StartTestNoButtonsPressed -(S) @LINE: 163 - >>> Processed Test Case: StartTestNoButtonsPressed -(I) @LINE: 169 - >>> Processing Test Case: StartTestStuckButton -(S) @LINE: 181 - >>> Processed Test Case: StartTestStuckButton -(I) @LINE: 189 + >>> Processing Test Case: InvalidCANNode +(S) @LINE: 129 + >>> Processed Test Case: InvalidCANNode +(I) @LINE: 135 >>> Processing Test Case: NominalPath -(S) @LINE: 195 +(S) @LINE: 138 >>> Processed Test Case: NominalPath -(I) @LINE: 201 - >>> Processing Test Case: Override -(S) @LINE: 207 - >>> Processed Test Case: Override -(I) @LINE: 215 +(I) @LINE: 146 + >>> Processing Test Case: DMAChannel0 +(S) @LINE: 155 + >>> Processed Test Case: DMAChannel0 +(I) @LINE: 161 + >>> Processing Test Case: DMAChannel1 +(S) @LINE: 170 + >>> Processed Test Case: DMAChannel1 +(I) @LINE: 176 + >>> Processing Test Case: DMAChannel2 +(S) @LINE: 185 + >>> Processed Test Case: DMAChannel2 +(I) @LINE: 191 + >>> Processing Test Case: DMAChannel3 +(S) @LINE: 200 + >>> Processed Test Case: DMAChannel3 +(I) @LINE: 206 + >>> Processing Test Case: InvalidChannel +(S) @LINE: 213 + >>> Processed Test Case: InvalidChannel +(I) @LINE: 219 + >>> Processing Test Case: UnexpectedInterruptType +(S) @LINE: 226 + >>> Processed Test Case: UnexpectedInterruptType +(I) @LINE: 234 >>> Processing Test Case: NominalPath -(S) @LINE: 221 +(S) @LINE: 239 >>> Processed Test Case: NominalPath -(I) @LINE: 227 - >>> Processing Test Case: Override -(S) @LINE: 233 - >>> Processed Test Case: Override -(I) @LINE: 241 - >>> Processing Test Case: NoChangeNoPending -(S) @LINE: 248 - >>> Processed Test Case: NoChangeNoPending -(I) @LINE: 254 - >>> Processing Test Case: PressedToReleasedOffPendingFirstPulse +(I) @LINE: 247 + >>> Processing Test Case: FramingError_SCI +(S) @LINE: 253 + >>> Processed Test Case: FramingError_SCI +(I) @LINE: 259 + >>> Processing Test Case: FramingError_SCI2 (S) @LINE: 266 - >>> Processed Test Case: PressedToReleasedOffPendingFirstPulse + >>> Processed Test Case: FramingError_SCI2 (I) @LINE: 272 - >>> Processing Test Case: PressedToReleasedOffPendingIntermediate + >>> Processing Test Case: InvalidSCI (S) @LINE: 284 - >>> Processed Test Case: PressedToReleasedOffPendingIntermediate + >>> Processed Test Case: InvalidSCI (I) @LINE: 290 - >>> Processing Test Case: PressedToReleasedOffPendingLastPulse -(S) @LINE: 302 - >>> Processed Test Case: PressedToReleasedOffPendingLastPulse -(I) @LINE: 308 - >>> Processing Test Case: ReleasedToPressedFaultMode -(S) @LINE: 316 - >>> Processed Test Case: ReleasedToPressedFaultMode -(I) @LINE: 322 - >>> Processing Test Case: ReleasedToPressedInvalidMode -(S) @LINE: 330 - >>> Processed Test Case: ReleasedToPressedInvalidMode -(I) @LINE: 336 - >>> Processing Test Case: ReleasedToPressedServiceMode -(S) @LINE: 344 - >>> Processed Test Case: ReleasedToPressedServiceMode -(I) @LINE: 350 - >>> Processing Test Case: ReleasedToPressedStandbyMode -(S) @LINE: 358 - >>> Processed Test Case: ReleasedToPressedStandbyMode -(I) @LINE: 364 - >>> Processing Test Case: handleOffButtonProcessing_OffRequestPending -(S) @LINE: 369 - >>> Processed Test Case: handleOffButtonProcessing_OffRequestPending -(I) @LINE: 375 - >>> Processing Test Case: handleOffButtonProcessing_OffRequestPendingExpired -(E) Errors from previous script import(s) - >>> (E) @LINE: 381 TEST.EXPECTED:uut_prototype_stubs.sendOffButtonMsgToUI.promptUser:0 - >>> >>> Unknown parameter/object name promptUser - >>> >>> Value Line Error - Command Ignored -(S) @LINE: 386 - >>> Processed Test Case: handleOffButtonProcessing_OffRequestPendingExpired -(I) @LINE: 394 - >>> Processing Test Case: NoChange -(S) @LINE: 401 - >>> Processed Test Case: NoChange -(I) @LINE: 407 - >>> Processing Test Case: PressTimedOut -(S) @LINE: 420 - >>> Processed Test Case: PressTimedOut -(I) @LINE: 426 - >>> Processing Test Case: PressedToReleased -(S) @LINE: 433 - >>> Processed Test Case: PressedToReleased -(I) @LINE: 439 - >>> Processing Test Case: ReleasedToPressed -(S) @LINE: 452 - >>> Processed Test Case: ReleasedToPressed -(I) @LINE: 460 - >>> Processing Test Case: NominalPath -(S) @LINE: 479 - >>> Processed Test Case: NominalPath -(I) @LINE: 487 - >>> Processing Test Case: FaultMode -(S) @LINE: 490 - >>> Processed Test Case: FaultMode -(I) @LINE: 496 - >>> Processing Test Case: InvalidMode -(S) @LINE: 499 - >>> Processed Test Case: InvalidMode -(I) @LINE: 505 - >>> Processing Test Case: ServiceMode -(S) @LINE: 508 - >>> Processed Test Case: ServiceMode -(I) @LINE: 514 - >>> Processing Test Case: StandbyMode -(S) @LINE: 517 - >>> Processed Test Case: StandbyMode -(I) @LINE: 525 - >>> Processing Test Case: NominalPath -(S) @LINE: 529 - >>> Processed Test Case: NominalPath -(I) @LINE: 537 - >>> Processing Test Case: TestingActive -(S) @LINE: 548 - >>> Processed Test Case: TestingActive -(I) @LINE: 554 - >>> Processing Test Case: TestingInactive -(S) @LINE: 565 - >>> Processed Test Case: TestingInactive -(I) @LINE: 573 - >>> Processing Test Case: TestingActive -(S) @LINE: 584 - >>> Processed Test Case: TestingActive -(I) @LINE: 590 - >>> Processing Test Case: TestingInactive -(S) @LINE: 601 - >>> Processed Test Case: TestingInactive -(I) @LINE: 609 - >>> Processing Test Case: TestingActive -(S) @LINE: 621 - >>> Processed Test Case: TestingActive -(I) @LINE: 627 - >>> Processing Test Case: TestingInactive -(S) @LINE: 639 - >>> Processed Test Case: TestingInactive -(I) @LINE: 647 - >>> Processing Test Case: TestingActive -(S) @LINE: 659 - >>> Processed Test Case: TestingActive -(I) @LINE: 665 - >>> Processing Test Case: TestingInactive -(S) @LINE: 677 - >>> Processed Test Case: TestingInactive -(I) @LINE: 685 - >>> Processing Test Case: InvalidCmdFromUI -(S) @LINE: 691 - >>> Processed Test Case: InvalidCmdFromUI -(I) @LINE: 697 - >>> Processing Test Case: InvalidModeToTurnOff -(S) @LINE: 704 - >>> Processed Test Case: InvalidModeToTurnOff -(I) @LINE: 710 - >>> Processing Test Case: OffButtonRejected -(S) @LINE: 716 - >>> Processed Test Case: OffButtonRejected -(I) @LINE: 722 - >>> Processing Test Case: OffDuringFaultMode -(S) @LINE: 729 - >>> Processed Test Case: OffDuringFaultMode -(I) @LINE: 735 - >>> Processing Test Case: OffDuringServiceMode -(S) @LINE: 742 - >>> Processed Test Case: OffDuringServiceMode -(I) @LINE: 748 - >>> Processing Test Case: OffDuringStandbyMode -(S) @LINE: 755 - >>> Processed Test Case: OffDuringStandbyMode -(I) @LINE: 761 - >>> Processing Test Case: userConfirmOffButton_NoConfirmExpected -(S) @LINE: 771 - >>> Processed Test Case: userConfirmOffButton_NoConfirmExpected -(I) @LINE: 777 - >>> Processing Test Case: userConfirmOffButton_NoRejectExpected -(S) @LINE: 787 - >>> Processed Test Case: userConfirmOffButton_NoRejectExpected -(S) @LINE: 787 + >>> Processing Test Case: OverrunError_SCI +(S) @LINE: 296 + >>> Processed Test Case: OverrunError_SCI +(I) @LINE: 302 + >>> Processing Test Case: OverrunError_SCI2 +(S) @LINE: 309 + >>> Processed Test Case: OverrunError_SCI2 +(S) @LINE: 309 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-11 09:45:50 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:08:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - Running all Buttons.initButtons test cases + Running all Interrupts.phantomInterrupt test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Buttons.execButtons test cases - Running: ButtonsPressed + Running all Interrupts.canMessageNotification test cases + Running: InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: NoButtonsPressed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.isStopButtonPressed test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Buttons.getOffButtonState test cases - Running: NominalPath + Running all Interrupts.canErrorNotification test cases + Running: canErrorNotification_BusOff Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: Override + Running: canErrorNotification_BusPassive Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Buttons.getStopButtonState test cases - Running: NominalPath + Running: canErrorNotification_BusWarning Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: Override + Running: canErrorNotification_InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Buttons.execStuckButtonTest test cases - Running: Completed + Running: canErrorNotification_Other Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InProgressStuckButtonReleased + Running: canErrorNotification_ParityError Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InProgressStuckButtonTimeout_OffPressed + Running all Interrupts.sciNotification test cases + Running: FramingError_SCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InProgressStuckButtonTimeout_StopPressed + Running: FramingError_SCI2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InvalidState + Running: InvalidSCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: StartTestNoButtonsPressed + Running: OverrunError_SCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: StartTestStuckButton + Running: OverrunError_SCI2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running all Buttons.userConfirmOffButton test cases - Running: InvalidCmdFromUI + Running all Interrupts.dmaGroupANotification test cases + Running: DMAChannel0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: InvalidModeToTurnOff + Running: DMAChannel1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OffButtonRejected + Running: DMAChannel2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OffDuringFaultMode + Running: DMAChannel3 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OffDuringServiceMode + Running: InvalidChannel Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: OffDuringStandbyMode + Running: UnexpectedInterruptType Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: userConfirmOffButton_NoConfirmExpected + Completed Batch Execution processing +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 +TIME: 2020-01-09 16:08:40 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_ALARMLAMP" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: AlarmLamp.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: AlarmMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c + QuickParse Utility Completed + ====================================================================== + The filename 'AlarmLamp' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmLamp.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 +TIME: 2020-01-09 16:08:46 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG + Opening Environment + Could not open environment 'INT_ALARMLAMP' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 +TIME: 2020-01-09 16:08:47 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_ALARMMGMT" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: BloodFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: AlarmMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'AlarmMgmt' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmMgmt.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 +TIME: 2020-01-09 16:08:51 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG + Opening Environment + Could not open environment 'INT_ALARMMGMT' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 +TIME: 2020-01-09 16:08:52 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_BLOODFLOW" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: BloodFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + File: TaskPriority.c + QuickParse Utility Completed + ====================================================================== + The filename 'BloodFlow' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: BloodFlow.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 +TIME: 2020-01-09 16:08:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG + Opening Environment + Could not open environment 'INT_BLOODFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 +TIME: 2020-01-09 16:08:57 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_BUTTONS" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskPriority.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 +TIME: 2020-01-09 16:09:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG + Opening Environment + Could not open environment 'INT_BUTTONS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 +TIME: 2020-01-09 16:09:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_COMMBUFFERS" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: CommBuffers.c + File: MsgQueues.c + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 +TIME: 2020-01-09 16:09:07 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG + Opening Environment + Could not open environment 'INT_COMMBUFFERS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2020-01-09 16:09:08 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_CPLD" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: AlarmLamp.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Drivers/ + File: CPLD.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: WatchdogMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + ====================================================================== + The filename 'AlarmLamp' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmLamp.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2020-01-09 16:09:12 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG + Opening Environment + Could not open environment 'INT_CPLD' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 +TIME: 2020-01-09 16:09:14 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_DIALINFLOW" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: DialInFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + File: TaskPriority.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'DialInFlow' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: DialInFlow.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 +TIME: 2020-01-09 16:09:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +An unhandled exception was caught + Traceback (most recent call last): + + File "", line 416, in process_event + +KeyboardInterrupt + in :416 +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 +TIME: 2020-01-09 16:09:19 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_FPGA" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ +An unhandled exception was caught + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ +An unhandled exception was caught + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: FPGA.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Interrupts.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskPriority.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'FPGA' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: FPGA.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 +TIME: 2020-01-09 16:09:22 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG + Opening Environment + Could not open environment 'INT_FPGA' + Traceback (most recent call last): + + File "", line 416, in process_event + +KeyboardInterrupt + in :416 +Traceback (most recent call last): + File "", line 147, in create_db + File "", line 130, in create + File "", line 69, in create +KeyboardInterrupt + Failed to create db. +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 +TIME: 2020-01-09 16:09:23 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_MSGQUEUES" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: CommBuffers.c (using cached data) + File: MsgQueues.c (using cached data) + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 +TIME: 2020-01-09 16:09:26 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG + Opening Environment + Could not open environment 'INT_MSGQUEUES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 +TIME: 2020-01-09 16:09:27 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_OPERATIONMODES" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + File: OperationModes.c + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 +TIME: 2020-01-09 16:09:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG + Opening Environment + Could not open environment 'INT_OPERATIONMODES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:09:32 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_SAFETYSHUTDOWN" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Drivers/ + File: SafetyShutdown.c + QuickParse Utility Completed + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing SafetyShutdown + Parsing sys_main + Unit 9 (stub-by-function): SafetyShutdown + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Unit 11 (stub-by-function): sys_main + Loading stored IL + Initializing parse data + Generating harness code + Saving unit data + Compiling file VECTORCAST_IO + Compiling file User Defined Globals + Compiling file Data File Number 1 + Compiling file Data File Number 2 + Compiling file Driver + Compiling file User Defined Package + Setting Up Function Coverage + Instrumenting file SafetyShutdown + Compiling file SafetyShutdown + Instrumenting file sys_main + Compiling file sys_main + Compiling file Data File Number 1 + Linking Instrumented Harness + Coverage Initialized + Writing VectorCAST Database Files to Disk + Environment built Successfully +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:09:39 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Opening Environment + Determining Size/Range Information + Opening Parameter/Global File + Opening Types File + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST + Building Master Min Mid Max data. + Opening Parameter/Global File + Opening Types File + Environment is Open + Processing Script File + Script Creation Completed +-------------------------------------------------------------------------------- +Test Script Log +-------------------------------------------------------------------------------- +(I) @LINE: 1 + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp +(I) @LINE: 24 + >>> Processing Test Case: initSafetyShutdown +(S) @LINE: 27 + >>> Processed Test Case: initSafetyShutdown +(S) @LINE: 27 + >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:09:40 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Running all sys_main.initSoftware test cases + Running: initSafetyShutdown Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: userConfirmOffButton_NoRejectExpected - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.isCurrentOpModeOkToTurnOff test cases - Running: FaultMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ServiceMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: StandbyMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.handleOffButtonProcessing test cases - Running: NoChangeNoPending - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PressedToReleasedOffPendingFirstPulse - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PressedToReleasedOffPendingIntermediate - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PressedToReleasedOffPendingLastPulse - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReleasedToPressedFaultMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReleasedToPressedInvalidMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReleasedToPressedServiceMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReleasedToPressedStandbyMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleOffButtonProcessing_OffRequestPending - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleOffButtonProcessing_OffRequestPendingExpired - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.handleStopButtonProcessing test cases - Running: NoChange - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PressTimedOut - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PressedToReleased - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReleasedToPressed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.testSetOffButtonStateOverride test cases - Running: TestingActive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.testResetOffButtonStateOverride test cases - Running: TestingActive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.testSetStopButtonStateOverride test cases - Running: TestingActive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.testResetStopButtonStateOverride test cases - Running: TestingActive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-11 09:45:53 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 +TIME: 2020-01-09 16:09:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env" Initializing search list Creating the Environment Directory + Creating Environment "INT_SYSTEMCOMM" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: CommBuffers.c (using cached data) + File: Interrupts.c (using cached data) + File: MsgQueues.c (using cached data) + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 +TIME: 2020-01-09 16:09:44 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG + Opening Environment + Could not open environment 'INT_SYSTEMCOMM' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 +TIME: 2020-01-09 16:09:46 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_SYSTEMCOMMMESSAGES" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ +An unhandled exception was caught + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ +An unhandled exception was caught + QuickParse Utility Completed + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 +TIME: 2020-01-09 16:09:47 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +An unhandled exception was caught + Traceback (most recent call last): + + File "", line 416, in process_event + +KeyboardInterrupt + in :416 +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 +TIME: 2020-01-09 16:09:47 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_TIMERS" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: Timers.c + File: WatchdogMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskTimer.c + QuickParse Utility Completed + ====================================================================== + The filename 'WatchdogMgmt' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: TaskTimer.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 +TIME: 2020-01-09 16:09:51 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG + Opening Environment + Could not open environment 'INT_TIMERS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 +TIME: 2020-01-09 16:09:52 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_UTILITIES" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: FPGA.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Utilities.c + QuickParse Utility Completed + ====================================================================== + The filename 'FPGA' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: FPGA.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 +TIME: 2020-01-09 16:09:55 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG + Opening Environment + Could not open environment 'INT_UTILITIES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 +TIME: 2020-01-09 16:09:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_WATCHDOGMGMT" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 +TIME: 2020-01-09 16:11:05 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env" + Initializing search list + Creating the Environment Directory + Creating Environment "ALARMLAMP" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing AlarmLamp + ** ERROR: Full Parse Failed: + AlarmLamp.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 26: + error: identifier "LAMP_PATTERN_OFF" is undefined + + LAMP_PATTERN_OFF = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 27: + error: identifier "LAMP_PATTERN_OK" is undefined + + LAMP_PATTERN_OK, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/AlarmLamp.h", + line 28: + error: identifier "LAMP_PATTERN_FAULT" is undefined + + LAMP_PATTERN_FAULT, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 +TIME: 2020-01-09 16:11:06 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG + Opening Environment + Could not open environment 'ALARMLAMP' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 +TIME: 2020-01-09 16:11:08 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env" + Initializing search list + Creating the Environment Directory + Creating Environment "ALARMMGMT" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing AlarmMgmt + ** ERROR: Full Parse Failed: + AlarmMgmt.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/AlarmMgmt.c", line + 49: + error: variable "ALARM_T" is not a type name + const ALARM_T + alarmTable[ NUM_OF_ALARM_IDS ] = + ^ +2 errors detected in the + compilation of "AlarmMgmt.tu.c". + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 +TIME: 2020-01-09 16:11:09 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG + Opening Environment + Could not open environment 'ALARMMGMT' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 +TIME: 2020-01-09 16:11:11 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env" + Initializing search list + Creating the Environment Directory + Creating Environment "BLOODFLOW" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing BloodFlow + ** ERROR: Full Parse Failed: + BloodFlow.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCom + mMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 77: + error: identifier "BLOOD_PUMP_OFF_STATE" is undefined + + BLOOD_PUMP_OFF_STATE = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 78: + error: identifier "BLOOD_PUMP_RAMPING_UP_STATE" is + undefined + BLOOD_PUMP_RAMPING_UP_STATE, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/BloodFlow.c", + line 79: + error: identifier "BLOOD_PUMP_RAMPING_DOWN_STATE" is + undefined + BLOOD_PUMP_RAMPING_DOWN_STATE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 +TIME: 2020-01-09 16:11:12 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG + Opening Environment + Could not open environment 'BLOODFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 +TIME: 2020-01-09 16:11:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env" + Initializing search list + Creating the Environment Directory + Creating Environment "BUTTONS" + Unit 8 (not-stubbed): User Defined Globals + Parsing + Initializing parse data + Generating harness code + Saving unit data + Parsing Buttons + ** ERROR: Full Parse Failed: + Buttons.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommM + essages.h", + line 93: error: expected a "{" + void handleDGCheckIn( + MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 29: + error: identifier "BUTTON_SELF_TEST_STATE_START" is undefined + + BUTTON_SELF_TEST_STATE_START = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 30: + error: identifier "BUTTON_SELF_TEST_STATE_IN_PROGRESS" is + undefined + BUTTON_SELF_TEST_STATE_IN_PROGRESS, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/Buttons.c", line + 31: + error: identifier "BUTTON_SELF_TEST_STATE_COMPLETE" is + undefined + BUTTON_SELF_TEST_STATE_COMPLETE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 +TIME: 2020-01-09 16:11:15 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG + Opening Environment + Could not open environment 'BUTTONS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:11:16 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env" + Initializing search list + Creating the Environment Directory Creating Environment "COMM" Unit 8 (not-stubbed): User Defined Globals Parsing @@ -2931,131 +2722,158 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-11 09:45:57 +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:11:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 + Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp (I) @LINE: 24 + >>> Processing Test Case: clearSCI1CommErrors_NominalPath +(S) @LINE: 29 + >>> Processed Test Case: clearSCI1CommErrors_NominalPath +(I) @LINE: 37 >>> Processing Test Case: clearSCI1DMAReceiveInterrupt -(S) @LINE: 28 +(S) @LINE: 41 >>> Processed Test Case: clearSCI1DMAReceiveInterrupt -(I) @LINE: 36 +(I) @LINE: 49 >>> Processing Test Case: clearSCI1DMATransmitInterrupt -(S) @LINE: 40 +(S) @LINE: 53 >>> Processed Test Case: clearSCI1DMATransmitInterrupt -(I) @LINE: 48 +(I) @LINE: 61 + >>> Processing Test Case: clearSCI2CommErrors_NominalPath +(S) @LINE: 65 + >>> Processed Test Case: clearSCI2CommErrors_NominalPath +(I) @LINE: 73 >>> Processing Test Case: clearSCI2DMAReceiveInterrupt -(S) @LINE: 52 +(S) @LINE: 77 >>> Processed Test Case: clearSCI2DMAReceiveInterrupt -(I) @LINE: 60 +(I) @LINE: 85 >>> Processing Test Case: clearSCI2DMATransmitInterrupt -(S) @LINE: 64 +(S) @LINE: 89 >>> Processed Test Case: clearSCI2DMATransmitInterrupt -(I) @LINE: 72 +(I) @LINE: 97 >>> Processing Test Case: isCAN1TransmitInProgress_Ch1_8_Busy -(S) @LINE: 77 +(S) @LINE: 102 >>> Processed Test Case: isCAN1TransmitInProgress_Ch1_8_Busy -(I) @LINE: 83 +(I) @LINE: 108 >>> Processing Test Case: isCAN1TransmitInProgress_Ch9_16_Busy -(S) @LINE: 88 +(S) @LINE: 113 >>> Processed Test Case: isCAN1TransmitInProgress_Ch9_16_Busy -(I) @LINE: 94 +(I) @LINE: 119 >>> Processing Test Case: isCAN1TransmitInProgress_InProgress -(S) @LINE: 99 +(S) @LINE: 124 >>> Processed Test Case: isCAN1TransmitInProgress_InProgress -(I) @LINE: 105 +(I) @LINE: 130 >>> Processing Test Case: isCAN1TransmitInProgress_NotBusy -(S) @LINE: 109 +(S) @LINE: 134 >>> Processed Test Case: isCAN1TransmitInProgress_NotBusy -(I) @LINE: 117 +(I) @LINE: 142 >>> Processing Test Case: isSCI1DMATransmitInProgress_DMABusy -(S) @LINE: 123 +(S) @LINE: 148 >>> Processed Test Case: isSCI1DMATransmitInProgress_DMABusy -(I) @LINE: 129 +(I) @LINE: 154 >>> Processing Test Case: isSCI1DMATransmitInProgress_InProgress -(S) @LINE: 136 +(S) @LINE: 161 >>> Processed Test Case: isSCI1DMATransmitInProgress_InProgress -(I) @LINE: 142 +(I) @LINE: 167 >>> Processing Test Case: isSCI1DMATransmitInProgress_NotBusy -(S) @LINE: 148 +(S) @LINE: 173 >>> Processed Test Case: isSCI1DMATransmitInProgress_NotBusy -(I) @LINE: 154 +(I) @LINE: 179 >>> Processing Test Case: isSCI1DMATransmitInProgress_TransmitterBusy -(S) @LINE: 160 +(S) @LINE: 185 >>> Processed Test Case: isSCI1DMATransmitInProgress_TransmitterBusy -(I) @LINE: 168 +(I) @LINE: 193 >>> Processing Test Case: isSCI2DMATransmitInProgress_DMABusy -(S) @LINE: 174 +(S) @LINE: 199 >>> Processed Test Case: isSCI2DMATransmitInProgress_DMABusy -(I) @LINE: 180 +(I) @LINE: 205 >>> Processing Test Case: isSCI2DMATransmitInProgress_NotBusy -(S) @LINE: 186 +(S) @LINE: 211 >>> Processed Test Case: isSCI2DMATransmitInProgress_NotBusy -(I) @LINE: 192 +(I) @LINE: 217 >>> Processing Test Case: isSCI2DMATransmitInProgress_TransmitterBusy -(S) @LINE: 198 +(S) @LINE: 223 >>> Processed Test Case: isSCI2DMATransmitInProgress_TransmitterBusy -(I) @LINE: 206 +(I) @LINE: 231 >>> Processing Test Case: setSCI1DMAReceiveInterrupt -(S) @LINE: 210 +(S) @LINE: 235 >>> Processed Test Case: setSCI1DMAReceiveInterrupt -(I) @LINE: 218 +(I) @LINE: 243 >>> Processing Test Case: setSCI1DMATransmitInterrupt -(S) @LINE: 222 +(S) @LINE: 247 >>> Processed Test Case: setSCI1DMATransmitInterrupt -(I) @LINE: 230 +(I) @LINE: 255 >>> Processing Test Case: setSCI2DMAReceiveInterrupt -(S) @LINE: 234 +(S) @LINE: 259 >>> Processed Test Case: setSCI2DMAReceiveInterrupt -(I) @LINE: 242 +(I) @LINE: 267 >>> Processing Test Case: setSCI2DMATransmitInterrupt -(S) @LINE: 247 +(S) @LINE: 272 >>> Processed Test Case: setSCI2DMATransmitInterrupt -(I) @LINE: 255 +(I) @LINE: 280 >>> Processing Test Case: signalCANXmitsCompleted_NominalPath -(S) @LINE: 258 +(S) @LINE: 283 >>> Processed Test Case: signalCANXmitsCompleted_NominalPath -(I) @LINE: 266 +(I) @LINE: 291 >>> Processing Test Case: signalCANXmitsInitiated_NominalPath -(S) @LINE: 269 +(S) @LINE: 294 >>> Processed Test Case: signalCANXmitsInitiated_NominalPath -(I) @LINE: 277 +(I) @LINE: 302 >>> Processing Test Case: signalSCI1XmitsCompleted_NominalPath -(S) @LINE: 280 +(S) @LINE: 305 >>> Processed Test Case: signalSCI1XmitsCompleted_NominalPath -(I) @LINE: 288 +(I) @LINE: 313 >>> Processing Test Case: signalSCI1XmitsInitiated_NominalPath -(S) @LINE: 291 +(S) @LINE: 316 >>> Processed Test Case: signalSCI1XmitsInitiated_NominalPath -(S) @LINE: 291 +(S) @LINE: 316 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:11:22 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-11 09:45:59 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:11:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3064,186 +2882,202 @@ Running: signalCANXmitsInitiated_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.signalCANXmitsCompleted test cases Running: signalCANXmitsCompleted_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.signalSCI1XmitsInitiated test cases Running: signalSCI1XmitsInitiated_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.signalSCI1XmitsCompleted test cases Running: signalSCI1XmitsCompleted_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.setSCI1DMAReceiveInterrupt test cases Running: setSCI1DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.setSCI1DMATransmitInterrupt test cases Running: setSCI1DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.clearSCI1DMAReceiveInterrupt test cases Running: clearSCI1DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.clearSCI1DMATransmitInterrupt test cases Running: clearSCI1DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.setSCI2DMAReceiveInterrupt test cases Running: setSCI2DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.setSCI2DMATransmitInterrupt test cases Running: setSCI2DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.clearSCI2DMAReceiveInterrupt test cases Running: clearSCI2DMAReceiveInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.clearSCI2DMATransmitInterrupt test cases Running: clearSCI2DMATransmitInterrupt Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete + Running all Comm.clearSCI1CommErrors test cases + Running: clearSCI1CommErrors_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running all Comm.clearSCI2CommErrors test cases + Running: clearSCI2CommErrors_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all Comm.isSCI1DMATransmitInProgress test cases Running: isSCI1DMATransmitInProgress_DMABusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isSCI1DMATransmitInProgress_InProgress Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isSCI1DMATransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isSCI1DMATransmitInProgress_TransmitterBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.isSCI2DMATransmitInProgress test cases Running: isSCI2DMATransmitInProgress_DMABusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isSCI2DMATransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isSCI2DMATransmitInProgress_TransmitterBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Comm.isCAN1TransmitInProgress test cases Running: isCAN1TransmitInProgress_Ch1_8_Busy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isCAN1TransmitInProgress_Ch9_16_Busy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isCAN1TransmitInProgress_InProgress Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: isCAN1TransmitInProgress_NotBusy Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-11 09:46:01 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:11:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env" Initializing search list Creating the Environment Directory Creating Environment "COMMBUFFERS" @@ -3272,23 +3106,26 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-11 09:46:05 +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:11:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -3301,7 +3138,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: InsufficientSpaceForAdd (S) @LINE: 31 @@ -3384,13 +3221,28 @@ >>> Processed Test Case: Switch1To0 (S) @LINE: 513 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:11:30 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-11 09:46:07 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:11:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3399,157 +3251,157 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.addToCommBuffer test cases Running: InsufficientSpaceForAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.getFromCommBuffer test cases Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.peekFromCommBuffer test cases Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: LengthLargerThanContents Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulPeekFromBothBuffers Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulPeekFromInactiveBufferOnly Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.numberOfBytesInCommBuffer test cases Running: InvalidBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.switchDoubleBuffer test cases Running: Switch0To1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: Switch1To0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CommBuffers.getDataFromInactiveBuffer test cases Running: ConsumeAllDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ConsumePortionOfDataInInactiveBuffer Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-11 09:46:08 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:11:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env" Initializing search list Creating the Environment Directory Creating Environment "CPLD" @@ -3579,31 +3431,34 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-11 09:46:13 +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:11:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp (I) @LINE: 24 >>> Processing Test Case: getCPLDOffButton_NominalPath (S) @LINE: 28 @@ -3654,13 +3509,28 @@ >>> Processed Test Case: toggleCPLDWatchdog_NominalPath (S) @LINE: 158 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:11:39 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-11 09:46:14 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:11:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -3669,1072 +3539,215 @@ Running: initCPLD_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.toggleCPLDWatchdog test cases Running: toggleCPLDWatchdog_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.getCPLDWatchdogExpired test cases Running: getCPLDWatchdogExpired_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.setCPLDLampGreen test cases Running: setCPLDLampGreen_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setCPLDLampGreen_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.setCPLDLampBlue test cases Running: setCPLDLampBlue_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setCPLDLampBlue_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.setCPLDLampRed test cases Running: setCPLDLampRed_Off Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: setCPLDLampRed_On Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.toggleCPLDOffRequest test cases Running: toggleCPLDOffRequest_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.getCPLDOffButton test cases Running: getCPLDOffButton_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all CPLD.getCPLDStopButton test cases Running: getCPLDStopButton_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-11 09:46:16 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 +TIME: 2020-01-09 16:11:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.env" Initializing search list Creating the Environment Directory - Creating Environment "FPGA" + Creating Environment "DIALINFLOW" Unit 8 (not-stubbed): User Defined Globals Parsing Initializing parse data Generating harness code Saving unit data - Parsing FPGA - Unit 9 (tdd-sbf-source): FPGA - Loading stored IL + Parsing DialInFlow + ** ERROR: Full Parse Failed: + DialInFlow.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCo + mmMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 78: + error: identifier "DIAL_IN_PUMP_OFF_STATE" is undefined + + DIAL_IN_PUMP_OFF_STATE = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 79: + error: identifier "DIAL_IN_PUMP_RAMPING_UP_STATE" is + undefined + DIAL_IN_PUMP_RAMPING_UP_STATE, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Controllers/DialInFlow.c", + line 80: + error: identifier "DIAL_IN_PUMP_RAMPING_DOWN_STATE" is + undefined + DIAL_IN_PUMP_RAMPING_DOWN_STATE, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 +TIME: 2020-01-09 16:11:42 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/CCAST_.CFG + Opening Environment + Could not open environment 'DIALINFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 +TIME: 2020-01-09 16:11:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env" + Initializing search list + Creating the Environment Directory + Creating Environment "FPGA" + Unit 8 (not-stubbed): User Defined Globals + Parsing Initializing parse data Generating harness code Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Statement+MC/DC Coverage - Instrumenting file FPGA - Compiling file FPGA - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-11 09:46:20 + Parsing FPGA + ** ERROR: Full Parse Failed: + FPGA.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMess + ages.h", + line 93: error: expected a "{" + void handleDGCheckIn( + MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 33: + error: + identifier "FPGA_STATE_START" is undefined + + FPGA_STATE_START = 0, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 34: + error: + identifier "FPGA_STATE_READ_HEADER" is undefined + + FPGA_STATE_READ_HEADER, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/FPGA.c", line 35: + error: + identifier "FPGA_STATE_RCV_HEADER" is undefined + + FPGA_STATE_RCV_HEADER, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 +TIME: 2020-01-09 16:11:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - 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 500 - Processing script line 650 - Processing script line 750 - Processing script line 900 - Processing script line 1000 - Processing script line 1100 - Processing script line 1200 - Processing script line 1250 - Processing script line 1300 - Processing script line 1350 - Processing script line 1400 - Processing script line 1450 - Processing script line 1550 - Processing script line 1600 - Processing script line 1750 - Processing script line 1800 - Processing script line 1850 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: DataBytePending -(S) @LINE: 33 - >>> Processed Test Case: DataBytePending -(I) @LINE: 39 - >>> Processing Test Case: NoData -(S) @LINE: 47 - >>> Processed Test Case: NoData -(I) @LINE: 55 - >>> Processing Test Case: CommErrorTooManyRetries -(S) @LINE: 68 - >>> Processed Test Case: CommErrorTooManyRetries -(I) @LINE: 74 - >>> Processing Test Case: FailedState -(S) @LINE: 91 - >>> Processed Test Case: FailedState -(I) @LINE: 97 - >>> Processing Test Case: InvalidState -(S) @LINE: 115 - >>> Processed Test Case: InvalidState -(I) @LINE: 121 - >>> Processing Test Case: OutgoingState -(S) @LINE: 138 - >>> Processed Test Case: OutgoingState -(I) @LINE: 144 - >>> Processing Test Case: RcvAllSensorsState -(S) @LINE: 233 - >>> Processed Test Case: RcvAllSensorsState -(I) @LINE: 239 - >>> Processing Test Case: RcvHeaderState -(S) @LINE: 280 - >>> Processed Test Case: RcvHeaderState -(I) @LINE: 286 - >>> Processing Test Case: StartState -(S) @LINE: 303 - >>> Processed Test Case: StartState -(I) @LINE: 311 - >>> Processing Test Case: FailedState -(S) @LINE: 314 - >>> Processed Test Case: FailedState -(I) @LINE: 320 - >>> Processing Test Case: IncomingState -(S) @LINE: 323 - >>> Processed Test Case: IncomingState -(I) @LINE: 329 - >>> Processing Test Case: InvalidState -(S) @LINE: 333 - >>> Processed Test Case: InvalidState -(I) @LINE: 339 - >>> Processing Test Case: ReadHeaderState -(S) @LINE: 378 - >>> Processed Test Case: ReadHeaderState -(I) @LINE: 384 - >>> Processing Test Case: WriteAllActuatorsState -(S) @LINE: 423 - >>> Processed Test Case: WriteAllActuatorsState -(I) @LINE: 431 - >>> Processing Test Case: TestFailed -(S) @LINE: 437 - >>> Processed Test Case: TestFailed -(I) @LINE: 443 - >>> Processing Test Case: TestPassed -(S) @LINE: 446 - >>> Processed Test Case: TestPassed -(I) @LINE: 454 - >>> Processing Test Case: getFPGABloodFlow_NominalPath -(S) @LINE: 457 - >>> Processed Test Case: getFPGABloodFlow_NominalPath -(I) @LINE: 465 - >>> Processing Test Case: getFPGADialysateFlow_NominalPath -(S) @LINE: 468 - >>> Processed Test Case: getFPGADialysateFlow_NominalPath -(I) @LINE: 476 - >>> Processing Test Case: NominalPath -(S) @LINE: 479 - >>> Processed Test Case: NominalPath -(I) @LINE: 487 - >>> Processing Test Case: NominalPath -(S) @LINE: 490 - >>> Processed Test Case: NominalPath -(I) @LINE: 498 - >>> Processing Test Case: NominalPath -(S) @LINE: 501 - >>> Processed Test Case: NominalPath -(I) @LINE: 509 - >>> Processing Test Case: NominalCase -(S) @LINE: 546 - >>> Processed Test Case: NominalCase -(I) @LINE: 554 - >>> Processing Test Case: BadCRC -(E) Errors from previous script import(s) - >>> (E) @LINE: 560 TEST.VALUE:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 561 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 562 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 563 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 564 TEST.VALUE:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 565 TEST.VALUE:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 566 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 567 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 568 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 - >>> (E) @LINE: 574 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.bloodLeak:0x0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 575 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 576 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 577 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 578 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 579 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 580 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 581 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 582 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 -(S) @LINE: 685 - >>> Processed Test Case: BadCRC -(I) @LINE: 691 - >>> Processing Test Case: NAKResponse -(E) Errors from previous script import(s) - >>> (E) @LINE: 598 TEST.VALUE:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 599 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 600 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 601 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 602 TEST.VALUE:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 603 TEST.VALUE:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 604 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 605 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 606 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 - >>> (E) @LINE: 611 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 612 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 613 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 614 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 615 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 616 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 617 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 618 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 619 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 -(S) @LINE: 760 - >>> Processed Test Case: NAKResponse -(I) @LINE: 766 - >>> Processing Test Case: NoResponseReceived -(E) Errors from previous script import(s) - >>> (E) @LINE: 633 TEST.VALUE:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 634 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 635 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 636 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 637 TEST.VALUE:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 638 TEST.VALUE:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 639 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 640 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 641 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 - >>> (E) @LINE: 646 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 647 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 648 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 649 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 650 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 651 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 652 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 653 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 654 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 -(S) @LINE: 835 - >>> Processed Test Case: NoResponseReceived -(I) @LINE: 841 - >>> Processing Test Case: NoWriteResponseReceived -(E) Errors from previous script import(s) - >>> (E) @LINE: 669 TEST.VALUE:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 670 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 671 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 672 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 673 TEST.VALUE:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 674 TEST.VALUE:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 675 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 676 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 677 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 - >>> (E) @LINE: 682 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 683 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 684 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 685 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 686 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 687 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 688 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 689 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 690 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 -(S) @LINE: 910 - >>> Processed Test Case: NoWriteResponseReceived -(I) @LINE: 916 - >>> Processing Test Case: NominalPath -(E) Errors from previous script import(s) - >>> (E) @LINE: 740 TEST.VALUE:FPGA.<>.fpgaSensorReadings.bloodLeak:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 741 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 742 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2b:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 743 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 744 TEST.VALUE:FPGA.<>.fpgaSensorReadings.venousPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 745 TEST.VALUE:FPGA.<>.fpgaSensorReadings.arterialPressure:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 746 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc1a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 747 TEST.VALUE:FPGA.<>.fpgaSensorReadings.adc2a:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 748 TEST.VALUE:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 - >>> (E) @LINE: 753 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.bloodLeak:0x201 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: bloodLeak - >>> (E) @LINE: 754 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1b:0x6050403 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1b - >>> (E) @LINE: 755 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2b:0x90807 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2b - >>> (E) @LINE: 756 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp1:0x4030201 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp1 - >>> (E) @LINE: 757 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.venousPressure:0x8070605 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: venousPressure - >>> (E) @LINE: 758 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.arterialPressure:0x2010009 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: arterialPressure - >>> (E) @LINE: 759 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc1a:0x6050403 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc1a - >>> (E) @LINE: 760 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.adc2a:0x90807 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: adc2a - >>> (E) @LINE: 761 TEST.EXPECTED:FPGA.<>.fpgaSensorReadings.dialysateTemp2:0x4030201 - >>> >>> Expected a field name from the record type FPGA_SENSORS_T - >>> >>> Read: dialysateTemp2 -(S) @LINE: 1044 - >>> Processed Test Case: NominalPath -(I) @LINE: 1052 - >>> Processing Test Case: BadCRC -(S) @LINE: 1081 - >>> Processed Test Case: BadCRC -(I) @LINE: 1087 - >>> Processing Test Case: NAKResponse -(S) @LINE: 1114 - >>> Processed Test Case: NAKResponse -(I) @LINE: 1120 - >>> Processing Test Case: NoResponseReceived -(S) @LINE: 1147 - >>> Processed Test Case: NoResponseReceived -(I) @LINE: 1153 - >>> Processing Test Case: NominalCase -(S) @LINE: 1182 - >>> Processed Test Case: NominalCase -(I) @LINE: 1190 - >>> Processing Test Case: NominalPath -(S) @LINE: 1233 - >>> Processed Test Case: NominalPath -(I) @LINE: 1241 - >>> Processing Test Case: NominalPath -(S) @LINE: 1459 - >>> Processed Test Case: NominalPath -(I) @LINE: 1467 - >>> Processing Test Case: NominalPath -(S) @LINE: 1482 - >>> Processed Test Case: NominalPath -(I) @LINE: 1490 - >>> Processing Test Case: NominalPath -(S) @LINE: 1494 - >>> Processed Test Case: NominalPath -(I) @LINE: 1502 - >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1506 - >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1512 - >>> Processing Test Case: NominalPath -(S) @LINE: 1516 - >>> Processed Test Case: NominalPath -(I) @LINE: 1524 - >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1528 - >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1534 - >>> Processing Test Case: NominalPath -(S) @LINE: 1538 - >>> Processed Test Case: NominalPath -(I) @LINE: 1546 - >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1550 - >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1556 - >>> Processing Test Case: NominalPath -(S) @LINE: 1560 - >>> Processed Test Case: NominalPath -(I) @LINE: 1568 - >>> Processing Test Case: LengthTooLarge -(S) @LINE: 1572 - >>> Processed Test Case: LengthTooLarge -(I) @LINE: 1578 - >>> Processing Test Case: NominalPath -(S) @LINE: 1582 - >>> Processed Test Case: NominalPath -(I) @LINE: 1590 - >>> Processing Test Case: BulkWriteAndReadInProgressAfterWrite -(S) @LINE: 1607 - >>> Processed Test Case: BulkWriteAndReadInProgressAfterWrite -(I) @LINE: 1613 - >>> Processing Test Case: NothingInProgress -(S) @LINE: 1628 - >>> Processed Test Case: NothingInProgress -(I) @LINE: 1634 - >>> Processing Test Case: ReadCmdInProgress -(S) @LINE: 1649 - >>> Processed Test Case: ReadCmdInProgress -(I) @LINE: 1655 - >>> Processing Test Case: WriteCmdInProgress -(S) @LINE: 1670 - >>> Processed Test Case: WriteCmdInProgress -(I) @LINE: 1678 - >>> Processing Test Case: NominalPath -(S) @LINE: 1693 - >>> Processed Test Case: NominalPath -(I) @LINE: 1701 - >>> Processing Test Case: NominalPath -(S) @LINE: 1739 - >>> Processed Test Case: NominalPath -(I) @LINE: 1747 - >>> Processing Test Case: NominalPath -(S) @LINE: 1785 - >>> Processed Test Case: NominalPath -(I) @LINE: 1793 - >>> Processing Test Case: NominalPath -(S) @LINE: 1831 - >>> Processed Test Case: NominalPath -(I) @LINE: 1839 - >>> Processing Test Case: NominalPath -(S) @LINE: 1877 - >>> Processed Test Case: NominalPath -(S) @LINE: 1877 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-11 09:46:22 + Could not open environment 'FPGA' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:11:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all FPGA.initFPGA test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.resetFPGACommFlags test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.signalFPGAReceiptCompleted test cases - Running: BulkWriteAndReadInProgressAfterWrite - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NothingInProgress - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReadCmdInProgress - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: WriteCmdInProgress - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.signalFPGATransmitCompleted test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.execFPGAIn test cases - Running: CommErrorTooManyRetries - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: FailedState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OutgoingState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: RcvAllSensorsState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: RcvHeaderState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: StartState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.execFPGAOut test cases - Running: FailedState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: IncomingState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReadHeaderState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: WriteAllActuatorsState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.handleFPGAReadHeaderState test cases - Running: NominalCase - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.handleFPGAReceiveHeaderState test cases - Running: BadCRC - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NAKResponse - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoResponseReceived - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalCase - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.handleFPGAWriteAllActuatorsState test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.handleFPGAReceiveAllSensorsState test cases - Running: BadCRC - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NAKResponse - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoResponseReceived - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoWriteResponseReceived - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.execFPGATest test cases - Running: TestFailed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestPassed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.setupDMAForWriteCmd test cases - Running: LengthTooLarge - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.startDMAWriteCmd test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.setupDMAForWriteResp test cases - Running: LengthTooLarge - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.startDMAReceiptOfWriteResp test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.setupDMAForReadCmd test cases - Running: LengthTooLarge - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.startDMAReadCmd test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.setupDMAForReadResp test cases - Running: LengthTooLarge - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.startDMAReceiptOfReadResp test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.getFPGAId test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.getFPGARev test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.getFPGAStatus test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.setFPGAControl test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.getFPGABloodFlow test cases - Running: getFPGABloodFlow_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.getFPGADialysateFlow test cases - Running: getFPGADialysateFlow_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all FPGA.consumeUnexpectedData test cases - Running: DataBytePending - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoData - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-11 09:46:25 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env" Initializing search list Creating the Environment Directory Creating Environment "INTERRUPTS" @@ -4764,23 +3777,26 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-11 09:46:30 +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:11:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 200 Processing script line 250 @@ -4789,7 +3805,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: canErrorNotification_BusOff (S) @LINE: 34 @@ -4872,13 +3888,28 @@ >>> Processed Test Case: OverrunError_SCI2 (S) @LINE: 309 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:11:53 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-11 09:46:31 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:11:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -4887,1740 +3918,784 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Interrupts.canMessageNotification test cases Running: InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Interrupts.canErrorNotification test cases Running: canErrorNotification_BusOff Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_BusPassive Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_BusWarning Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_InvalidCANNode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_Other Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: canErrorNotification_ParityError Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Interrupts.sciNotification test cases Running: FramingError_SCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: FramingError_SCI2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidSCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OverrunError_SCI Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OverrunError_SCI2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Interrupts.dmaGroupANotification test cases Running: DMAChannel0 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: DMAChannel1 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: DMAChannel2 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: DMAChannel3 Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidChannel Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: UnexpectedInterruptType Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-11 09:46:33 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 +TIME: 2020-01-09 16:11:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env" Initializing search list Creating the Environment Directory Creating Environment "INT_ALARMLAMP" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ - File: sys_main.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ File: AlarmLamp.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ - File: ModeFault.c - File: ModeInitPOST.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: AlarmMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ - File: TaskGeneral.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing AlarmLamp - Parsing ModeFault - Parsing ModeInitPOST - Parsing SystemCommMessages - Parsing TaskGeneral - Parsing sys_main - Unit 9 (stub-by-function): AlarmLamp - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): ModeFault - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): ModeInitPOST - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): TaskGeneral - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 15 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file AlarmLamp - Compiling file AlarmLamp - Instrumenting file ModeFault - Compiling file ModeFault - Instrumenting file ModeInitPOST - Compiling file ModeInitPOST - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file TaskGeneral - Compiling file TaskGeneral - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-11 09:46:48 + ====================================================================== + The filename 'AlarmLamp' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmLamp.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 +TIME: 2020-01-09 16:12:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: requestAlarmLampPattern -(S) @LINE: 29 - >>> Processed Test Case: requestAlarmLampPattern -(I) @LINE: 39 - >>> Processing Test Case: execAlarmLampTest -(S) @LINE: 43 - >>> Processed Test Case: execAlarmLampTest -(I) @LINE: 53 - >>> Processing Test Case: testResetCurrentLampPatternOverride -(S) @LINE: 73 - >>> Processed Test Case: testResetCurrentLampPatternOverride -(I) @LINE: 79 - >>> Processing Test Case: testSetCurrentLampPatternOverride -(S) @LINE: 98 - >>> Processed Test Case: testSetCurrentLampPatternOverride -(I) @LINE: 108 - >>> Processing Test Case: execAlarmLamp -(S) @LINE: 118 - >>> Processed Test Case: execAlarmLamp -(I) @LINE: 128 - >>> Processing Test Case: initAlarmLamp -(S) @LINE: 139 - >>> Processed Test Case: initAlarmLamp -(S) @LINE: 139 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-11 09:46:50 + Could not open environment 'INT_ALARMLAMP' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 +TIME: 2020-01-09 16:12:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all ModeFault.transitionToFaultMode test cases - Running: requestAlarmLampPattern - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all ModeInitPOST.execInitAndPOSTMode test cases - Running: execAlarmLampTest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestAlarmLampPatternOverrideRequest test cases - Running: testResetCurrentLampPatternOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetCurrentLampPatternOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskGeneral.taskGeneral test cases - Running: execAlarmLamp - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initAlarmLamp - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-11 09:46:51 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env" Initializing search list Creating the Environment Directory Creating Environment "INT_ALARMMGMT" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ File: BloodFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: AlarmMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing BloodFlow - Parsing AlarmMgmt - Parsing TaskGeneral - Parsing sys_main - Unit 9 (stub-by-function): BloodFlow - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): AlarmMgmt - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): TaskGeneral - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Inserting Environment User Code - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file BloodFlow - Compiling file BloodFlow - Instrumenting file AlarmMgmt - Compiling file AlarmMgmt - Instrumenting file TaskGeneral - Compiling file TaskGeneral - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-11 09:47:03 + ====================================================================== + The filename 'AlarmMgmt' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmMgmt.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 +TIME: 2020-01-09 16:12:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 100 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: activateAlarm2Data -(S) @LINE: 32 - >>> Processed Test Case: activateAlarm2Data -(I) @LINE: 40 - >>> Processing Test Case: activateAlarm1Data -(S) @LINE: 48 - >>> Processed Test Case: activateAlarm1Data -(I) @LINE: 58 - >>> Processing Test Case: execAlarmMgmt -(S) @LINE: 65 - >>> Processed Test Case: execAlarmMgmt -(I) @LINE: 75 - >>> Processing Test Case: initAlarmMgmt -(S) @LINE: 106 - >>> Processed Test Case: initAlarmMgmt -(S) @LINE: 106 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-11 09:47:04 + Could not open environment 'INT_ALARMMGMT' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 +TIME: 2020-01-09 16:12:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all BloodFlow.execBloodFlowMonitor test cases - Running: activateAlarm1Data - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all BloodFlow.execBloodFlowController test cases - Running: activateAlarm2Data - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskGeneral.taskGeneral test cases - Running: execAlarmMgmt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initAlarmMgmt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-11 09:47:05 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env" Initializing search list Creating the Environment Directory Creating Environment "INT_BLOODFLOW" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ - File: BloodFlow.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: BloodFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) - File: TaskPriority.c + File: TaskPriority.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing BloodFlow - Parsing TaskGeneral - Parsing TaskPriority - Parsing sys_main - Unit 9 (stub-by-function): BloodFlow - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): TaskGeneral - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): TaskPriority - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Inserting Environment User Code - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file BloodFlow - Compiling file BloodFlow - Instrumenting file TaskGeneral - Compiling file TaskGeneral - Instrumenting file TaskPriority - Compiling file TaskPriority - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-11 09:47:14 + ====================================================================== + The filename 'BloodFlow' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: BloodFlow.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 +TIME: 2020-01-09 16:12:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: execBloodFlowController -(S) @LINE: 32 - >>> Processed Test Case: execBloodFlowController -(I) @LINE: 42 - >>> Processing Test Case: execBloodFlowMonitor -(S) @LINE: 57 - >>> Processed Test Case: execBloodFlowMonitor -(I) @LINE: 67 - >>> Processing Test Case: initBloodFlow -(S) @LINE: 79 - >>> Processed Test Case: initBloodFlow -(S) @LINE: 79 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-11 09:47:16 + Could not open environment 'INT_BLOODFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 +TIME: 2020-01-09 16:12:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all TaskGeneral.taskGeneral test cases - Running: execBloodFlowController - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskPriority.taskPriority test cases - Running: execBloodFlowMonitor - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initBloodFlow - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-11 09:47:17 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_BUTTONS" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: SystemCommMessages.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing Buttons - Parsing ModeInitPOST - Parsing SystemCommMessages - Parsing TaskPriority - Parsing sys_main - Unit 9 (stub-by-function): Buttons - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): ModeInitPOST - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): TaskPriority - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file Buttons - Compiling file Buttons - Instrumenting file ModeInitPOST - Compiling file ModeInitPOST - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file TaskPriority - Compiling file TaskPriority - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-11 09:47:30 + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 +TIME: 2020-01-09 16:12:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 100 - Processing script line 150 - Processing script line 200 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: execStuckButtonTest -(S) @LINE: 31 - >>> Processed Test Case: execStuckButtonTest -(I) @LINE: 41 - >>> Processing Test Case: userConfirmOffButton -(S) @LINE: 49 - >>> Processed Test Case: userConfirmOffButton -(I) @LINE: 57 - >>> Processing Test Case: testResetOffButtonStateOverride -(S) @LINE: 77 - >>> Processed Test Case: testResetOffButtonStateOverride -(I) @LINE: 83 - >>> Processing Test Case: testSetOffButtonStateOverride -(S) @LINE: 102 - >>> Processed Test Case: testSetOffButtonStateOverride -(I) @LINE: 110 - >>> Processing Test Case: testResetStopButtonStateOverride -(S) @LINE: 130 - >>> Processed Test Case: testResetStopButtonStateOverride -(I) @LINE: 136 - >>> Processing Test Case: testSetStopButtonStateOverride -(S) @LINE: 155 - >>> Processed Test Case: testSetStopButtonStateOverride -(I) @LINE: 165 - >>> Processing Test Case: execButtons -(S) @LINE: 182 - >>> Processed Test Case: execButtons -(I) @LINE: 192 - >>> Processing Test Case: initButtons -(S) @LINE: 211 - >>> Processed Test Case: initButtons -(S) @LINE: 211 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-11 09:47:31 + Could not open environment 'INT_BUTTONS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 +TIME: 2020-01-09 16:12:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all ModeInitPOST.execInitAndPOSTMode test cases - Running: execStuckButtonTest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleOffButtonConfirmMsgFromUI test cases - Running: userConfirmOffButton - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestOffButtonStateOverrideRequest test cases - Running: testResetOffButtonStateOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetOffButtonStateOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestStopButtonStateOverrideRequest test cases - Running: testResetStopButtonStateOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetStopButtonStateOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskPriority.taskPriority test cases - Running: execButtons - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initButtons - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-11 09:47:33 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_COMMBUFFERS" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: CommBuffers.c - File: MsgQueues.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: CommBuffers.c (using cached data) + File: MsgQueues.c (using cached data) File: SystemComm.c - File: SystemCommMessages.c (using cached data) + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing CommBuffers - Parsing MsgQueues - Parsing SystemComm - Parsing SystemCommMessages - Parsing sys_main - Unit 9 (stub-by-function): CommBuffers - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): MsgQueues - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): SystemComm - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file CommBuffers - Compiling file CommBuffers - Instrumenting file MsgQueues - Compiling file MsgQueues - Instrumenting file SystemComm - Compiling file SystemComm - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-11 09:47:44 + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 +TIME: 2020-01-09 16:12:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 100 - Processing script line 150 - Processing script line 200 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: peekAndgetFromAndNumberOfBytesInCommBuffer -(S) @LINE: 56 - >>> Processed Test Case: peekAndgetFromAndNumberOfBytesInCommBuffer -(I) @LINE: 66 - >>> Processing Test Case: addToCommBuffer -(S) @LINE: 89 - >>> Processed Test Case: addToCommBuffer -(I) @LINE: 99 - >>> Processing Test Case: initCommBuffers -(S) @LINE: 202 - >>> Processed Test Case: initCommBuffers -(S) @LINE: 202 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-11 09:47:45 + Could not open environment 'INT_COMMBUFFERS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2020-01-09 16:12:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all SystemComm.consumeBufferPaddingBeforeSync test cases - Running: peekAndgetFromAndNumberOfBytesInCommBuffer - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.sendOffButtonMsgToUI test cases - Running: addToCommBuffer - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initCommBuffers - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2019-12-11 09:47:46 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env" Initializing search list Creating the Environment Directory Creating Environment "INT_CPLD" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ - File: AlarmLamp.c (using cached data) - File: Buttons.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: AlarmLamp.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Drivers/ - File: CPLD.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Drivers/ + File: CPLD.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: WatchdogMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing AlarmLamp - Parsing Buttons - Parsing CPLD - Parsing WatchdogMgmt - Parsing sys_main - Unit 9 (stub-by-function): AlarmLamp - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): Buttons - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): CPLD - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): WatchdogMgmt - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Inserting Environment User Code - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file AlarmLamp - Compiling file AlarmLamp - Instrumenting file Buttons - Compiling file Buttons - Instrumenting file CPLD - Compiling file CPLD - Instrumenting file WatchdogMgmt - Compiling file WatchdogMgmt - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2019-12-11 09:48:00 + ====================================================================== + The filename 'AlarmLamp' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: AlarmLamp.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2020-01-09 16:12:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: setCPLDLampGreen -(S) @LINE: 34 - >>> Processed Test Case: setCPLDLampGreen -(I) @LINE: 40 - >>> Processing Test Case: setCPLDLampRed -(S) @LINE: 47 - >>> Processed Test Case: setCPLDLampRed -(I) @LINE: 57 - >>> Processing Test Case: getCPLDOffAndStopButtons -(S) @LINE: 60 - >>> Processed Test Case: getCPLDOffAndStopButtons -(I) @LINE: 68 - >>> Processing Test Case: toggleCPLDOffRequest -(S) @LINE: 76 - >>> Processed Test Case: toggleCPLDOffRequest -(I) @LINE: 86 - >>> Processing Test Case: getCPLDWatchdogExpired -(S) @LINE: 89 - >>> Processed Test Case: getCPLDWatchdogExpired -(I) @LINE: 97 - >>> Processing Test Case: toggleCPLDWatchdog -(S) @LINE: 99 - >>> Processed Test Case: toggleCPLDWatchdog -(I) @LINE: 109 - >>> Processing Test Case: initCPLD -(S) @LINE: 115 - >>> Processed Test Case: initCPLD -(S) @LINE: 115 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2019-12-11 09:48:01 + Could not open environment 'INT_CPLD' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 +TIME: 2020-01-09 16:12:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +**Environment Builder Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.env" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_DIALINFLOW" + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ + File: sys_main.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: DialInFlow.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ + File: ModeInitPOST.c (using cached data) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskGeneral.c (using cached data) + File: TaskPriority.c (using cached data) + QuickParse Utility Completed + ====================================================================== + The filename 'DialInFlow' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: DialInFlow.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 +TIME: 2020-01-09 16:12:30 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/CCAST_.CFG Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all AlarmLamp.execAlarmLampTest test cases - Running: setCPLDLampGreen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: setCPLDLampRed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.execButtons test cases - Running: getCPLDOffAndStopButtons - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.handleOffButtonProcessing test cases - Running: toggleCPLDOffRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.execWatchdogMgmt test cases - Running: getCPLDWatchdogExpired - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.petWatchdog test cases - Running: toggleCPLDWatchdog - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initCPLD - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-11 09:48:02 + Could not open environment 'INT_DIALINFLOW' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 +TIME: 2020-01-09 16:12:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env" Initializing search list Creating the Environment Directory Creating Environment "INT_FPGA" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: FPGA.c - File: Interrupts.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Interrupts.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskPriority.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing ModeInitPOST - Parsing FPGA - Parsing Interrupts - Parsing TaskPriority - Parsing sys_main - Unit 9 (stub-by-function): ModeInitPOST - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): FPGA - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): Interrupts - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): TaskPriority - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file ModeInitPOST - Compiling file ModeInitPOST - Instrumenting file FPGA - Compiling file FPGA - Instrumenting file Interrupts - Compiling file Interrupts - Instrumenting file TaskPriority - Compiling file TaskPriority - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-11 09:48:15 + ====================================================================== + The filename 'FPGA' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: FPGA.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 +TIME: 2020-01-09 16:12:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 100 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: signalFPGAReceiptCompleted -(S) @LINE: 33 - >>> Processed Test Case: signalFPGAReceiptCompleted -(I) @LINE: 39 - >>> Processing Test Case: signalFPGATransmitCompleted -(S) @LINE: 44 - >>> Processed Test Case: signalFPGATransmitCompleted -(I) @LINE: 54 - >>> Processing Test Case: execFPGATest -(S) @LINE: 63 - >>> Processed Test Case: execFPGATest -(I) @LINE: 73 - >>> Processing Test Case: execFPGAInAndOut -(S) @LINE: 77 - >>> Processed Test Case: execFPGAInAndOut -(I) @LINE: 87 - >>> Processing Test Case: initFPGA -(S) @LINE: 134 - >>> Processed Test Case: initFPGA -(S) @LINE: 134 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-11 09:48:16 + Could not open environment 'INT_FPGA' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 +TIME: 2020-01-09 16:12:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all ModeInitPOST.execInitAndPOSTMode test cases - Running: execFPGATest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Interrupts.dmaGroupANotification test cases - Running: signalFPGAReceiptCompleted - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: signalFPGATransmitCompleted - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskPriority.taskPriority test cases - Running: execFPGAInAndOut - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initFPGA - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-11 09:48:17 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_MSGQUEUES" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: MsgQueues.c (using cached data) - File: SystemComm.c (using cached data) - File: SystemCommMessages.c (using cached data) + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing CommBuffers - Parsing MsgQueues - Parsing SystemComm - Parsing SystemCommMessages - Parsing sys_main - Unit 9 (stub-by-function): CommBuffers - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): MsgQueues - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): SystemComm - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file CommBuffers - Compiling file CommBuffers - Instrumenting file MsgQueues - Compiling file MsgQueues - Instrumenting file SystemComm - Compiling file SystemComm - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-11 09:48:27 + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 +TIME: 2020-01-09 16:12:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 100 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: addToMsgQueue -(S) @LINE: 51 - >>> Processed Test Case: addToMsgQueue -(I) @LINE: 59 - >>> Processing Test Case: getFromMsgQueue -(S) @LINE: 70 - >>> Processed Test Case: getFromMsgQueue -(I) @LINE: 80 - >>> Processing Test Case: blankMessage -(S) @LINE: 101 - >>> Processed Test Case: blankMessage -(I) @LINE: 111 - >>> Processing Test Case: initMsgQueues -(S) @LINE: 118 - >>> Processed Test Case: initMsgQueues -(S) @LINE: 118 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-11 09:48:29 + Could not open environment 'INT_MSGQUEUES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 +TIME: 2020-01-09 16:12:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all SystemComm.processIncomingData test cases - Running: addToMsgQueue - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.processReceivedMessages test cases - Running: getFromMsgQueue - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.sendOffButtonMsgToUI test cases - Running: blankMessage - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initMsgQueues - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-11 09:48:30 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_OPERATIONMODES" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ - File: Buttons.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) - File: OperationModes.c + File: OperationModes.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing Buttons - Parsing ModeInitPOST - Parsing OperationModes - Parsing TaskGeneral - Parsing sys_main - Unit 9 (stub-by-function): Buttons - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): ModeInitPOST - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): OperationModes - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): TaskGeneral - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file Buttons - Compiling file Buttons - Instrumenting file ModeInitPOST - Compiling file ModeInitPOST - Instrumenting file OperationModes - Compiling file OperationModes - Instrumenting file TaskGeneral - Compiling file TaskGeneral - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-11 09:48:41 + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 +TIME: 2020-01-09 16:12:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: getCurrentOperationMode -(S) @LINE: 30 - >>> Processed Test Case: getCurrentOperationMode -(I) @LINE: 40 - >>> Processing Test Case: requestNewOperationMode -(S) @LINE: 50 - >>> Processed Test Case: requestNewOperationMode -(I) @LINE: 60 - >>> Processing Test Case: execOperationModes -(S) @LINE: 65 - >>> Processed Test Case: execOperationModes -(I) @LINE: 75 - >>> Processing Test Case: initOperationModes -(S) @LINE: 84 - >>> Processed Test Case: initOperationModes -(S) @LINE: 84 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-11 09:48:43 + Could not open environment 'INT_OPERATIONMODES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:12:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all Buttons.userConfirmOffButton test cases - Running: getCurrentOperationMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all ModeInitPOST.execInitAndPOSTMode test cases - Running: requestNewOperationMode - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskGeneral.taskGeneral test cases - Running: execOperationModes - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initOperationModes - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2019-12-11 09:48:45 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env" Initializing search list Creating the Environment Directory Creating Environment "INT_SAFETYSHUTDOWN" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Drivers/ - File: SafetyShutdown.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Drivers/ + File: SafetyShutdown.c (using cached data) QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -6655,42 +4730,60 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2019-12-11 09:48:53 +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:12:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp (I) @LINE: 24 >>> Processing Test Case: initSafetyShutdown (S) @LINE: 27 >>> Processed Test Case: initSafetyShutdown (S) @LINE: 27 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:12:54 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2019-12-11 09:48:54 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:12:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -6699,869 +4792,317 @@ Running: initSafetyShutdown Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-11 09:48:55 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 +TIME: 2020-01-09 16:12:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env" Initializing search list Creating the Environment Directory Creating Environment "INT_SYSTEMCOMM" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: Interrupts.c (using cached data) File: MsgQueues.c (using cached data) - File: SystemComm.c (using cached data) - File: SystemCommMessages.c (using cached data) + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing CommBuffers - Parsing Interrupts - Parsing MsgQueues - Parsing SystemComm - Parsing SystemCommMessages - Parsing TaskGeneral - Parsing sys_main - Unit 9 (stub-by-function): CommBuffers - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): Interrupts - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): MsgQueues - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): SystemComm - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 15 (stub-by-function): TaskGeneral - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 16 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Inserting Environment User Code - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file CommBuffers - Compiling file CommBuffers - Instrumenting file Interrupts - Compiling file Interrupts - Instrumenting file MsgQueues - Compiling file MsgQueues - Instrumenting file SystemComm - Compiling file SystemComm - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file TaskGeneral - Compiling file TaskGeneral - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-11 09:49:08 + ====================================================================== + The filename 'SystemComm' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: CommBuffers.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 +TIME: 2020-01-09 16:13:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 150 - Processing script line 200 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: handleCANMsgInterrupt -(S) @LINE: 59 - >>> Processed Test Case: handleCANMsgInterrupt -(I) @LINE: 67 - >>> Processing Test Case: handleUARTMsgRecvPacketInterrupt -(S) @LINE: 99 - >>> Processed Test Case: handleUARTMsgRecvPacketInterrupt -(I) @LINE: 105 - >>> Processing Test Case: handleUARTMsgXmitPacketInterrupt -(S) @LINE: 125 - >>> Processed Test Case: handleUARTMsgXmitPacketInterrupt -(I) @LINE: 135 - >>> Processing Test Case: execSystemCommRxAndTx -(S) @LINE: 173 - >>> Processed Test Case: execSystemCommRxAndTx -(I) @LINE: 183 - >>> Processing Test Case: initSystemComm -(S) @LINE: 212 - >>> Processed Test Case: initSystemComm -(S) @LINE: 212 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-11 09:49:09 + Could not open environment 'INT_SYSTEMCOMM' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 +TIME: 2020-01-09 16:13:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all Interrupts.canMessageNotification test cases - Running: handleCANMsgInterrupt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Interrupts.dmaGroupANotification test cases - Running: handleUARTMsgRecvPacketInterrupt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleUARTMsgXmitPacketInterrupt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskGeneral.taskGeneral test cases - Running: execSystemCommRxAndTx - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initSystemComm - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-11 09:49:11 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_SYSTEMCOMMMESSAGES" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ - File: Buttons.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Controllers/ + File: Buttons.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ File: CommBuffers.c (using cached data) File: MsgQueues.c (using cached data) - File: SystemComm.c (using cached data) - File: SystemCommMessages.c (using cached data) + File: SystemComm.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing Buttons - Parsing CommBuffers - Parsing MsgQueues - Parsing SystemComm - Parsing SystemCommMessages - Unit 9 (stub-by-function): Buttons - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): CommBuffers - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): MsgQueues - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): SystemComm - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file Buttons - Compiling file Buttons - Instrumenting file CommBuffers - Compiling file CommBuffers - Instrumenting file MsgQueues - Compiling file MsgQueues - Instrumenting file SystemComm - Compiling file SystemComm - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-11 09:49:22 + ====================================================================== + The filename 'Buttons' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: Buttons.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 +TIME: 2020-01-09 16:13:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 100 - Processing script line 150 - Processing script line 200 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: sendOffButtonMsgToUI -(S) @LINE: 49 - >>> Processed Test Case: sendOffButtonMsgToUI -(I) @LINE: 57 - >>> Processing Test Case: isTestingActivated -(S) @LINE: 61 - >>> Processed Test Case: isTestingActivated -(I) @LINE: 71 - >>> Processing Test Case: handleOffButtonConfirmMsgFromUI -(S) @LINE: 79 - >>> Processed Test Case: handleOffButtonConfirmMsgFromUI -(I) @LINE: 85 - >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest -(S) @LINE: 100 - >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest -(I) @LINE: 106 - >>> Processing Test Case: handleTestHDMessageRequest -(S) @LINE: 130 - >>> Processed Test Case: handleTestHDMessageRequest -(I) @LINE: 136 - >>> Processing Test Case: handleTestOffButtonStateOverrideRequest -(S) @LINE: 155 - >>> Processed Test Case: handleTestOffButtonStateOverrideRequest -(I) @LINE: 161 - >>> Processing Test Case: handleTestStopButtonStateOverrideRequest -(S) @LINE: 180 - >>> Processed Test Case: handleTestStopButtonStateOverrideRequest -(I) @LINE: 186 - >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest -(S) @LINE: 206 - >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest -(I) @LINE: 212 - >>> Processing Test Case: handleTesterLogInRequest -(S) @LINE: 220 - >>> Processed Test Case: handleTesterLogInRequest -(S) @LINE: 220 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-11 09:49:24 + Could not open environment 'INT_SYSTEMCOMMMESSAGES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 +TIME: 2020-01-09 16:13:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all Buttons.handleOffButtonProcessing test cases - Running: sendOffButtonMsgToUI - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all Buttons.testSetOffButtonStateOverride test cases - Running: isTestingActivated - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.processReceivedMessage test cases - Running: handleOffButtonConfirmMsgFromUI - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmLampPatternOverrideRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestHDMessageRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestOffButtonStateOverrideRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestStopButtonStateOverrideRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestWatchdogCheckInStateOverrideRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTesterLogInRequest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-11 09:49:25 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env" Initializing search list Creating the Environment Directory Creating Environment "INT_TIMERS" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: Timers.c - File: WatchdogMgmt.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: Timers.c (using cached data) + File: WatchdogMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ - File: TaskTimer.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ + File: TaskTimer.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing Timers - Parsing WatchdogMgmt - Parsing TaskTimer - Parsing sys_main - Unit 9 (stub-by-function): Timers - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): WatchdogMgmt - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): TaskTimer - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file Timers - Compiling file Timers - Instrumenting file WatchdogMgmt - Compiling file WatchdogMgmt - Instrumenting file TaskTimer - Compiling file TaskTimer - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-11 09:49:34 + ====================================================================== + The filename 'WatchdogMgmt' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: TaskTimer.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 +TIME: 2020-01-09 16:13:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: incMSTimerCount -(S) @LINE: 27 - >>> Processed Test Case: incMSTimerCount -(I) @LINE: 37 - >>> Processing Test Case: didTimeout -(S) @LINE: 49 - >>> Processed Test Case: didTimeout -(I) @LINE: 59 - >>> Processing Test Case: initTimers -(S) @LINE: 62 - >>> Processed Test Case: initTimers -(S) @LINE: 62 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-11 09:49:36 + Could not open environment 'INT_TIMERS' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 +TIME: 2020-01-09 16:13:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all WatchdogMgmt.execWatchdogMgmt test cases - Running: didTimeout - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskTimer.taskTimer test cases - Running: incMSTimerCount - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initTimers - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-11 09:49:37 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env" Initializing search list Creating the Environment Directory Creating Environment "INT_UTILITIES" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: FPGA.c (using cached data) - File: Utilities.c + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: FPGA.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: Utilities.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing FPGA - Parsing Utilities - Unit 9 (stub-by-function): FPGA - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): Utilities - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file FPGA - Compiling file FPGA - Instrumenting file Utilities - Compiling file Utilities - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-11 09:49:43 + ====================================================================== + The filename 'FPGA' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: FPGA.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 +TIME: 2020-01-09 16:13:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: crc16 -(S) @LINE: 38 - >>> Processed Test Case: crc16 -(S) @LINE: 38 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-11 09:49:44 + Could not open environment 'INT_UTILITIES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 +TIME: 2020-01-09 16:13:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all FPGA.handleFPGAReadHeaderState test cases - Running: crc16 - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-11 09:49:45 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env" Initializing search list Creating the Environment Directory Creating Environment "INT_WATCHDOGMGMT" - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/source/ File: sys_main.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: SystemCommMessages.c (using cached data) - File: WatchdogMgmt.c (using cached data) + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Services/ + File: SystemCommMessages.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error + File: WatchdogMgmt.c + -- QuickParse Failed: + "/home/fw/workspace/hdfirmware/firmware/App/Services//SystemCommMessages.h", + line 93: error: expected a "{" + void handleDGCheckIn( MESSAGE_T *message ); + See error log for complete message. + Errors logged to quickparse.error QuickParse Utility Completed - Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ + Calling QuickParse Utility for /home/fw/workspace/hdfirmware/firmware/App/Tasks/ File: TaskBG.c File: TaskTimer.c (using cached data) QuickParse Utility Completed - Unit 8 (not-stubbed): User Defined Globals - Parsing - Initializing parse data - Generating harness code - Saving unit data - Parsing ModeInitPOST - Parsing SystemCommMessages - Parsing WatchdogMgmt - Parsing TaskBG - Parsing TaskTimer - Parsing sys_main - Unit 9 (stub-by-function): ModeInitPOST - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 11 (stub-by-function): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 12 (stub-by-function): WatchdogMgmt - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 13 (stub-by-function): TaskBG - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 14 (stub-by-function): TaskTimer - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Unit 15 (stub-by-function): sys_main - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Function Coverage - Instrumenting file ModeInitPOST - Compiling file ModeInitPOST - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Instrumenting file WatchdogMgmt - Compiling file WatchdogMgmt - Instrumenting file TaskBG - Compiling file TaskBG - Instrumenting file TaskTimer - Compiling file TaskTimer - Instrumenting file sys_main - Compiling file sys_main - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-11 09:49:57 + ====================================================================== + The filename 'SystemCommMessages' could not be found in any of the VCAST.QIK files. Can't proceed without quickparse data for this file. + + Possible Reasons: + * The VectorCAST Compiler Configuration is not correct + use the Options Dialog, C/C++ tab to + configure the compiler commands to match the + compiler that you are using + * The compile command is not available on your + default "PATH", try to issue the compile command + from a command shell window to test if the compiler + is on your path + * You have not provided all of the include search paths + needed by this unit. Use the Options Dialog, + C/C++ tab, to add the required include paths + + ====================================================================== + ** ERROR: Could not find source file: ModeInitPOST.c + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 +TIME: 2020-01-09 16:13:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 150 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: execWatchdogTest -(S) @LINE: 33 - >>> Processed Test Case: execWatchdogTest -(I) @LINE: 43 - >>> Processing Test Case: testResetWatchdogTaskCheckInOverride -(S) @LINE: 68 - >>> Processed Test Case: testResetWatchdogTaskCheckInOverride -(I) @LINE: 74 - >>> Processing Test Case: testSetWatchdogTaskCheckInOverride -(S) @LINE: 99 - >>> Processed Test Case: testSetWatchdogTaskCheckInOverride -(I) @LINE: 109 - >>> Processing Test Case: execWatchdogMgmt -(S) @LINE: 125 - >>> Processed Test Case: execWatchdogMgmt -(I) @LINE: 135 - >>> Processing Test Case: checkInWithWatchdogMgmt -(S) @LINE: 139 - >>> Processed Test Case: checkInWithWatchdogMgmt -(I) @LINE: 149 - >>> Processing Test Case: initWatchdogMgmt -(S) @LINE: 188 - >>> Processed Test Case: initWatchdogMgmt -(S) @LINE: 188 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-11 09:49:59 + Could not open environment 'INT_WATCHDOGMGMT' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 +TIME: 2020-01-09 16:13:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all ModeInitPOST.execInitAndPOSTMode test cases - Running: execWatchdogTest - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest test cases - Running: testResetWatchdogTaskCheckInOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: testSetWatchdogTaskCheckInOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskBG.taskBackground test cases - Running: execWatchdogMgmt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all TaskTimer.taskTimer test cases - Running: checkInWithWatchdogMgmt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all sys_main.initSoftware test cases - Running: initWatchdogMgmt - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-11 09:50:00 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env" Initializing search list Creating the Environment Directory Creating Environment "MSGQUEUES" @@ -7590,18 +5131,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-11 09:50:04 +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 +TIME: 2020-01-09 16:13:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -7617,7 +5158,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: InvalidQueue (S) @LINE: 37 @@ -7689,12 +5230,12 @@ (S) @LINE: 318 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-11 09:50:05 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 +TIME: 2020-01-09 16:13:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -7703,136 +5244,136 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.addToMsgQueue test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAdd Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulAddWithWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.getFromMsgQueue test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGet Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: SuccessfulGetWithWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.isMsgQueueEmpty test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueNotEmpty Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.isMsgQueueFull test cases Running: InvalidQueue Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: QueueNotFull Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.blankMessage test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all MsgQueues.blankMessageInWrapper test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-11 09:50:07 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 +TIME: 2020-01-09 16:13:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env" Initializing search list Creating the Environment Directory Creating Environment "OPERATIONMODES" @@ -7861,32 +5402,31 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-11 09:50:11 +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 +TIME: 2020-01-09 16:13:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File Environment is Open Processing Script File Processing script line 100 Processing script line 150 - Processing script line 250 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: NoRequestPending (S) @LINE: 30 @@ -7953,53 +5493,53 @@ >>> Processed Test Case: ValidModeRequested (I) @LINE: 218 >>> Processing Test Case: FaultMode -(S) @LINE: 220 +(S) @LINE: 225 >>> Processed Test Case: FaultMode -(I) @LINE: 226 +(I) @LINE: 231 >>> Processing Test Case: InitPOSTMode -(S) @LINE: 228 +(S) @LINE: 238 >>> Processed Test Case: InitPOSTMode -(I) @LINE: 234 +(I) @LINE: 244 >>> Processing Test Case: InvalidMode -(S) @LINE: 236 +(S) @LINE: 251 >>> Processed Test Case: InvalidMode -(I) @LINE: 242 +(I) @LINE: 257 >>> Processing Test Case: OpParamsMode -(S) @LINE: 244 +(S) @LINE: 264 >>> Processed Test Case: OpParamsMode -(I) @LINE: 250 +(I) @LINE: 270 >>> Processing Test Case: PostTreatmentMode -(S) @LINE: 252 +(S) @LINE: 277 >>> Processed Test Case: PostTreatmentMode -(I) @LINE: 258 +(I) @LINE: 283 >>> Processing Test Case: PreTreatmentMode -(S) @LINE: 260 +(S) @LINE: 290 >>> Processed Test Case: PreTreatmentMode -(I) @LINE: 266 +(I) @LINE: 296 >>> Processing Test Case: PrescriptionMode -(S) @LINE: 268 +(S) @LINE: 303 >>> Processed Test Case: PrescriptionMode -(I) @LINE: 274 +(I) @LINE: 309 >>> Processing Test Case: ServiceMode -(S) @LINE: 276 +(S) @LINE: 316 >>> Processed Test Case: ServiceMode -(I) @LINE: 282 +(I) @LINE: 322 >>> Processing Test Case: StandbyMode -(S) @LINE: 284 +(S) @LINE: 329 >>> Processed Test Case: StandbyMode -(I) @LINE: 290 +(I) @LINE: 335 >>> Processing Test Case: TreatmentMode -(S) @LINE: 292 +(S) @LINE: 342 >>> Processed Test Case: TreatmentMode -(S) @LINE: 292 +(S) @LINE: 342 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-11 09:50:12 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 +TIME: 2020-01-09 16:13:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8008,198 +5548,198 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.execOperationModes test cases Running: InitPOSTToStandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidModeChange Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OpParamsToPreTreatMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PreTreatToTreatmentMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PrescriptionToOpParamsMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToPrescriptionMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyToServiceMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TreatmentToFaultMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TreatmentToPostTreatMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.requestNewOperationMode test cases Running: InvalidModeRequested Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ValidModeRequested Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.getCurrentOperationMode test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.arbitrateModeRequest test cases Running: NoRequestPending Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: RequestPending Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all OperationModes.transitionToNewOperationMode test cases Running: FaultMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InitPOSTMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: InvalidMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: OpParamsMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PostTreatmentMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PreTreatmentMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: PrescriptionMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ServiceMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: StandbyMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TreatmentMode Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-11 09:50:14 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 +TIME: 2020-01-09 16:13:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env" Initializing search list Creating the Environment Directory Creating Environment "SAFETYSHUTDOWN" @@ -8228,18 +5768,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-11 09:50:17 +COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 +TIME: 2020-01-09 16:13:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -8250,7 +5790,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp (I) @LINE: 24 >>> Processing Test Case: activateSafetyShutdown_NominalPath (S) @LINE: 27 @@ -8262,12 +5802,12 @@ (S) @LINE: 38 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-11 09:50:19 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 +TIME: 2020-01-09 16:13:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -8276,26 +5816,26 @@ Running: initSafetyShutdown_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all SafetyShutdown.activateSafetyShutdown test cases Running: activateSafetyShutdown_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-11 09:50:20 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 +TIME: 2020-01-09 16:13:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env" Initializing search list Creating the Environment Directory Creating Environment "SYSTEMCOMM" @@ -8305,836 +5845,53 @@ Generating harness code Saving unit data Parsing SystemComm - Unit 9 (tdd-sbf-source): SystemComm - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Statement+MC/DC Coverage - Instrumenting file SystemComm - Compiling file SystemComm - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-11 09:50:25 + ** ERROR: Full Parse Failed: + SystemComm.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemCo + mmMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemComm.c", line + 54: + error: expected a ";" + }; + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemComm.c", line + 400: + error: identifier "CAN_OUT_BUFFERS" is undefined + if + ( CAN_OUT_BUFFERS[ i ] == srcCANBox ) + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/SystemComm.c", line + 462: + error: identifier "CAN_OUT_BUFFERS" is undefined + if + ( numberOfBytesInCommBuffer( CAN_OUT_BUFFERS[ i ] ) >= 8 ) + + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 +TIME: 2020-01-09 16:13:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 100 - Processing script line 150 - Processing script line 200 - Processing script line 300 - Processing script line 350 - Processing script line 400 - Processing script line 500 - Processing script line 550 - Processing script line 600 - Processing script line 700 - Processing script line 800 - Processing script line 900 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: checkInFromDG_NominalPath -(S) @LINE: 27 - >>> Processed Test Case: checkInFromDG_NominalPath -(I) @LINE: 35 - >>> Processing Test Case: checkInFromUI_NominalPath -(S) @LINE: 38 - >>> Processed Test Case: checkInFromUI_NominalPath -(I) @LINE: 46 - >>> Processing Test Case: BufferEmpty -(S) @LINE: 50 - >>> Processed Test Case: BufferEmpty -(I) @LINE: 56 - >>> Processing Test Case: RemoveSomePadding -(S) @LINE: 67 - >>> Processed Test Case: RemoveSomePadding -(I) @LINE: 75 - >>> Processing Test Case: OneMessageToProcessInBuffers -(S) @LINE: 104 - >>> Processed Test Case: OneMessageToProcessInBuffers -(I) @LINE: 112 - >>> Processing Test Case: CAN1TransmitterBusy -(S) @LINE: 122 - >>> Processed Test Case: CAN1TransmitterBusy -(I) @LINE: 128 - >>> Processing Test Case: SCI1TransmitterBusy -(S) @LINE: 142 - >>> Processed Test Case: SCI1TransmitterBusy -(I) @LINE: 148 - >>> Processing Test Case: execSystemCommTx_NominalPath -(S) @LINE: 154 - >>> Processed Test Case: execSystemCommTx_NominalPath -(I) @LINE: 162 - >>> Processing Test Case: BufferFound -(S) @LINE: 166 - >>> Processed Test Case: BufferFound -(I) @LINE: 172 - >>> Processing Test Case: NoBufferFound -(S) @LINE: 176 - >>> Processed Test Case: NoBufferFound -(I) @LINE: 184 - >>> Processing Test Case: InvalidCANBox -(S) @LINE: 190 - >>> Processed Test Case: InvalidCANBox -(I) @LINE: 196 - >>> Processing Test Case: NoPacket -(S) @LINE: 200 - >>> Processed Test Case: NoPacket -(I) @LINE: 206 - >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 214 - >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 220 - >>> Processing Test Case: TransmitCANBox -(S) @LINE: 228 - >>> Processed Test Case: TransmitCANBox -(I) @LINE: 234 - >>> Processing Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(S) @LINE: 247 - >>> Processed Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(I) @LINE: 255 - >>> Processing Test Case: NominalPath -(S) @LINE: 261 - >>> Processed Test Case: NominalPath -(I) @LINE: 269 - >>> Processing Test Case: NominalPath -(S) @LINE: 286 - >>> Processed Test Case: NominalPath -(I) @LINE: 292 - >>> Processing Test Case: handleUARTMsgXmitPacketInterrupt_NoMoreMessages -(S) @LINE: 300 - >>> Processed Test Case: handleUARTMsgXmitPacketInterrupt_NoMoreMessages -(I) @LINE: 308 - >>> Processing Test Case: NominalPath -(S) @LINE: 311 - >>> Processed Test Case: NominalPath -(I) @LINE: 319 - >>> Processing Test Case: NominalPath -(E) @LINE: 404 TEST.ATTRIBUTES:SystemComm.<>.pcDMARecvControlRecord.DADD::EXPECTED_BASE=16 - >>> Expected a field name from the record type dmaCTRLPKT - >>> Read: DADD::EXPECTED_BASE=16 -(E) Errors from previous script import(s) - >>> (E) @LINE: 379 TEST.ATTRIBUTES:SystemComm.<>.pcDMARecvControlRecord.DADD::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type dmaCTRLPKT - >>> >>> Read: DADD::EXPECTED_BASE=16 - >>> (E) @LINE: 308 TEST.ATTRIBUTES:SystemComm.<>.pcDMARecvControlRecord.DADD::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type dmaCTRLPKT - >>> >>> Read: DADD::EXPECTED_BASE=16 - >>> (E) @LINE: 303 TEST.ATTRIBUTES:SystemComm.<>.pcDMARecvControlRecord.DADD::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type dmaCTRLPKT - >>> >>> Read: DADD::EXPECTED_BASE=16 -(S) @LINE: 405 - >>> Processed Test Case: NominalPath -(I) @LINE: 413 - >>> Processing Test Case: NotReceiveCANBox -(S) @LINE: 416 - >>> Processed Test Case: NotReceiveCANBox -(I) @LINE: 422 - >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 425 - >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 433 - >>> Processing Test Case: NotTransmitCANBox -(S) @LINE: 436 - >>> Processed Test Case: NotTransmitCANBox -(I) @LINE: 442 - >>> Processing Test Case: TransmitCANBox -(S) @LINE: 445 - >>> Processed Test Case: TransmitCANBox -(I) @LINE: 453 - >>> Processing Test Case: isDGCommunicating_NominalPath -(S) @LINE: 456 - >>> Processed Test Case: isDGCommunicating_NominalPath -(I) @LINE: 464 - >>> Processing Test Case: isUICommunicating_NominalPath -(S) @LINE: 467 - >>> Processed Test Case: isUICommunicating_NominalPath -(I) @LINE: 475 - >>> Processing Test Case: FullMessageFound -(S) @LINE: 487 - >>> Processed Test Case: FullMessageFound -(I) @LINE: 493 - >>> Processing Test Case: NoMessageCouldBeParsed -(S) @LINE: 503 - >>> Processed Test Case: NoMessageCouldBeParsed -(I) @LINE: 509 - >>> Processing Test Case: NoSyncFound -(S) @LINE: 517 - >>> Processed Test Case: NoSyncFound -(I) @LINE: 523 - >>> Processing Test Case: NotEnoughDataForMinMessage -(S) @LINE: 531 - >>> Processed Test Case: NotEnoughDataForMinMessage -(I) @LINE: 539 - >>> Processing Test Case: MoreDataInBufferThanMaxMsgSize -(S) @LINE: 552 - >>> Processed Test Case: MoreDataInBufferThanMaxMsgSize -(I) @LINE: 558 - >>> Processing Test Case: MsgFoundButIncompleteMsgRetrieved -(S) @LINE: 574 - >>> Processed Test Case: MsgFoundButIncompleteMsgRetrieved -(I) @LINE: 580 - >>> Processing Test Case: NoMsgFound -(S) @LINE: 588 - >>> Processed Test Case: NoMsgFound -(I) @LINE: 596 - >>> Processing Test Case: 0001_OffButtonPress -(S) @LINE: 600 - >>> Processed Test Case: 0001_OffButtonPress -(I) @LINE: 606 - >>> Processing Test Case: 0006_DGCheckIn -(S) @LINE: 610 - >>> Processed Test Case: 0006_DGCheckIn -(I) @LINE: 616 - >>> Processing Test Case: 0007_UICheckIn -(S) @LINE: 620 - >>> Processed Test Case: 0007_UICheckIn -(I) @LINE: 626 - >>> Processing Test Case: 8000_TestLogin -(S) @LINE: 635 - >>> Processed Test Case: 8000_TestLogin -(I) @LINE: 641 - >>> Processing Test Case: 8001_HDMessage -(S) @LINE: 649 - >>> Processed Test Case: 8001_HDMessage -(I) @LINE: 655 - >>> Processing Test Case: 8002_OffButtonOverride -(S) @LINE: 663 - >>> Processed Test Case: 8002_OffButtonOverride -(I) @LINE: 669 - >>> Processing Test Case: 8003_StopButtonOverride -(S) @LINE: 677 - >>> Processed Test Case: 8003_StopButtonOverride -(I) @LINE: 683 - >>> Processing Test Case: 8004_AlarmLampPatternOverride -(S) @LINE: 691 - >>> Processed Test Case: 8004_AlarmLampPatternOverride -(I) @LINE: 697 - >>> Processing Test Case: 8005_WatchdogTaskCheckInOverride -(S) @LINE: 705 - >>> Processed Test Case: 8005_WatchdogTaskCheckInOverride -(I) @LINE: 711 - >>> Processing Test Case: 8006_AlarmStateOverride -(E) @LINE: 731 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> Read: msgID::EXPECTED_BASE=16 -(E) Errors from previous script import(s) - >>> (E) @LINE: 703 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> >>> Read: msgID::EXPECTED_BASE=16 - >>> (E) @LINE: 586 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> >>> Read: msgID::EXPECTED_BASE=16 - >>> (E) @LINE: 576 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.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: 732 - >>> Processed Test Case: 8006_AlarmStateOverride -(I) @LINE: 738 - >>> Processing Test Case: 8007_AlarmTimeOverride -(E) @LINE: 758 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> Read: msgID::EXPECTED_BASE=16 -(E) Errors from previous script import(s) - >>> (E) @LINE: 727 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> >>> Read: msgID::EXPECTED_BASE=16 - >>> (E) @LINE: 606 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 - >>> >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> >>> Read: msgID::EXPECTED_BASE=16 - >>> (E) @LINE: 591 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.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: 759 - >>> Processed Test Case: 8007_AlarmTimeOverride -(I) @LINE: 765 - >>> Processing Test Case: 8008_BloodFlowSetPtOverride -(S) @LINE: 774 - >>> Processed Test Case: 8008_BloodFlowSetPtOverride -(I) @LINE: 780 - >>> Processing Test Case: 8009_BloodFlowMeasuredOverride -(S) @LINE: 791 - >>> Processed Test Case: 8009_BloodFlowMeasuredOverride -(I) @LINE: 797 - >>> Processing Test Case: 800A_BloodPumpMCMeasuredSpeedOverride -(S) @LINE: 809 - >>> Processed Test Case: 800A_BloodPumpMCMeasuredSpeedOverride -(I) @LINE: 815 - >>> Processing Test Case: 800B_BloodPumpMCMeasuredCurrentOverride -(S) @LINE: 829 - >>> Processed Test Case: 800B_BloodPumpMCMeasuredCurrentOverride -(I) @LINE: 835 - >>> Processing Test Case: 800C_BloodFlowDataPublishIntervalOverride -(S) @LINE: 849 - >>> Processed Test Case: 800C_BloodFlowDataPublishIntervalOverride -(I) @LINE: 855 - >>> Processing Test Case: 800D_AlarmStatusPublishIntervalOverride -(S) @LINE: 865 - >>> Processed Test Case: 800D_AlarmStatusPublishIntervalOverride -(I) @LINE: 871 - >>> Processing Test Case: InvalidMessageID -(S) @LINE: 878 - >>> Processed Test Case: InvalidMessageID -(I) @LINE: 884 - >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 893 - >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 899 - >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 909 - >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 915 - >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 926 - >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 934 - >>> Processing Test Case: NoMessagesReceived -(S) @LINE: 937 - >>> Processed Test Case: NoMessagesReceived -(I) @LINE: 943 - >>> Processing Test Case: OneMessageReceived -(S) @LINE: 948 - >>> Processed Test Case: OneMessageReceived -(I) @LINE: 956 - >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 959 - >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 965 - >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 972 - >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 978 - >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 984 - >>> Processed Test Case: PendingCANPacketIsPartial -(I) @LINE: 992 - >>> Processing Test Case: GetPacketFail -(S) @LINE: 998 - >>> Processed Test Case: GetPacketFail -(I) @LINE: 1004 - >>> Processing Test Case: NoPacketFound -(S) @LINE: 1007 - >>> Processed Test Case: NoPacketFound -(I) @LINE: 1013 - >>> Processing Test Case: PacketFound -(S) @LINE: 1021 - >>> Processed Test Case: PacketFound -(I) @LINE: 1029 - >>> Processing Test Case: uiCommunicated_NominalPath -(S) @LINE: 1032 - >>> Processed Test Case: uiCommunicated_NominalPath -(S) @LINE: 1032 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-11 09:50:26 + Could not open environment 'SYSTEMCOMM' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 +TIME: 2020-01-09 16:13:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all SystemComm.initSystemComm test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.checkInFromDG test cases - Running: checkInFromDG_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.checkInFromUI test cases - Running: checkInFromUI_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.isDGCommunicating test cases - Running: isDGCommunicating_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.isUICommunicating test cases - Running: isUICommunicating_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.uiCommunicated test cases - Running: uiCommunicated_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.execSystemCommRx test cases - Running: OneMessageToProcessInBuffers - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.execSystemCommTx test cases - Running: CAN1TransmitterBusy - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: SCI1TransmitterBusy - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: execSystemCommTx_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.handleCANMsgInterrupt test cases - Running: InvalidCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoPacket - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReceiveCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TransmitCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleCANMsgInterrupt_NoMoreMessagesToXmit - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.handleUARTMsgRecvPacketInterrupt test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.handleUARTMsgXmitPacketInterrupt test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleUARTMsgXmitPacketInterrupt_NoMoreMessages - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.initUARTAndDMA test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.isCANBoxForXmit test cases - Running: NotTransmitCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TransmitCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.isCANBoxForRecv test cases - Running: NotReceiveCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: ReceiveCANBox - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.findNextHighestPriorityCANPacketToTransmit test cases - Running: BufferFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoBufferFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.transmitNextCANPacket test cases - Running: NoPendingCANPackets - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PendingCANPacketFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PendingCANPacketIsPartial - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.transmitNextUARTPacket test cases - Running: GetPacketFail - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoPacketFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: PacketFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.processIncomingData test cases - Running: MoreDataInBufferThanMaxMsgSize - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: MsgFoundButIncompleteMsgRetrieved - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoMsgFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.consumeBufferPaddingBeforeSync test cases - Running: BufferEmpty - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: RemoveSomePadding - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.parseMessageFromBuffer test cases - Running: FullMessageFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoMessageCouldBeParsed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoSyncFound - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NotEnoughDataForMinMessage - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.processReceivedMessages test cases - Running: NoMessagesReceived - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OneMessageReceived - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemComm.processReceivedMessage test cases - Running: 0001_OffButtonPress - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 0006_DGCheckIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 0007_UICheckIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8000_TestLogin - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8001_HDMessage - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8002_OffButtonOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8003_StopButtonOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8004_AlarmLampPatternOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8005_WatchdogTaskCheckInOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8006_AlarmStateOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8007_AlarmTimeOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8008_BloodFlowSetPtOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 8009_BloodFlowMeasuredOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 800A_BloodPumpMCMeasuredSpeedOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 800B_BloodPumpMCMeasuredCurrentOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 800C_BloodFlowDataPublishIntervalOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: 800D_AlarmStatusPublishIntervalOverride - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidMessageID - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidTestMessageID - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidTestMessageIDInRange - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestWithoutLogin - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-11 09:50:29 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env" Initializing search list Creating the Environment Directory Creating Environment "SYSTEMCOMMMESSAGES" @@ -9144,722 +5901,53 @@ Generating harness code Saving unit data Parsing SystemCommMessages - Unit 9 (tdd-sbf-source): SystemCommMessages - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Statement+MC/DC Coverage - Instrumenting file SystemCommMessages - Compiling file SystemCommMessages - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-11 09:50:33 + ** ERROR: Full Parse Failed: + SystemCommMessages.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/ + SystemCommMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/CommBuffers.h", line + 26: + error: identifier "COMM_BUFFER_NOT_USED" is undefined + + COMM_BUFFER_NOT_USED = 0, // CAN message boxes start at 1 + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/CommBuffers.h", line + 27: + error: identifier "COMM_BUFFER_OUT_CAN_HD_ALARM" is undefined + + COMM_BUFFER_OUT_CAN_HD_ALARM, + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/CommBuffers.h", line + 28: + error: identifier "COMM_BUFFER_IN_CAN_DG_ALARM" is undefined + + COMM_BUFFER_IN_CAN_DG_ALARM, + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 +TIME: 2020-01-09 16:13:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 50 - Processing script line 100 - Processing script line 150 - Processing script line 200 - Processing script line 250 - Processing script line 350 - Processing script line 400 - Processing script line 450 - Processing script line 500 - Processing script line 550 - Processing script line 600 - Processing script line 650 - Processing script line 700 - Processing script line 750 - Processing script line 800 - Processing script line 900 - Processing script line 1000 - Processing script line 1100 - Processing script line 1300 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: broadcastAlarmCleared_NominalPath -(S) @LINE: 38 - >>> Processed Test Case: broadcastAlarmCleared_NominalPath -(I) @LINE: 46 - >>> Processing Test Case: broadcastAlarmStatus_NominalPath -(S) @LINE: 125 - >>> Processed Test Case: broadcastAlarmStatus_NominalPath -(I) @LINE: 133 - >>> Processing Test Case: broadcastAlarmTriggered_NominalPath -(S) @LINE: 167 - >>> Processed Test Case: broadcastAlarmTriggered_NominalPath -(I) @LINE: 175 - >>> Processing Test Case: broadcastBloodFlowData_NominalPath -(S) @LINE: 214 - >>> Processed Test Case: broadcastBloodFlowData_NominalPath -(I) @LINE: 222 - >>> Processing Test Case: handleDGCheckIn_NominalPath -(S) @LINE: 228 - >>> Processed Test Case: handleDGCheckIn_NominalPath -(I) @LINE: 236 - >>> Processing Test Case: handleOffButtonConfirmMsgFromUI_NominalPath -(S) @LINE: 242 - >>> Processed Test Case: handleOffButtonConfirmMsgFromUI_NominalPath -(I) @LINE: 250 - >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength -(S) @LINE: 260 - >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength -(I) @LINE: 266 - >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_Override -(S) @LINE: 280 - >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_Override -(I) @LINE: 286 - >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_Reset -(S) @LINE: 306 - >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_Reset -(I) @LINE: 314 - >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 324 - >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 330 - >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 355 - >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 361 - >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 385 - >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 393 - >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 404 - >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 410 - >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override -(S) @LINE: 431 - >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override -(I) @LINE: 437 - >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 457 - >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 465 - >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_InvalidPayloadLen -(S) @LINE: 476 - >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_InvalidPayloadLen -(I) @LINE: 482 - >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_Override -(S) @LINE: 508 - >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_Override -(I) @LINE: 514 - >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_Reset -(S) @LINE: 539 - >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_Reset -(I) @LINE: 547 - >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 558 - >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 564 - >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Override -(S) @LINE: 585 - >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Override -(I) @LINE: 591 - >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 611 - >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 619 - >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen -(S) @LINE: 630 - >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen -(I) @LINE: 636 - >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_Override -(S) @LINE: 657 - >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_Override -(I) @LINE: 663 - >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_Reset -(S) @LINE: 683 - >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_Reset -(I) @LINE: 691 - >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen -(S) @LINE: 702 - >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen -(I) @LINE: 708 - >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_Override -(S) @LINE: 729 - >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_Override -(I) @LINE: 735 - >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_Reset -(S) @LINE: 755 - >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_Reset -(I) @LINE: 763 - >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen -(S) @LINE: 774 - >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen -(I) @LINE: 780 - >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Override -(S) @LINE: 801 - >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Override -(I) @LINE: 807 - >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset -(S) @LINE: 827 - >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset -(I) @LINE: 835 - >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen -(S) @LINE: 846 - >>> Processed Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen -(I) @LINE: 852 - >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Override -(E) @LINE: 874 TEST.ATTRIBUTES:SystemCommMessages.handleTestBloodFlowMeasuredOverrideRequest.message[0].hdr.msgID::INPUT_BASE=16 - >>> Expected a field name from the record type MESSAGE_HEADER_T - >>> Read: msgID::INPUT_BASE=16 -(S) @LINE: 875 - >>> Processed Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Override -(I) @LINE: 881 - >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset -(S) @LINE: 902 - >>> Processed Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset -(I) @LINE: 910 - >>> Processing Test Case: handleTestHDMessageRequest_NominalPath -(S) @LINE: 922 - >>> Processed Test Case: handleTestHDMessageRequest_NominalPath -(I) @LINE: 930 - >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 947 - >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 953 - >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_Override -(S) @LINE: 967 - >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_Override -(I) @LINE: 973 - >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_Reset -(S) @LINE: 992 - >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_Reset -(I) @LINE: 1000 - >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 1010 - >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 1016 - >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_Override -(S) @LINE: 1022 - >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_Override -(I) @LINE: 1028 - >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_Reset -(S) @LINE: 1048 - >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_Reset -(I) @LINE: 1056 - >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 1066 - >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 1072 - >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 1091 - >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 1097 - >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 1115 - >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 1123 - >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 1132 - >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 1138 - >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 1147 - >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 1153 - >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 1162 - >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 1168 - >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 1177 - >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 1183 - >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 1193 - >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 1201 - >>> Processing Test Case: handleUICheckIn_NominalPath -(S) @LINE: 1207 - >>> Processed Test Case: handleUICheckIn_NominalPath -(I) @LINE: 1215 - >>> Processing Test Case: NominalPath -(S) @LINE: 1218 - >>> Processed Test Case: NominalPath -(I) @LINE: 1226 - >>> Processing Test Case: sendDebugData_NominalPath -(S) @LINE: 1244 - >>> Processed Test Case: sendDebugData_NominalPath -(I) @LINE: 1252 - >>> Processing Test Case: sendOffButtonMsgToUI_NominalPath -(S) @LINE: 1257 - >>> Processed Test Case: sendOffButtonMsgToUI_NominalPath -(I) @LINE: 1265 - >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 1281 - >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 1289 - >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 1294 - >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 1300 - >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 1305 - >>> Processed Test Case: serializeMessage_NominalPath -(S) @LINE: 1305 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-11 09:50:35 + Could not open environment 'SYSTEMCOMMMESSAGES' +Environment was not successfully built: NONE_SET +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 +TIME: 2020-01-09 16:13:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all SystemCommMessages.serializeMessage test cases - Running: serializeMessage_MessageNeedsPadding - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: serializeMessage_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.sendOffButtonMsgToUI test cases - Running: sendOffButtonMsgToUI_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleOffButtonConfirmMsgFromUI test cases - Running: handleOffButtonConfirmMsgFromUI_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.broadcastAlarmStatus test cases - Running: broadcastAlarmStatus_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.broadcastAlarmTriggered test cases - Running: broadcastAlarmTriggered_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.broadcastAlarmCleared test cases - Running: broadcastAlarmCleared_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.broadcastBloodFlowData test cases - Running: broadcastBloodFlowData_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleDGCheckIn test cases - Running: handleDGCheckIn_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleUICheckIn test cases - Running: handleUICheckIn_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.sendDebugData test cases - Running: sendDebugData_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.isTestingActivated test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.sendTestAckResponseMsg test cases - Running: sendTestAckResponseMsg_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTesterLogInRequest test cases - Running: handleTesterLogInRequest_LoginSuccessful - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestHDMessageRequest test cases - Running: handleTestHDMessageRequest_NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestOffButtonStateOverrideRequest test cases - Running: handleTestOffButtonStateOverrideRequest_InvalidPayloadLength - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestOffButtonStateOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestOffButtonStateOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestStopButtonStateOverrideRequest test cases - Running: handleTestStopButtonStateOverrideRequest_InvalidPayloadLength - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestStopButtonStateOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestStopButtonStateOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestAlarmLampPatternOverrideRequest test cases - Running: handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmLampPatternOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmLampPatternOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestWatchdogCheckInStateOverrideRequest test cases - Running: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestWatchdogCheckInStateOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestWatchdogCheckInStateOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestAlarmStateOverrideRequest test cases - Running: handleTestAlarmStateOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmStateOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmStateOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestAlarmTimeOverrideRequest test cases - Running: handleTestAlarmTimeOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmTimeOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmTimeOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestAlarmStatusBroadcastIntervalOverrideRequest test cases - Running: handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestBloodFlowSetPointOverrideRequest test cases - Running: handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowSetPointOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowSetPointOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestBloodFlowMeasuredOverrideRequest test cases - Running: handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowMeasuredOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowMeasuredOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestBloodPumpMeasuredSpeedOverrideRequest test cases - Running: handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodPumpMeasuredSpeedOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestBloodPumpMeasuredCurrentOverrideRequest test cases - Running: handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodPumpMeasuredCurrentOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all SystemCommMessages.handleTestBloodFlowBroadcastIntervalOverrideRequest test cases - Running: handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowBroadcastIntervalOverrideRequest_Override - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-11 09:50:38 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env" Initializing search list Creating the Environment Directory Creating Environment "TIMERS" @@ -9888,18 +5976,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-11 09:50:43 +COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 +TIME: 2020-01-09 16:13:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -9911,7 +5999,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp (I) @LINE: 24 >>> Processing Test Case: calcTimeSince_NominalPath (S) @LINE: 28 @@ -9951,12 +6039,12 @@ (S) @LINE: 118 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-11 09:50:44 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 +TIME: 2020-01-09 16:13:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -9965,78 +6053,78 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Timers.incMSTimerCount test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Timers.getMSTimerCount test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Timers.didTimeout test cases Running: NoTimeoutNoWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: NoTimeoutWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TimeoutNoWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: TimeoutWrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Timers.calcTimeSince test cases Running: calcTimeSince_NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: calcTimeSince_Wrap Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-11 09:50:46 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 +TIME: 2020-01-09 16:13:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env" Initializing search list Creating the Environment Directory Creating Environment "UTILITIES" @@ -10065,18 +6153,18 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-11 09:50:50 +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 +TIME: 2020-01-09 16:13:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG Opening Environment Determining Size/Range Information Opening Parameter/Global File Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST Building Master Min Mid Max data. Opening Parameter/Global File Opening Types File @@ -10088,7 +6176,7 @@ Test Script Log -------------------------------------------------------------------------------- (I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp + >>> Opening script file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp (I) @LINE: 24 >>> Processing Test Case: NominalPath (S) @LINE: 37 @@ -10104,12 +6192,12 @@ (S) @LINE: 65 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-11 09:50:51 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 +TIME: 2020-01-09 16:13:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File @@ -10118,33 +6206,33 @@ Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running: ZeroLength Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Running all Utilities.crc8 test cases Running: NominalPath Preparing Test Data Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST + Running Test with command: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete Completed Batch Execution processing -COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-11 09:50:53 +COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 +TIME: 2020-01-09 16:13:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG - Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env" + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG + Reading environment script "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env" Initializing search list Creating the Environment Directory Creating Environment "WATCHDOGMGMT" @@ -10154,351 +6242,46 @@ Generating harness code Saving unit data Parsing WatchdogMgmt - Unit 9 (tdd-sbf-source): WatchdogMgmt - Loading stored IL - Initializing parse data - Generating harness code - Saving unit data - Compiling file VECTORCAST_IO - Compiling file User Defined Globals - Compiling file Data File Number 1 - Compiling file Data File Number 2 - Compiling file Driver - Compiling file User Defined Package - Setting Up Statement+MC/DC Coverage - Instrumenting file WatchdogMgmt - Compiling file WatchdogMgmt - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-11 09:50:57 + ** ERROR: Full Parse Failed: + WatchdogMgmt.tu.c +"/home/fw/workspace/hdfirmware/firmware/App/Services/System + CommMessages.h", + line 93: error: expected a "{" + void + handleDGCheckIn( MESSAGE_T *message ); + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/WatchdogMgmt.h", + line 26: + error: identifier "TASK_BG" is undefined + TASK_BG = + 0, // Background + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/WatchdogMgmt.h", + line 27: + error: identifier "TASK_GENERAL" is undefined + + TASK_GENERAL, // General + + ^ +"/home/fw/workspace/hdfirmware/firmware/App/Services/WatchdogMgmt.h", + line 28: + error: identifier "TASK_PRIORITY" is undefined + + TASK_PRIORITY, // Priority + ^ + ** ERROR: Environment Creation Failed +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script run /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 +TIME: 2020-01-09 16:13:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG Opening Environment - Determining Size/Range Information - Opening Parameter/Global File - Opening Types File - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Processing script line 200 - Processing script line 250 - Processing script line 300 - Processing script line 350 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp -(I) @LINE: 24 - >>> Processing Test Case: InvalidTask -(S) @LINE: 34 - >>> Processed Test Case: InvalidTask -(I) @LINE: 40 - >>> Processing Test Case: NominalPath -(S) @LINE: 44 - >>> Processed Test Case: NominalPath -(I) @LINE: 52 - >>> Processing Test Case: AllTasksCheckedInAndMinTimeReached -(S) @LINE: 69 - >>> Processed Test Case: AllTasksCheckedInAndMinTimeReached -(I) @LINE: 75 - >>> Processing Test Case: AllTasksCheckedInAndNotTime -(S) @LINE: 91 - >>> Processed Test Case: AllTasksCheckedInAndNotTime -(I) @LINE: 97 - >>> Processing Test Case: OneTaskNotCheckedIn -(S) @LINE: 123 - >>> Processed Test Case: OneTaskNotCheckedIn -(I) @LINE: 129 - >>> Processing Test Case: WDExpired -(S) @LINE: 136 - >>> Processed Test Case: WDExpired -(I) @LINE: 144 - >>> Processing Test Case: Completed -(S) @LINE: 148 - >>> Processed Test Case: Completed -(I) @LINE: 154 - >>> Processing Test Case: InvalidState -(S) @LINE: 157 - >>> Processed Test Case: InvalidState -(I) @LINE: 163 - >>> Processing Test Case: StartInProgress -(S) @LINE: 173 - >>> Processed Test Case: StartInProgress -(I) @LINE: 179 - >>> Processing Test Case: TestFailure -(S) @LINE: 190 - >>> Processed Test Case: TestFailure -(I) @LINE: 196 - >>> Processing Test Case: TestPasses -(S) @LINE: 207 - >>> Processed Test Case: TestPasses -(I) @LINE: 215 - >>> Processing Test Case: InvalidTask -(S) @LINE: 218 - >>> Processed Test Case: InvalidTask -(I) @LINE: 224 - >>> Processing Test Case: NominalPath -(S) @LINE: 229 - >>> Processed Test Case: NominalPath -(I) @LINE: 235 - >>> Processing Test Case: OverridePath -(S) @LINE: 241 - >>> Processed Test Case: OverridePath -(I) @LINE: 249 - >>> Processing Test Case: AllTasksCheckedIn -(S) @LINE: 259 - >>> Processed Test Case: AllTasksCheckedIn -(I) @LINE: 265 - >>> Processing Test Case: OneTaskNotCheckedIn -(S) @LINE: 275 - >>> Processed Test Case: OneTaskNotCheckedIn -(I) @LINE: 283 - >>> Processing Test Case: NominalPath -(S) @LINE: 321 - >>> Processed Test Case: NominalPath -(I) @LINE: 329 - >>> Processing Test Case: NominalPath -(S) @LINE: 333 - >>> Processed Test Case: NominalPath -(I) @LINE: 341 - >>> Processing Test Case: NominalPath -(S) @LINE: 350 - >>> Processed Test Case: NominalPath -(I) @LINE: 358 - >>> Processing Test Case: InvalidTask -(S) @LINE: 361 - >>> Processed Test Case: InvalidTask -(I) @LINE: 367 - >>> Processing Test Case: NominalPath -(S) @LINE: 379 - >>> Processed Test Case: NominalPath -(I) @LINE: 385 - >>> Processing Test Case: TestingInactive -(S) @LINE: 397 - >>> Processed Test Case: TestingInactive -(I) @LINE: 405 - >>> Processing Test Case: InvalidTask -(S) @LINE: 409 - >>> Processed Test Case: InvalidTask -(I) @LINE: 415 - >>> Processing Test Case: NominalPath -(S) @LINE: 428 - >>> Processed Test Case: NominalPath -(I) @LINE: 434 - >>> Processing Test Case: TestingInactive -(S) @LINE: 447 - >>> Processed Test Case: TestingInactive -(S) @LINE: 447 - >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-11 09:50:58 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Running all WatchdogMgmt.initWatchdogMgmt test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.execWatchdogMgmt test cases - Running: AllTasksCheckedInAndMinTimeReached - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: AllTasksCheckedInAndNotTime - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OneTaskNotCheckedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: WDExpired - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.checkInWithWatchdogMgmt test cases - Running: InvalidTask - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.execWatchdogTest test cases - Running: Completed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: InvalidState - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: StartInProgress - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestFailure - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestPasses - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.resetWDTaskCheckIns test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.haveAllTasksCheckedIn test cases - Running: AllTasksCheckedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OneTaskNotCheckedIn - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.hasTaskGeneralCheckedIn test cases - Running: InvalidTask - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OverridePath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.petWatchdog test cases - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.testSetWatchdogTaskCheckInOverride test cases - Running: InvalidTask - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all WatchdogMgmt.testResetWatchdogTaskCheckInOverride test cases - Running: InvalidTask - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPath - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: TestingInactive - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing + Could not open environment 'WATCHDOGMGMT' +Environment was not successfully built: NONE_SET processing test results... processing coverage results... combining results... @@ -10511,787 +6294,259 @@ Generating Management Reports Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management ... -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-11 09:51:04 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-11 09:51:06 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-11 09:51:07 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-11 09:51:09 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-11 09:51:10 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:14:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-11 09:51:11 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:14:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-11 09:51:13 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:14:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-11 09:51:14 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-11 09:51:15 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:14:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-11 09:51:17 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-11 09:51:18 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-11 09:51:19 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-11 09:51:21 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-11 09:51:22 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2019-12-11 09:51:23 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-11 09:51:24 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-11 09:51:26 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-11 09:51:27 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2019-12-11 09:51:28 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:14:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-11 09:51:30 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-11 09:51:31 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-11 09:51:32 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-11 09:51:33 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-11 09:51:35 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-11 09:51:36 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 +TIME: 2020-01-09 16:14:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-11 09:51:37 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 +TIME: 2020-01-09 16:14:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-11 09:51:38 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 +TIME: 2020-01-09 16:14:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-11 09:51:40 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-11 09:51:41 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-11 09:51:43 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 +TIME: 2020-01-09 16:14:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-11 09:51:45 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 +TIME: 2020-01-09 16:14:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_management_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-11 09:51:46 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT_management_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_management_report.html". /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management Exit Code: 0 Command is done running! Generating Test Case Execution Reports Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual ... -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-11 09:51:49 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-11 09:51:51 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-11 09:51:53 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-11 09:51:55 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-11 09:51:56 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 +TIME: 2020-01-09 16:14:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-11 09:51:58 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 +TIME: 2020-01-09 16:14:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-11 09:51:59 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 +TIME: 2020-01-09 16:14:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-11 09:52:01 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-11 09:52:03 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 +TIME: 2020-01-09 16:14:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-11 09:52:05 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-11 09:52:06 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-11 09:52:07 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-11 09:52:09 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-11 09:52:10 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2019-12-11 09:52:12 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-11 09:52:13 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-11 09:52:15 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-11 09:52:16 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2019-12-11 09:52:17 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2020-01-09 16:14:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-11 09:52:18 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-11 09:52:20 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-11 09:52:21 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-11 09:52:23 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-11 09:52:24 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-11 09:52:25 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 +TIME: 2020-01-09 16:14:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-11 09:52:27 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 +TIME: 2020-01-09 16:14:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-11 09:52:28 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 +TIME: 2020-01-09 16:14:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-11 09:52:29 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-11 09:52:31 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-11 09:52:33 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 +TIME: 2020-01-09 16:14:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-11 09:52:34 +DIRECTORY: /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 +TIME: 2020-01-09 16:14:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 +VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG + Processing options file /home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG Opening Environment Opening Parameter/Global File Opening Types File Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_execution_results_report.html". -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-11 09:52:35 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT_execution_results_report.html". + The HTML report was saved to "/home/fw/workspace/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_execution_results_report.html". /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual Exit Code: 0 Command is done running! -Moved VectorCAST XML files to Bamboo working directory /home/fw/ws_HD/hdfirmware/vectorcast -Moved VectorCAST HTML files to Bamboo working directory /home/fw/ws_HD/hdfirmware/vectorcast +Moved VectorCAST XML files to Bamboo working directory /home/fw/workspace/hdfirmware/vectorcast +Moved VectorCAST HTML files to Bamboo working directory /home/fw/workspace/hdfirmware/vectorcast cleaning up... Index: results/cppcheck.log =================================================================== diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 --- results/cppcheck.log (.../cppcheck.log) (revision 1bbf9da32e622975efed00b1a7589387a9829440) +++ results/cppcheck.log (.../cppcheck.log) (revision 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106) @@ -1,124 +1,93 @@ Checking hdfirmware/firmware/App/Controllers/AlarmLamp.c ... -1/53 files checked 1% done +1/37 files checked 2% done Checking hdfirmware/firmware/App/Controllers/BloodFlow.c ... Checking hdfirmware/firmware/App/Controllers/BloodFlow.c: DEBUG_ENABLED... -2/53 files checked 3% done +2/37 files checked 5% done Checking hdfirmware/firmware/App/Controllers/Buttons.c ... Checking hdfirmware/firmware/App/Controllers/Buttons.c: SIMULATE_UI... -3/53 files checked 5% done +3/37 files checked 7% done +Checking hdfirmware/firmware/App/Controllers/DialInFlow.c ... +Checking hdfirmware/firmware/App/Controllers/DialInFlow.c: DEBUG_ENABLED... +4/37 files checked 10% done +Checking hdfirmware/firmware/App/Controllers/DialOutFlow.c ... +Checking hdfirmware/firmware/App/Controllers/DialOutFlow.c: DEBUG_ENABLED... +5/37 files checked 13% done Checking hdfirmware/firmware/App/Drivers/CPLD.c ... Checking hdfirmware/firmware/App/Drivers/CPLD.c: RM46_EVAL_BOARD_TARGET... -4/53 files checked 7% done +6/37 files checked 15% done Checking hdfirmware/firmware/App/Drivers/Comm.c ... -5/53 files checked 9% done +7/37 files checked 18% done Checking hdfirmware/firmware/App/Drivers/InternalADC.c ... -6/53 files checked 11% done +8/37 files checked 21% done Checking hdfirmware/firmware/App/Drivers/SafetyShutdown.c ... -7/53 files checked 13% done +9/37 files checked 23% done Checking hdfirmware/firmware/App/Modes/ModeFault.c ... -8/53 files checked 15% done +10/37 files checked 26% done Checking hdfirmware/firmware/App/Modes/ModeInitPOST.c ... -Checking hdfirmware/firmware/App/Modes/ModeInitPOST.c: RM46_EVAL_BOARD_TARGET... -9/53 files checked 16% done +11/37 files checked 29% done Checking hdfirmware/firmware/App/Modes/ModeOpParams.c ... Checking hdfirmware/firmware/App/Modes/ModeOpParams.c: RM46_EVAL_BOARD_TARGET... -10/53 files checked 18% done +12/37 files checked 31% done Checking hdfirmware/firmware/App/Modes/ModePostTreat.c ... Checking hdfirmware/firmware/App/Modes/ModePostTreat.c: RM46_EVAL_BOARD_TARGET... -11/53 files checked 20% done +13/37 files checked 34% done Checking hdfirmware/firmware/App/Modes/ModePreTreat.c ... Checking hdfirmware/firmware/App/Modes/ModePreTreat.c: RM46_EVAL_BOARD_TARGET... -12/53 files checked 22% done +14/37 files checked 37% done Checking hdfirmware/firmware/App/Modes/ModePrescription.c ... Checking hdfirmware/firmware/App/Modes/ModePrescription.c: RM46_EVAL_BOARD_TARGET... -13/53 files checked 24% done +15/37 files checked 39% done Checking hdfirmware/firmware/App/Modes/ModeService.c ... -14/53 files checked 26% done +16/37 files checked 42% done Checking hdfirmware/firmware/App/Modes/ModeStandby.c ... Checking hdfirmware/firmware/App/Modes/ModeStandby.c: RM46_EVAL_BOARD_TARGET... -15/53 files checked 28% done +17/37 files checked 45% done Checking hdfirmware/firmware/App/Modes/ModeTreatment.c ... Checking hdfirmware/firmware/App/Modes/ModeTreatment.c: RM46_EVAL_BOARD_TARGET... -16/53 files checked 30% done +18/37 files checked 47% done Checking hdfirmware/firmware/App/Modes/OperationModes.c ... -17/53 files checked 32% done +19/37 files checked 50% done Checking hdfirmware/firmware/App/Services/AlarmMgmt.c ... Checking hdfirmware/firmware/App/Services/AlarmMgmt.c: DEBUG_ENABLED... -18/53 files checked 33% done +20/37 files checked 53% done Checking hdfirmware/firmware/App/Services/CommBuffers.c ... -19/53 files checked 35% done +21/37 files checked 55% done +Checking hdfirmware/firmware/App/Services/FIRFilters.c ... +22/37 files checked 58% done Checking hdfirmware/firmware/App/Services/FPGA.c ... Checking hdfirmware/firmware/App/Services/FPGA.c: RM46_EVAL_BOARD_TARGET... -20/53 files checked 37% done +23/37 files checked 61% done Checking hdfirmware/firmware/App/Services/Interrupts.c ... Checking hdfirmware/firmware/App/Services/Interrupts.c: DEBUG_ENABLED... -21/53 files checked 39% done +24/37 files checked 63% done Checking hdfirmware/firmware/App/Services/MsgQueues.c ... -22/53 files checked 41% done +25/37 files checked 66% done +Checking hdfirmware/firmware/App/Services/PIControllers.c ... +26/37 files checked 69% done Checking hdfirmware/firmware/App/Services/SystemComm.c ... Checking hdfirmware/firmware/App/Services/SystemComm.c: RM46_EVAL_BOARD_TARGET... -23/53 files checked 43% done +27/37 files checked 71% done Checking hdfirmware/firmware/App/Services/SystemCommMessages.c ... -24/53 files checked 45% done +28/37 files checked 74% done Checking hdfirmware/firmware/App/Services/Timers.c ... -25/53 files checked 47% done +29/37 files checked 77% done Checking hdfirmware/firmware/App/Services/Utilities.c ... -26/53 files checked 49% done +30/37 files checked 79% done Checking hdfirmware/firmware/App/Services/WatchdogMgmt.c ... -27/53 files checked 50% done +31/37 files checked 82% done Checking hdfirmware/firmware/App/Tasks/TaskBG.c ... -28/53 files checked 52% done +32/37 files checked 85% done Checking hdfirmware/firmware/App/Tasks/TaskGeneral.c ... Checking hdfirmware/firmware/App/Tasks/TaskGeneral.c: RM46_EVAL_BOARD_TARGET... -29/53 files checked 54% done +33/37 files checked 87% done Checking hdfirmware/firmware/App/Tasks/TaskPriority.c ... -30/53 files checked 56% done +34/37 files checked 90% done Checking hdfirmware/firmware/App/Tasks/TaskTimer.c ... -31/53 files checked 58% done +35/37 files checked 93% done Checking hdfirmware/firmware/irqDispatch_c.c ... Checking hdfirmware/firmware/irqDispatch_c.c: __TI_VIM_128CH__... Checking hdfirmware/firmware/irqDispatch_c.c: __TI_VIM_96CH__... Checking hdfirmware/firmware/irqDispatch_c.c: __TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__;__TI_VIM_96CH__... -32/53 files checked 60% done -Checking hdfirmware/firmware/source/adc.c ... -33/53 files checked 62% done -Checking hdfirmware/firmware/source/can.c ... -34/53 files checked 64% done -Checking hdfirmware/firmware/source/errata_SSWF021_45.c ... -35/53 files checked 66% done -Checking hdfirmware/firmware/source/esm.c ... -36/53 files checked 67% done -Checking hdfirmware/firmware/source/etpwm.c ... -37/53 files checked 69% done -Checking hdfirmware/firmware/source/gio.c ... -38/53 files checked 71% done -Checking hdfirmware/firmware/source/lin.c ... -39/53 files checked 73% done -Checking hdfirmware/firmware/source/mibspi.c ... -40/53 files checked 75% done -Checking hdfirmware/firmware/source/notification.c ... -41/53 files checked 77% done -Checking hdfirmware/firmware/source/pinmux.c ... -42/53 files checked 79% done -Checking hdfirmware/firmware/source/rti.c ... -43/53 files checked 81% done -Checking hdfirmware/firmware/source/sci.c ... -44/53 files checked 83% done -Checking hdfirmware/firmware/source/sys_dma.c ... -45/53 files checked 84% done +36/37 files checked 95% done Checking hdfirmware/firmware/source/sys_main.c ... -46/53 files checked 86% done -Checking hdfirmware/firmware/source/sys_pcr.c ... -47/53 files checked 88% done -Checking hdfirmware/firmware/source/sys_phantom.c ... -48/53 files checked 90% done -Checking hdfirmware/firmware/source/sys_pmm.c ... -49/53 files checked 92% done -Checking hdfirmware/firmware/source/sys_selftest.c ... -50/53 files checked 94% done -Checking hdfirmware/firmware/source/sys_startup.c ... -51/53 files checked 96% done -Checking hdfirmware/firmware/source/sys_vim.c ... -52/53 files checked 98% done -Checking hdfirmware/firmware/source/system.c ... -53/53 files checked 100% done +37/37 files checked 100% done Fisheye: Tag 5a8668a1a04cfa46b1a0aeece4f527ebbf26a106 refers to a dead (removed) revision in file `results/cppcheckError.log'. Fisheye: No comparison available. Pass `N' to diff?