Index: firmware/App/Controllers/AlarmLamp.c =================================================================== diff -u -ra0aca1a4d87df989303b4f7f41208a4916861afa -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Controllers/AlarmLamp.c (.../AlarmLamp.c) (revision a0aca1a4d87df989303b4f7f41208a4916861afa) +++ firmware/App/Controllers/AlarmLamp.c (.../AlarmLamp.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -33,10 +33,10 @@ // Lamp Pattern Record struct LampPatterns { - U32 duration[NUM_OF_LAMP_STATES]; // in ms - LAMP_STATE_T green[NUM_OF_LAMP_STATES]; // green lamp state 1 and 2 - LAMP_STATE_T blue[NUM_OF_LAMP_STATES]; // blue lamp state 1 and 2 - LAMP_STATE_T red[NUM_OF_LAMP_STATES]; // red lamp state 1 and 2 + U32 duration[NUM_OF_LAMP_STATES ]; // in ms + LAMP_STATE_T green[ NUM_OF_LAMP_STATES ]; // green lamp state 1 and 2 + LAMP_STATE_T blue[ NUM_OF_LAMP_STATES ]; // blue lamp state 1 and 2 + LAMP_STATE_T red[ NUM_OF_LAMP_STATES ]; // red lamp state 1 and 2 }; typedef enum Alarm_Lamp_Self_Test_States @@ -58,7 +58,7 @@ static U32 currentLampPatternStep = 0; static U32 lampPatternStepTimer = 0; -const struct LampPatterns lampPatterns[NUM_OF_LAMP_PATTERNS] = { +const struct LampPatterns lampPatterns[ NUM_OF_LAMP_PATTERNS ] = { { { 500, 500 }, { LAMP_STATE_OFF, LAMP_STATE_OFF }, { LAMP_STATE_OFF, LAMP_STATE_OFF }, { LAMP_STATE_OFF, LAMP_STATE_OFF } }, // LAMP_PATTERN_OFF { { 500, 500 }, { LAMP_STATE_ON, LAMP_STATE_ON }, { LAMP_STATE_OFF, LAMP_STATE_OFF }, { LAMP_STATE_OFF, LAMP_STATE_OFF } }, // LAMP_PATTERN_OK { { 500, 500 }, { LAMP_STATE_OFF, LAMP_STATE_OFF }, { LAMP_STATE_OFF, LAMP_STATE_OFF }, { LAMP_STATE_ON, LAMP_STATE_OFF } }, // LAMP_PATTERN_FAULT @@ -125,7 +125,7 @@ if ( getCurrentAlarmLampPattern() != LAMP_PATTERN_MANUAL ) { // if pattern step duration has elapsed, move to next step - if ( lampPatternStepTimer >= lampPatterns[getCurrentAlarmLampPattern()].duration[currentLampPatternStep] ) + if ( lampPatternStepTimer >= lampPatterns[ getCurrentAlarmLampPattern() ].duration[ currentLampPatternStep ] ) { // increment pattern step currentLampPatternStep++; @@ -253,15 +253,15 @@ PIN_SIGNAL_STATE_T red = PIN_SIGNAL_LOW; lampPatternStepTimer = 0; - if ( lampPatterns[getCurrentAlarmLampPattern()].green[currentLampPatternStep] == LAMP_STATE_ON ) + if ( lampPatterns[ getCurrentAlarmLampPattern() ].green[ currentLampPatternStep ] == LAMP_STATE_ON ) { green = PIN_SIGNAL_HIGH; } - if ( lampPatterns[getCurrentAlarmLampPattern()].blue[currentLampPatternStep] == LAMP_STATE_ON ) + if ( lampPatterns[ getCurrentAlarmLampPattern() ].blue[ currentLampPatternStep ] == LAMP_STATE_ON ) { blue = PIN_SIGNAL_HIGH; } - if ( lampPatterns[getCurrentAlarmLampPattern()].red[currentLampPatternStep] == LAMP_STATE_ON ) + if ( lampPatterns[ getCurrentAlarmLampPattern() ].red[ currentLampPatternStep ] == LAMP_STATE_ON ) { red = PIN_SIGNAL_HIGH; } Index: firmware/App/Controllers/BloodFlow.c =================================================================== diff -u -r16efeb7b3a19e02ae83a553a77f01a3550ff7850 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 16efeb7b3a19e02ae83a553a77f01a3550ff7850) +++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -117,7 +117,7 @@ static F32 bpFlowErrorSum = 0.0; // blood flow error sum static U32 bpControlTimerCounter = 0; // determines when to perform control on blood flow -static F32 flowReadings[SIZE_OF_ROLLING_AVG]; // holds flow samples for a rolling average +static F32 flowReadings[ SIZE_OF_ROLLING_AVG ]; // holds flow samples for a rolling average static U32 flowReadingsIdx = 0; // index for next sample in rolling average array static F32 flowReadingsTotal = 0.0; // rolling total - used to calc average @@ -159,7 +159,7 @@ // zero rolling flow average buffer for ( i = 0; i < SIZE_OF_ROLLING_AVG; i++ ) { - flowReadings[i] = 0.0; + flowReadings[ i ] = 0.0; } } @@ -250,8 +250,8 @@ adcBloodPumpMCSpeedRPM.data = (F32)(SIGN_FROM_12_BIT_VALUE(bpRPM)) * BP_SPEED_ADC_TO_RPM_FACTOR; adcBloodPumpMCCurrentmA.data = (F32)(SIGN_FROM_12_BIT_VALUE(bpmA)) * BP_CURRENT_ADC_TO_MA_FACTOR; - flowReadingsTotal -= flowReadings[flowReadingsIdx]; - flowReadings[flowReadingsIdx] = bpFlow; + flowReadingsTotal -= flowReadings[ flowReadingsIdx ]; + flowReadings[ flowReadingsIdx ] = bpFlow; flowReadingsTotal += bpFlow; flowReadingsIdx = INC_WRAP( flowReadingsIdx, 0, SIZE_OF_ROLLING_AVG-1 ); measuredBloodFlowRate.data = flowReadingsTotal / (F32)SIZE_OF_ROLLING_AVG; @@ -624,7 +624,7 @@ #ifdef DEBUG_ENABLED // TODO - temporary debug code - remove later S32 pwm = (S32)( 100.0 * bloodPumpPWMDutyCyclePctSet ); - char debugFlowStr[256]; + char debugFlowStr[ 256 ]; sprintf( debugFlowStr, "Target Flow:%5d, Meas. Flow:%5d, Speed:%5d RPM, Current:%5d mA, PWM:%5d \n", flowStPt, (S32)measFlow, (S32)measMCSpd, (S32)measMCCurr, pwm ); sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); Index: firmware/App/Controllers/Buttons.c =================================================================== diff -u -rd9cc76524777a12ba77b58ce95416dddfb032997 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Controllers/Buttons.c (.../Buttons.c) (revision d9cc76524777a12ba77b58ce95416dddfb032997) +++ firmware/App/Controllers/Buttons.c (.../Buttons.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -39,6 +39,22 @@ NUM_OF_BUTTONS } BUTTON_T; +typedef enum OffButtonCmdsToUI +{ + OFF_BUTTON_CMD_PROMPT_USER_TO_CONFIRM = 0, + OFF_BUTTON_CMD_CANCEL_USER_CONFIRM_PROMPT, + OFF_BUTTON_CMD_REJECT_USER_OFF_REQUEST, + NUM_OF_OFF_BUTTON_CMDS +} OFF_BUTTON_CMD_T; + +typedef enum OffButtonRspsFromUI +{ + OFF_BUTTON_RSP_USER_REQUESTS_POWER_OFF = 0, + OFF_BUTTON_RSP_USER_CONFIRMS_POWER_OFF, + OFF_BUTTON_RSP_USER_REJECTS_POWER_OFF, + NUM_OF_OFF_BUTTON_RSPS +} OFF_BUTTON_RSP_T; + #define OFF_REQUEST_PULSE_COUNT 4 #define OFF_REQUEST_PULSE_INTVL 50 // ms #define STOP_BUTTON_PENDING_TIMEOUT 500 // ms @@ -233,22 +249,51 @@ *************************************************************************/ void userConfirmOffButton( U08 response ) { - // is an off request pending user confirmation? - if ( TRUE == offRequestAwaitingUserConfirmation ) + switch ( response ) { - // reset off request pending flag regardless of user response - offRequestAwaitingUserConfirmation = FALSE; - // did user confirm? - if ( USER_CONFIRMED == response ) - { + case OFF_BUTTON_RSP_USER_REQUESTS_POWER_OFF: + // if we're in a mode that allows power off, set off pending flag and request user confirmation if ( TRUE == isCurrentOpModeOkToTurnOff() ) { - offButtonPressPending = TRUE; - offRequestPulseCount = OFF_REQUEST_PULSE_COUNT; - offRequestPulseTimer = 0; + offRequestAwaitingUserConfirmation = TRUE; + offRequestPendingTimer = 0; + sendOffButtonMsgToUI( OFF_BUTTON_CMD_PROMPT_USER_TO_CONFIRM ); } - } - } + else + { // send rejection response to power off request + sendOffButtonMsgToUI( OFF_BUTTON_CMD_REJECT_USER_OFF_REQUEST ); + } + break; + + case OFF_BUTTON_RSP_USER_CONFIRMS_POWER_OFF: + // is an off request pending user confirmation? + if ( TRUE == offRequestAwaitingUserConfirmation ) + { + // reset off request pending flag + offRequestAwaitingUserConfirmation = FALSE; + // if we're in a mode that allows power off, initiate power off sequence + if ( TRUE == isCurrentOpModeOkToTurnOff() ) + { + offButtonPressPending = TRUE; + offRequestPulseCount = OFF_REQUEST_PULSE_COUNT; + offRequestPulseTimer = 0; + } + } + break; + + case OFF_BUTTON_RSP_USER_REJECTS_POWER_OFF: + // is an off request pending user confirmation? + if ( TRUE == offRequestAwaitingUserConfirmation ) + { + // reset off request pending flag + offRequestAwaitingUserConfirmation = FALSE; + } + break; + + default: + // ok - do nothing + break; + } // end switch } /************************************************************************* @@ -295,7 +340,7 @@ if ( TRUE == isCurrentOpModeOkToTurnOff() ) { // send off button to UI for user confirmation - sendOffButtonMsgToUI( TRUE ); + sendOffButtonMsgToUI( OFF_BUTTON_CMD_PROMPT_USER_TO_CONFIRM ); offRequestAwaitingUserConfirmation = TRUE; offRequestPendingTimer = 0; #ifdef SIMULATE_UI @@ -313,7 +358,7 @@ if ( offRequestPendingTimer >= OFF_REQUEST_EXPIRATION_TIME ) { offRequestAwaitingUserConfirmation = FALSE; - sendOffButtonMsgToUI( FALSE ); + sendOffButtonMsgToUI( OFF_BUTTON_CMD_CANCEL_USER_CONFIRM_PROMPT ); } } Index: firmware/App/Drivers/Comm.c =================================================================== diff -u -r620104f4a9e3148575703981a3063b9605b6e9b8 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Drivers/Comm.c (.../Comm.c) (revision 620104f4a9e3148575703981a3063b9605b6e9b8) +++ firmware/App/Drivers/Comm.c (.../Comm.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -258,7 +258,7 @@ *************************************************************************/ BOOL isCAN1TransmitInProgress( void ) { - BOOL result = ( ( TRUE == canXmitsInProgress ) || ( canREG1->TXRQx[0] != 0 ) || ( canREG1->TXRQx[1] != 0 ) ? TRUE : FALSE ); + BOOL result = ( ( TRUE == canXmitsInProgress ) || ( canREG1->TXRQx[ 0 ] != 0 ) || ( canREG1->TXRQx[ 1 ] != 0 ) ? TRUE : FALSE ); return result; } Index: firmware/App/Drivers/InternalADC.c =================================================================== diff -u -ra0aca1a4d87df989303b4f7f41208a4916861afa -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Drivers/InternalADC.c (.../InternalADC.c) (revision a0aca1a4d87df989303b4f7f41208a4916861afa) +++ firmware/App/Drivers/InternalADC.c (.../InternalADC.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -24,7 +24,7 @@ #define SIZE_OF_ROLLING_AVG 16 // samples in rolling average calculations #define ROLLING_AVG_SHIFT_DIVIDER 4 // rolling average shift divider -const INT_ADC_CHANNEL_T adcChannelNum2ChannelId[MAX_ADC_CHANNELS+1] = +const INT_ADC_CHANNEL_T adcChannelNum2ChannelId[ MAX_ADC_CHANNELS + 1 ] = { INT_ADC_NOT_USED, // 0 (N/A - channels start at 1) INT_ADC_NOT_USED, // 1 @@ -55,13 +55,13 @@ // ********** private data ********** -static adcData_t adcRawReadings[NUM_OF_INT_ADC_CHANNELS]; // buffer holds latest adc channel readings -static U32 adcRawReadingsCount = 0; // readings count for raw readings buffer +static adcData_t adcRawReadings[ NUM_OF_INT_ADC_CHANNELS ]; // buffer holds latest adc channel readings +static U32 adcRawReadingsCount = 0; // readings count for raw readings buffer -static U16 adcReadings[NUM_OF_INT_ADC_CHANNELS][SIZE_OF_ROLLING_AVG]; // holds samples for each channel for a rolling average -static U32 adcReadingsIdx[NUM_OF_INT_ADC_CHANNELS]; // index for next reading in each rolling average array -static U32 adcReadingsTotals[NUM_OF_INT_ADC_CHANNELS]; // rolling total for each channel - used to calc average -static U32 adcReadingsAvgs[NUM_OF_INT_ADC_CHANNELS]; // rolling average for each channel +static U16 adcReadings[ NUM_OF_INT_ADC_CHANNELS ][ SIZE_OF_ROLLING_AVG ]; // holds samples for each channel for a rolling average +static U32 adcReadingsIdx[ NUM_OF_INT_ADC_CHANNELS ]; // index for next reading in each rolling average array +static U32 adcReadingsTotals[ NUM_OF_INT_ADC_CHANNELS ]; // rolling total for each channel - used to calc average +static U32 adcReadingsAvgs[ NUM_OF_INT_ADC_CHANNELS ]; // rolling average for each channel // ********** private function prototypes ********** @@ -84,14 +84,14 @@ adcRawReadingsCount = 0; for ( c = 0; c < NUM_OF_INT_ADC_CHANNELS; c++ ) { - adcRawReadings[c].id = 0; - adcRawReadings[c].value = 0; - adcReadingsIdx[c] = 0; - adcReadingsTotals[c] = 0; - adcReadingsAvgs[c] = 0; + adcRawReadings[ c ].id = 0; + adcRawReadings[ c ].value = 0; + adcReadingsIdx[ c ] = 0; + adcReadingsTotals[ c ] = 0; + adcReadingsAvgs[ c ] = 0; for ( r = 0; r < SIZE_OF_ROLLING_AVG; r++ ) { - adcReadings[c][r] = 0; + adcReadings[ c ][ r ] = 0; } } @@ -138,13 +138,13 @@ // process readings from last conversion for ( i = 0; i < adcRawReadingsCount; i++ ) { - U32 ch = adcChannelNum2ChannelId[adcRawReadings[i].id]; + U32 ch = adcChannelNum2ChannelId[ adcRawReadings[ i ].id ]; - adcReadingsTotals[ch] -= adcReadings[ch][adcReadingsIdx[ch]]; - adcReadings[ch][adcReadingsIdx[ch]] = adcRawReadings[i].value; - adcReadingsTotals[ch] += adcRawReadings[i].value; - adcReadingsAvgs[ch] = adcReadingsTotals[ch] >> ROLLING_AVG_SHIFT_DIVIDER; - adcReadingsIdx[ch] = INC_WRAP( adcReadingsIdx[ch], 0, SIZE_OF_ROLLING_AVG-1 ); + adcReadingsTotals[ ch ] -= adcReadings[ ch ][ adcReadingsIdx[ ch ] ]; + adcReadings[ ch ][ adcReadingsIdx[ ch ] ] = adcRawReadings[i].value; + adcReadingsTotals[ ch ] += adcRawReadings[ i ].value; + adcReadingsAvgs[ ch ] = adcReadingsTotals[ ch ] >> ROLLING_AVG_SHIFT_DIVIDER; + adcReadingsIdx[ ch ] = INC_WRAP( adcReadingsIdx[ ch ], 0, SIZE_OF_ROLLING_AVG - 1 ); } } else @@ -172,7 +172,7 @@ if ( channel < NUM_OF_INT_ADC_CHANNELS ) { - result = adcReadingsAvgs[channel]; + result = adcReadingsAvgs[ channel ]; } else { Index: firmware/App/Modes/OperationModes.c =================================================================== diff -u -ra0aca1a4d87df989303b4f7f41208a4916861afa -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision a0aca1a4d87df989303b4f7f41208a4916861afa) +++ firmware/App/Modes/OperationModes.c (.../OperationModes.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -31,11 +31,11 @@ // ********** private data ********** -static volatile BOOL modeRequest[NUM_OF_MODES - 1]; +static volatile BOOL modeRequest[ NUM_OF_MODES - 1 ]; static OP_MODE currentMode = MODE_INIT; // this matrix determines legal transitions from one mode to another -static const OP_MODE MODE_TRANSITION_TABLE[NUM_OF_MODES - 1][NUM_OF_MODES - 1] = { +static const OP_MODE MODE_TRANSITION_TABLE[ NUM_OF_MODES - 1 ][ NUM_OF_MODES - 1 ] = { // from to-> FAULT SERVICE INIT STANBY PRESCRIP. OP.PARAMS PRE-TREAT TREATMENT POST_TREA /* FAUL */{ MODE_FAUL, MODE_SERV, MODE_NLEG, MODE_NLEG, MODE_NLEG, MODE_NLEG, MODE_NLEG, MODE_NLEG, MODE_NLEG, }, @@ -77,7 +77,7 @@ // initialize mode requests to none pending for ( i = 0; i < ( NUM_OF_MODES - 1 ); i++ ) { - modeRequest[i] = FALSE; + modeRequest[ i ] = FALSE; } // start in init mode @@ -111,7 +111,7 @@ // any new mode requests? newMode = arbitrateModeRequest(); // will return current mode if no pending requests - newMode = MODE_TRANSITION_TABLE[currentMode][newMode]; + newMode = MODE_TRANSITION_TABLE[ currentMode ][ newMode ]; // is requested new mode valid and legal at this time? if ( newMode >= MODE_NLEG ) @@ -189,7 +189,7 @@ if ( newMode < MODE_NLEG ) { // make request - modeRequest[newMode] = TRUE; + modeRequest[ newMode ] = TRUE; } else { // invalid mode requested @@ -226,12 +226,12 @@ U32 i; // block additional requests until after mode arbitration - // TODO - disable priority task + _disable_IRQ(); // select highest priority mode request -or- current mode if no requests pending for ( i = 0; i < MODE_NLEG; i++ ) { - if ( modeRequest[i] != FALSE ) + if ( modeRequest[ i ] != FALSE ) { reqMode = (OP_MODE)i; break; @@ -241,11 +241,11 @@ // clear all requests now that an arbitration winner is selected for ( i = 0; i < MODE_NLEG; i++ ) { - modeRequest[i] = FALSE; + modeRequest[ i ] = FALSE; } // un-block requests - // TODO - enable priority task + _enable_IRQ(); return reqMode; } Index: firmware/App/Services/AlarmMgmt.c =================================================================== diff -u -r941afbaab7fc86f40fa49f9d110d481f65b44b68 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision 941afbaab7fc86f40fa49f9d110d481f65b44b68) +++ firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -44,7 +44,7 @@ } ALARM_T; #pragma pack(pop) -const ALARM_T alarmTable[NUM_OF_ALARM_IDS] = +const ALARM_T alarmTable[ NUM_OF_ALARM_IDS ] = { // Priority Esc Escalate To Fault Stops NoClr NoRes NoRin NoEnd NoNew Bypass { ALARM_PRIORITY_NONE, 0, ALARM_ID_NO_ALARM, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE }, // ALARM_ID_NO_ALARM { ALARM_PRIORITY_HIGH, 0, ALARM_ID_NO_ALARM, TRUE , TRUE , TRUE , TRUE , TRUE , TRUE , TRUE , FALSE }, // ALARM_ID_SOFTWARE_FAULT @@ -71,7 +71,7 @@ static COMP_ALARM_STATUS_T alarmStatus; -static ALARM_ID_T alarmPriorityFIFO[NUM_OF_ALARM_PRIORITIES]; +static ALARM_ID_T alarmPriorityFIFO[ NUM_OF_ALARM_PRIORITIES ]; // ********** private function prototypes ********** @@ -106,19 +106,19 @@ // initialize alarm states and start time stamps for ( a = ALARM_ID_NO_ALARM; a < NUM_OF_ALARM_IDS; a++ ) { - alarmIsActive[a].data = FALSE; - alarmIsActive[a].ovData = FALSE; - alarmIsActive[a].ovInitData = TRUE; - alarmIsActive[a].override = OVERRIDE_RESET; - alarmStartedAt[a].data = 0; - alarmStartedAt[a].ovData = 0; - alarmStartedAt[a].ovInitData = 0; - alarmStartedAt[a].override = OVERRIDE_RESET; + alarmIsActive[ a ].data = FALSE; + alarmIsActive[ a ].ovData = FALSE; + alarmIsActive[ a ].ovInitData = TRUE; + alarmIsActive[ a ].override = OVERRIDE_RESET; + alarmStartedAt[ a ].data = 0; + alarmStartedAt[ a ].ovData = 0; + alarmStartedAt[ a ].ovInitData = 0; + alarmStartedAt[ a ].override = OVERRIDE_RESET; } // initialize alarm FIFOs for ( p = ALARM_PRIORITY_NONE; p < NUM_OF_ALARM_PRIORITIES; p++ ) { - alarmPriorityFIFO[p] = ALARM_ID_NO_ALARM; + alarmPriorityFIFO[ p ] = ALARM_ID_NO_ALARM; } // initialize composite alarm state alarmStatus.alarmsState = ALARM_PRIORITY_NONE; @@ -181,13 +181,21 @@ if ( FALSE == getAlarmActive( alarm ) ) { // if alarm is a fault, request transition to fault mode - if ( TRUE == alarmTable[alarm].alarmIsFault ) + if ( TRUE == alarmTable[ alarm ].alarmIsFault ) { requestNewOperationMode( MODE_FAUL ); } // activate alarm - alarmIsActive[alarm].data = TRUE; - alarmStartedAt[alarm].data = getMSTimerCount(); + alarmIsActive[ alarm ].data = TRUE; + alarmStartedAt[ alarm ].data = getMSTimerCount(); +#ifdef DEBUG_ENABLED + { + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; + sprintf( debugStr, "ALARM triggered:%5d \n", alarm ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); + } +#endif } } else @@ -211,7 +219,7 @@ void activateAlarmNoData( ALARM_ID_T alarm ) { // broadcast alarm and data if alarm not already active - if ( FALSE == alarmIsActive[alarm].data ) + if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( alarm, blankAlarmData, blankAlarmData ); } @@ -233,7 +241,7 @@ void activateAlarm1Data( ALARM_ID_T alarm, ALARM_DATA_T alarmData ) { // broadcast alarm and data if alarm not already active - if ( FALSE == alarmIsActive[alarm].data ) + if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( alarm, alarmData, blankAlarmData ); } @@ -256,7 +264,7 @@ void activateAlarm2Data( ALARM_ID_T alarm, ALARM_DATA_T alarmData1, ALARM_DATA_T alarmData2 ) { // broadcast alarm and data if alarm not already active - if ( FALSE == alarmIsActive[alarm].data ) + if ( FALSE == alarmIsActive[ alarm ].data ) { broadcastAlarmTriggered( alarm, alarmData1, alarmData2 ); } @@ -279,18 +287,18 @@ if ( ( alarm > ALARM_ID_NO_ALARM ) && ( alarm < NUM_OF_ALARM_IDS ) ) { // verify alarm can be cleared - if ( FALSE == alarmTable[alarm].alarmNoClear ) + if ( FALSE == alarmTable[ alarm ].alarmNoClear ) { // clear alarm and broadcast alarm clear if not already cleared - if ( TRUE == alarmIsActive[alarm].data ) + if ( TRUE == alarmIsActive[ alarm ].data ) { broadcastAlarmCleared( alarm ); - alarmIsActive[alarm].data = FALSE; - alarmStartedAt[alarm].data = 0; + alarmIsActive[ alarm ].data = FALSE; + alarmStartedAt[ alarm ].data = 0; // clear FIFO if this alarm was in it - if ( alarmPriorityFIFO[alarmTable[alarm].alarmPriority] == alarm ) + if ( alarmPriorityFIFO[ alarmTable[ alarm ].alarmPriority ] == alarm ) { - resetAlarmPriorityFIFO( alarmTable[alarm].alarmPriority ); + resetAlarmPriorityFIFO( alarmTable[ alarm ].alarmPriority ); } } } @@ -361,13 +369,13 @@ { if ( TRUE == getAlarmActive(a) ) { - ALARM_PRIORITY_T almPriority = alarmTable[a].alarmPriority; - if ( ALARM_ID_NO_ALARM == alarmPriorityFIFO[almPriority] ) + ALARM_PRIORITY_T almPriority = alarmTable[ a ].alarmPriority; + if ( ALARM_ID_NO_ALARM == alarmPriorityFIFO[ almPriority ] ) { - alarmPriorityFIFO[almPriority] = a; + alarmPriorityFIFO[ almPriority ] = a; } highestPriority = MAX( almPriority, highestPriority ); - if ( TRUE == alarmTable[a].alarmIsFault ) + if ( TRUE == alarmTable[ a ].alarmIsFault ) { faultsActive = TRUE; } @@ -412,7 +420,7 @@ break; case ALARM_PRIORITY_HIGH: - if ( TRUE == alarmTable[alarmStatus.alarmTop].alarmIsFault ) + if ( TRUE == alarmTable[ alarmStatus.alarmTop ].alarmIsFault ) { requestAlarmLampPattern( LAMP_PATTERN_FAULT ); } @@ -488,7 +496,7 @@ // verify priority if ( priority < NUM_OF_ALARM_PRIORITIES ) { - alarmPriorityFIFO[priority] = ALARM_ID_NO_ALARM; + alarmPriorityFIFO[ priority ] = ALARM_ID_NO_ALARM; } else { @@ -603,8 +611,8 @@ if ( tim > value ) { result = TRUE; - alarmStartedAt[alarmID].ovData = (tim - value); - alarmStartedAt[alarmID].override = OVERRIDE_KEY; + alarmStartedAt[ alarmID ].ovData = ( tim - value ); + alarmStartedAt[ alarmID ].override = OVERRIDE_KEY; } } } @@ -631,8 +639,8 @@ if ( TRUE == isTestingActivated() ) { result = TRUE; - alarmStartedAt[alarmID].override = OVERRIDE_RESET; - alarmStartedAt[alarmID].ovData = alarmStartedAt[alarmID].ovInitData; + alarmStartedAt[ alarmID ].override = OVERRIDE_RESET; + alarmStartedAt[ alarmID ].ovData = alarmStartedAt[ alarmID ].ovInitData; } } Index: firmware/App/Services/CommBuffers.c =================================================================== diff -u -r90f6438e80dbe0a32472a076a0d1bc54db65d15a -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/CommBuffers.c (.../CommBuffers.c) (revision 90f6438e80dbe0a32472a076a0d1bc54db65d15a) +++ firmware/App/Services/CommBuffers.c (.../CommBuffers.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -32,9 +32,9 @@ // ********** private data ********** -static U32 commBufferByteCount[NUM_OF_COMM_BUFFERS][DOUBLE_BUFFERS]; // for each buffer, how many bytes does it contain? (also index to next available) -static U32 activeDoubleBuffer[NUM_OF_COMM_BUFFERS]; // for each buffer, which double buffer is being fed right now? -static U08 commBuffers[NUM_OF_COMM_BUFFERS][DOUBLE_BUFFERS][COMM_BUFFER_LENGTH]; // each is double buffered to avoid thread contention +static U32 commBufferByteCount[ NUM_OF_COMM_BUFFERS ][ DOUBLE_BUFFERS ]; // for each buffer, how many bytes does it contain? (also index to next available) +static U32 activeDoubleBuffer[ NUM_OF_COMM_BUFFERS ]; // for each buffer, which double buffer is being fed right now? +static U08 commBuffers[ NUM_OF_COMM_BUFFERS ][ DOUBLE_BUFFERS ][ COMM_BUFFER_LENGTH ]; // each is double buffered to avoid thread contention // ********** private function prototypes ********** @@ -57,13 +57,13 @@ // reset and zero out all buffers for ( b = 0; b < NUM_OF_COMM_BUFFERS; b++ ) { - activeDoubleBuffer[b] = 0; + activeDoubleBuffer[ b ] = 0; for ( d = 0; d < DOUBLE_BUFFERS; d++ ) { - commBufferByteCount[b][d] = 0; + commBufferByteCount[ b ][ d ] = 0; for ( i = 0; i < COMM_BUFFER_LENGTH; i++ ) { - commBuffers[b][d][i] = 0; + commBuffers[ b ][ d ][ i ] = 0; } } } @@ -97,20 +97,20 @@ // add requires brief thread protection because there may be multiple sources for transmits trying to add data to a buffer. _disable_IRQ(); - activeBuffer = activeDoubleBuffer[buffer]; - currentActiveBufCount = commBufferByteCount[buffer][activeBuffer]; + activeBuffer = activeDoubleBuffer[ buffer ]; + currentActiveBufCount = commBufferByteCount[ buffer ][ activeBuffer ]; // check to make sure buffer is not too full to service this add if ( len <= ( COMM_BUFFER_LENGTH - currentActiveBufCount ) ) { U08 *buffPtr; // buffer destination for added data // adjust buffer count per this data add (also reserves space to add data before releasing thread protection) - commBufferByteCount[buffer][activeBuffer] += len; + commBufferByteCount[ buffer ][ activeBuffer ] += len; // release thread protection _enable_IRQ(); // set destination pointer to end of active buffer data - buffPtr = &commBuffers[buffer][activeBuffer][currentActiveBufCount]; + buffPtr = &commBuffers[ buffer ][ activeBuffer ][ currentActiveBufCount ]; // copy source data to destination buffer memcpy( buffPtr, data, len ); // data successfully added to buffer @@ -159,9 +159,9 @@ // verify size of get if ( ( len <= ( COMM_BUFFER_LENGTH * DOUBLE_BUFFERS ) ) && ( len <= numberOfBytesInCommBuffer( buffer ) ) ) { - U32 activeBuffer = activeDoubleBuffer[buffer]; + U32 activeBuffer = activeDoubleBuffer[ buffer ]; U32 inactiveBuffer = ( activeBuffer == 0 ? 1 : 0 ); - U32 bytesInInactiveBuffer = commBufferByteCount[buffer][inactiveBuffer]; + U32 bytesInInactiveBuffer = commBufferByteCount[ buffer ][ inactiveBuffer ]; U32 sizeOfFirstConsumption = MIN( len, bytesInInactiveBuffer ); // see what we can get from inactive buffer @@ -218,22 +218,22 @@ // verify size of peek if ( ( len <= ( COMM_BUFFER_LENGTH * DOUBLE_BUFFERS ) ) && ( len <= numberOfBytesInCommBuffer( buffer ) ) ) { - U32 activeBuffer = activeDoubleBuffer[buffer]; + U32 activeBuffer = activeDoubleBuffer[ buffer ]; U32 inactiveBuffer = ( activeBuffer == 0 ? 1 : 0 ); - U32 bytesInInactiveBuffer = commBufferByteCount[buffer][inactiveBuffer]; + U32 bytesInInactiveBuffer = commBufferByteCount[ buffer ][ inactiveBuffer ]; if ( len <= bytesInInactiveBuffer ) { - memcpy( data, &commBuffers[buffer][inactiveBuffer][0], len ); + memcpy( data, &commBuffers[ buffer ][ inactiveBuffer ][ 0 ], len ); numOfBytesPeeked = len; } else // will need to get the rest from active buffer { U32 remNumOfBytes = len - bytesInInactiveBuffer; U08 *remPtr = data + bytesInInactiveBuffer; - memcpy( data, &commBuffers[buffer][inactiveBuffer][0], bytesInInactiveBuffer ); - memcpy( remPtr, &commBuffers[buffer][activeBuffer][0], remNumOfBytes ); + memcpy( data, &commBuffers[ buffer ][ inactiveBuffer ][ 0 ], bytesInInactiveBuffer ); + memcpy( remPtr, &commBuffers[ buffer ][ activeBuffer ][ 0 ], remNumOfBytes ); numOfBytesPeeked = bytesInInactiveBuffer + remNumOfBytes; } } @@ -268,7 +268,7 @@ // verify given buffer if ( buffer < NUM_OF_COMM_BUFFERS ) { - result = commBufferByteCount[buffer][0] + commBufferByteCount[buffer][1]; + result = commBufferByteCount[ buffer ][ 0 ] + commBufferByteCount[ buffer ][ 1 ]; } else // invalid buffer { @@ -292,13 +292,13 @@ *************************************************************************/ static U32 switchDoubleBuffer( COMM_BUFFER_T buffer ) { - U32 activeBuffer = activeDoubleBuffer[buffer]; + U32 activeBuffer = activeDoubleBuffer[ buffer ]; U32 inactiveBuffer = ( activeBuffer == 0 ? 1 : 0 ); // ensure inactive buffer is reset before making active - commBufferByteCount[buffer][inactiveBuffer] = 0; + commBufferByteCount[ buffer ][ inactiveBuffer ] = 0; // switch buffers - activeDoubleBuffer[buffer] = inactiveBuffer; + activeDoubleBuffer[ buffer ] = inactiveBuffer; // return the new active buffer (was just inactive) return inactiveBuffer; @@ -319,21 +319,21 @@ *************************************************************************/ static void getDataFromInactiveBuffer( COMM_BUFFER_T buffer, U08 *data, U32 len ) { - U32 activeBuffer = activeDoubleBuffer[buffer]; + U32 activeBuffer = activeDoubleBuffer[ buffer ]; U32 inactiveBuffer = ( activeBuffer == 0 ? 1 : 0 ); - U32 bytesInInactiveBuffer = commBufferByteCount[buffer][inactiveBuffer]; + U32 bytesInInactiveBuffer = commBufferByteCount[ buffer ][ inactiveBuffer ]; // get the requested data from inactive buffer - memcpy( data, &commBuffers[buffer][inactiveBuffer][0], len ); + memcpy( data, &commBuffers[ buffer ][ inactiveBuffer ][ 0 ], len ); if ( len < bytesInInactiveBuffer ) { - U08 *endPtr = (&commBuffers[buffer][inactiveBuffer][0] + len); + U08 *endPtr = (&commBuffers[ buffer ][ inactiveBuffer ][ 0 ] + len); // move un-consumed data in inactive buffer to start of inactive buffer - memcpy( &commBuffers[buffer][inactiveBuffer][0], endPtr, (bytesInInactiveBuffer - len) ); + memcpy( &commBuffers[ buffer ][ inactiveBuffer ][ 0 ], endPtr, ( bytesInInactiveBuffer - len ) ); // reduce byte count for inactive buffer by # of bytes consumed - commBufferByteCount[buffer][inactiveBuffer] -= len; + commBufferByteCount[ buffer ][ inactiveBuffer ] -= len; } else { Index: firmware/App/Services/FPGA.c =================================================================== diff -u -r620104f4a9e3148575703981a3063b9605b6e9b8 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/FPGA.c (.../FPGA.c) (revision 620104f4a9e3148575703981a3063b9605b6e9b8) +++ firmware/App/Services/FPGA.c (.../FPGA.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -121,10 +121,10 @@ static BOOL fpgaReadCommandResponseReceived = FALSE; // FPGA comm buffers -static U08 fpgaWriteCmdBuffer[FPGA_WRITE_CMD_BUFFER_LEN]; -static U08 fpgaReadCmdBuffer[FPGA_READ_CMD_BUFFER_LEN]; -static U08 fpgaWriteResponseBuffer[FPGA_WRITE_RSP_BUFFER_LEN]; -static U08 fpgaReadResponseBuffer[FPGA_READ_RSP_BUFFER_LEN]; +static U08 fpgaWriteCmdBuffer[ FPGA_WRITE_CMD_BUFFER_LEN ]; +static U08 fpgaReadCmdBuffer[ FPGA_READ_CMD_BUFFER_LEN ]; +static U08 fpgaWriteResponseBuffer[ FPGA_WRITE_RSP_BUFFER_LEN ]; +static U08 fpgaReadResponseBuffer[ FPGA_READ_RSP_BUFFER_LEN ]; // DMA control records static g_dmaCTRL fpgaDMAWriteControlRecord; @@ -450,13 +450,13 @@ U16 crc; // construct read command to read 3 registers starting at address 0 - fpgaReadCmdBuffer[0] = FPGA_READ_CMD_CODE; - fpgaReadCmdBuffer[1] = 0x00; // start at FPGA address 0 - fpgaReadCmdBuffer[2] = 0x00; - fpgaReadCmdBuffer[3] = sizeof(FPGA_HEADER_T); + fpgaReadCmdBuffer[ 0 ] = FPGA_READ_CMD_CODE; + fpgaReadCmdBuffer[ 1 ] = 0x00; // start at FPGA address 0 + fpgaReadCmdBuffer[ 2 ] = 0x00; + fpgaReadCmdBuffer[ 3 ] = sizeof(FPGA_HEADER_T); crc = crc16( fpgaReadCmdBuffer, FPGA_READ_CMD_HDR_LEN ); - fpgaReadCmdBuffer[4] = GET_MSB_OF_WORD( crc ); - fpgaReadCmdBuffer[5] = GET_LSB_OF_WORD( crc ); + fpgaReadCmdBuffer[ 4 ] = GET_MSB_OF_WORD( crc ); + fpgaReadCmdBuffer[ 5 ] = GET_LSB_OF_WORD( crc ); // prep DMA for sending the read cmd and receiving the response fpgaReadCommandInProgress = TRUE; setupDMAForReadResp( FPGA_READ_RSP_HDR_LEN + sizeof(FPGA_HEADER_T) + FPGA_CRC_LEN ); @@ -485,18 +485,18 @@ if ( TRUE == fpgaReadCommandResponseReceived ) { // did FPGA Ack the read command? - if ( fpgaReadResponseBuffer[0] == FPGA_READ_CMD_ACK ) + if ( fpgaReadResponseBuffer[ 0 ] == FPGA_READ_CMD_ACK ) { U32 rspSize = FPGA_READ_RSP_HDR_LEN + sizeof(FPGA_HEADER_T); U32 crcPos = rspSize; - U16 crc = MAKE_WORD_OF_BYTES( fpgaReadResponseBuffer[crcPos], fpgaReadResponseBuffer[crcPos + 1] ); + U16 crc = MAKE_WORD_OF_BYTES( fpgaReadResponseBuffer[ crcPos ], fpgaReadResponseBuffer[ crcPos + 1 ] ); // does the FPGA response CRC check out? if ( crc == crc16( fpgaReadResponseBuffer, rspSize ) ) { fpgaCommRetryCount = 0; // capture the read values - memcpy( &fpgaHeader, &fpgaReadResponseBuffer[FPGA_READ_RSP_HDR_LEN], sizeof(FPGA_HEADER_T) ); + memcpy( &fpgaHeader, &fpgaReadResponseBuffer[ FPGA_READ_RSP_HDR_LEN ], sizeof( FPGA_HEADER_T ) ); result = FPGA_STATE_WRITE_ALL_ACTUATORS; } else @@ -536,28 +536,28 @@ U16 crc; // construct bulk write command to write actuator data registers starting at address 3 (TODO - change address later) - fpgaWriteCmdBuffer[0] = FPGA_WRITE_CMD_CODE; - fpgaWriteCmdBuffer[1] = 0x08; // start at FPGA address 8 - fpgaWriteCmdBuffer[2] = 0x00; - fpgaWriteCmdBuffer[3] = sizeof(FPGA_ACTUATORS_T); - memcpy( &(fpgaWriteCmdBuffer[FPGA_WRITE_CMD_HDR_LEN]), &fpgaActuatorSetPoints, sizeof(FPGA_ACTUATORS_T) ); - crc = crc16( fpgaWriteCmdBuffer, FPGA_WRITE_CMD_HDR_LEN+sizeof(FPGA_ACTUATORS_T) ); - fpgaWriteCmdBuffer[FPGA_WRITE_CMD_HDR_LEN+sizeof(FPGA_ACTUATORS_T)] = GET_MSB_OF_WORD( crc ); - fpgaWriteCmdBuffer[FPGA_WRITE_CMD_HDR_LEN+sizeof(FPGA_ACTUATORS_T) + 1] = GET_LSB_OF_WORD( crc ); + fpgaWriteCmdBuffer[ 0 ] = FPGA_WRITE_CMD_CODE; + fpgaWriteCmdBuffer[ 1 ] = 0x08; // start at FPGA address 8 + fpgaWriteCmdBuffer[ 2 ] = 0x00; + fpgaWriteCmdBuffer[ 3 ] = sizeof(FPGA_ACTUATORS_T); + memcpy( &( fpgaWriteCmdBuffer[ FPGA_WRITE_CMD_HDR_LEN ] ), &fpgaActuatorSetPoints, sizeof( FPGA_ACTUATORS_T ) ); + crc = crc16( fpgaWriteCmdBuffer, FPGA_WRITE_CMD_HDR_LEN + sizeof( FPGA_ACTUATORS_T ) ); + fpgaWriteCmdBuffer[ FPGA_WRITE_CMD_HDR_LEN + sizeof( FPGA_ACTUATORS_T ) ] = GET_MSB_OF_WORD( crc ); + fpgaWriteCmdBuffer[ FPGA_WRITE_CMD_HDR_LEN + sizeof( FPGA_ACTUATORS_T ) + 1 ] = GET_LSB_OF_WORD( crc ); // construct bulk read command to read sensor data registers starting at address 8 - fpgaReadCmdBuffer[0] = FPGA_READ_CMD_CODE; - fpgaReadCmdBuffer[1] = 0x08; // start at FPGA address 0x108 (264) - fpgaReadCmdBuffer[2] = 0x01; - fpgaReadCmdBuffer[3] = sizeof(FPGA_SENSORS_T); + fpgaReadCmdBuffer[ 0 ] = FPGA_READ_CMD_CODE; + fpgaReadCmdBuffer[ 1 ] = 0x08; // start at FPGA address 0x108 (264) + fpgaReadCmdBuffer[ 2 ] = 0x01; + fpgaReadCmdBuffer[ 3 ] = sizeof(FPGA_SENSORS_T); crc = crc16( fpgaReadCmdBuffer, FPGA_READ_CMD_HDR_LEN ); - fpgaReadCmdBuffer[4] = GET_MSB_OF_WORD( crc ); - fpgaReadCmdBuffer[5] = GET_LSB_OF_WORD( crc ); + fpgaReadCmdBuffer[ 4 ] = GET_MSB_OF_WORD( crc ); + fpgaReadCmdBuffer[ 5 ] = GET_LSB_OF_WORD( crc ); // prep DMA for sending the bulk write cmd and receiving its response - setupDMAForWriteCmd( FPGA_WRITE_CMD_HDR_LEN + sizeof(FPGA_ACTUATORS_T) + FPGA_CRC_LEN ); + setupDMAForWriteCmd( FPGA_WRITE_CMD_HDR_LEN + sizeof( FPGA_ACTUATORS_T ) + FPGA_CRC_LEN ); setupDMAForWriteResp( FPGA_WRITE_RSP_HDR_LEN + FPGA_CRC_LEN ); // prep DMA for sending the bulk read cmd and receiving its response setupDMAForReadCmd( FPGA_READ_CMD_HDR_LEN + FPGA_CRC_LEN ); - setupDMAForReadResp( FPGA_READ_RSP_HDR_LEN + sizeof(FPGA_SENSORS_T) + FPGA_CRC_LEN ); + setupDMAForReadResp( FPGA_READ_RSP_HDR_LEN + sizeof( FPGA_SENSORS_T ) + FPGA_CRC_LEN ); // set fpga comm flags for bulk write cmd and follow-up bulk read command fpgaWriteCommandInProgress = TRUE; fpgaBulkWriteAndReadInProgress = TRUE; @@ -583,7 +583,7 @@ FPGA_STATE_T result = FPGA_STATE_WRITE_ALL_ACTUATORS; // check bulk write command success - if ( ( FALSE == fpgaWriteCommandResponseReceived ) || ( fpgaWriteResponseBuffer[0] != FPGA_WRITE_CMD_ACK ) ) + if ( ( FALSE == fpgaWriteCommandResponseReceived ) || ( fpgaWriteResponseBuffer[ 0 ] != FPGA_WRITE_CMD_ACK ) ) { fpgaCommRetryCount++; } @@ -592,18 +592,18 @@ if ( TRUE == fpgaReadCommandResponseReceived ) { // did FPGA Ack the read command? - if ( fpgaReadResponseBuffer[0] == FPGA_READ_CMD_ACK ) + if ( fpgaReadResponseBuffer[ 0 ] == FPGA_READ_CMD_ACK ) { U32 rspSize = FPGA_READ_RSP_HDR_LEN + sizeof(FPGA_SENSORS_T); U32 crcPos = rspSize; - U16 crc = MAKE_WORD_OF_BYTES( fpgaReadResponseBuffer[crcPos], fpgaReadResponseBuffer[crcPos + 1] ); + U16 crc = MAKE_WORD_OF_BYTES( fpgaReadResponseBuffer[ crcPos ], fpgaReadResponseBuffer[ crcPos + 1 ] ); // does the FPGA response CRC check out? if ( crc == crc16( fpgaReadResponseBuffer, rspSize ) ) { fpgaCommRetryCount = 0; // capture the read values - memcpy( &fpgaSensorReadings, &fpgaReadResponseBuffer[FPGA_READ_RSP_HDR_LEN], sizeof(FPGA_SENSORS_T) ); + memcpy( &fpgaSensorReadings, &fpgaReadResponseBuffer[ FPGA_READ_RSP_HDR_LEN ], sizeof( FPGA_SENSORS_T ) ); result = FPGA_STATE_WRITE_ALL_ACTUATORS; } else // bad CRC Index: firmware/App/Services/Interrupts.c =================================================================== diff -u -rbe83f01a4d54cbd0d92b68cb95a15dcbb06a9a51 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/Interrupts.c (.../Interrupts.c) (revision be83f01a4d54cbd0d92b68cb95a15dcbb06a9a51) +++ firmware/App/Services/Interrupts.c (.../Interrupts.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -23,6 +23,9 @@ #include "Interrupts.h" #include "FPGA.h" #include "SystemComm.h" +#ifdef DEBUG_ENABLED + #include "SystemCommMessages.h" +#endif // ********** private definitions ********** @@ -89,23 +92,47 @@ *************************************************************************/ void canErrorNotification(canBASE_t *node, uint32 notification) { +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; +#endif if ( node == canREG1 ) { if ( notification & canLEVEL_PARITY_ERR ) { can1ParityCnt++; +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "CAN parity error:%5d \n", can1ParityCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } else if ( notification & canLEVEL_BUS_OFF ) { can1BusOffCnt++; +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "CAN bus off error:%5d \n", can1BusOffCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } else if ( notification & canLEVEL_WARNING ) { can1WarningCnt++; +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "CAN bus warning:%5d \n", can1WarningCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } else if ( notification & canLEVEL_PASSIVE ) { can1PassiveCnt++; +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "CAN passive warning:%5d \n", can1PassiveCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } else { @@ -127,17 +154,31 @@ *************************************************************************/ void sciNotification(sciBASE_t *sci, uint32 flags) { +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + char debugStr[ 256 ]; +#endif if ( sci == sciREG ) { if ( ( flags & SCI_FE_INT ) != 0 ) { sci1FrameErrorCnt++; // TODO - clear and try to do something to recover (+ max retries = comm fault) +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "Debug UART frame error:%5d \n", sci1FrameErrorCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } if ( ( flags & SCI_OE_INT ) != 0 ) { sci1OverrunErrorCnt++; // TODO - clear and try to do something to recover (+ max retries = comm fault) +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "Debug UART overrun error:%5d \n", sci1OverrunErrorCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } } else if ( sci == scilinREG ) @@ -146,11 +187,21 @@ { sci2FrameErrorCnt++; // TODO - clear and try to do something to recover (+ max retries = comm fault) +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "FPGA UART frame error:%5d \n", sci2FrameErrorCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } if ( ( flags & SCI_OE_INT ) != 0 ) { sci2OverrunErrorCnt++; // TODO - clear and try to do something to recover (+ max retries = comm fault) +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + sprintf( debugStr, "FPGA UART overrun error:%5d \n", sci2OverrunErrorCnt ); + sendDebugData( (U08*)debugStr, strlen(debugStr) ); +#endif } } else Index: firmware/App/Services/MsgQueues.c =================================================================== diff -u -ra0aca1a4d87df989303b4f7f41208a4916861afa -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision a0aca1a4d87df989303b4f7f41208a4916861afa) +++ firmware/App/Services/MsgQueues.c (.../MsgQueues.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -26,10 +26,10 @@ // ********** private data ********** -static U32 msgQueueCounts[NUM_OF_MSG_QUEUES]; -static U32 msgQueueStarts[NUM_OF_MSG_QUEUES]; -static U32 msgQueueNexts[NUM_OF_MSG_QUEUES]; -static MESSAGE_WRAPPER_T msgQueues[NUM_OF_MSG_QUEUES][MAX_MSG_QUEUE_SIZE]; +static U32 msgQueueCounts[ NUM_OF_MSG_QUEUES ]; +static U32 msgQueueStarts[ NUM_OF_MSG_QUEUES ]; +static U32 msgQueueNexts[ NUM_OF_MSG_QUEUES ]; +static MESSAGE_WRAPPER_T msgQueues[ NUM_OF_MSG_QUEUES ][ MAX_MSG_QUEUE_SIZE ]; // ********** private function prototypes ********** @@ -49,12 +49,12 @@ // reset message queues for ( q = 0; q < NUM_OF_MSG_QUEUES; q++ ) { - msgQueueCounts[q] = 0; - msgQueueStarts[q] = 0; - msgQueueNexts[q] = 0; + msgQueueCounts[ q ] = 0; + msgQueueStarts[ q ] = 0; + msgQueueNexts[ q ] = 0; for ( m = 0; m < MAX_MSG_QUEUE_SIZE; m++ ) { - blankMessageInWrapper( &msgQueues[q][m] ); + blankMessageInWrapper( &msgQueues[ q ][ m ] ); } } } @@ -81,11 +81,11 @@ { result = TRUE; // add message to queue - msgQueues[queue][msgQueueNexts[queue]] = *msg; + msgQueues[ queue ][ msgQueueNexts[ queue ] ] = *msg; // increment next index to add to - msgQueueNexts[queue] = INC_WRAP(msgQueueNexts[queue],0,MAX_MSG_QUEUE_SIZE-1); + msgQueueNexts[ queue ] = INC_WRAP( msgQueueNexts[ queue ], 0, MAX_MSG_QUEUE_SIZE - 1 ); // increment queue count - msgQueueCounts[queue]++; + msgQueueCounts[ queue ]++; } else // msg queue is full { @@ -123,11 +123,11 @@ { result = TRUE; // get message from queue - *msg = msgQueues[queue][msgQueueStarts[queue]]; + *msg = msgQueues[ queue ][ msgQueueStarts[ queue ] ]; // increment queue next index to get from - msgQueueStarts[queue] = INC_WRAP(msgQueueStarts[queue],0,MAX_MSG_QUEUE_SIZE-1); + msgQueueStarts[ queue ] = INC_WRAP( msgQueueStarts[ queue ], 0, MAX_MSG_QUEUE_SIZE - 1 ); // decrement queue count - msgQueueCounts[queue]--; + msgQueueCounts[ queue ]--; } else // message queue is empty { @@ -158,7 +158,7 @@ // verify given message queue if ( queue < NUM_OF_MSG_QUEUES ) { - if ( msgQueueCounts[queue] == 0 ) + if ( msgQueueCounts[ queue ] == 0 ) { result = TRUE; } @@ -187,7 +187,7 @@ // verify given message queue if ( queue < NUM_OF_MSG_QUEUES ) { - if ( msgQueueCounts[queue] < MAX_MSG_QUEUE_SIZE ) + if ( msgQueueCounts[ queue ] < MAX_MSG_QUEUE_SIZE ) { result = FALSE; } Index: firmware/App/Services/MsgQueues.h =================================================================== diff -u -r90f6438e80dbe0a32472a076a0d1bc54db65d15a -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/MsgQueues.h (.../MsgQueues.h) (revision 90f6438e80dbe0a32472a076a0d1bc54db65d15a) +++ firmware/App/Services/MsgQueues.h (.../MsgQueues.h) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -39,7 +39,7 @@ typedef struct { MESSAGE_HEADER_T hdr; // message header - U08 payload[MAX_MSG_PAYLOAD_SIZE]; // message payload + U08 payload[ MAX_MSG_PAYLOAD_SIZE ]; // message payload } MESSAGE_T; typedef struct Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -rd9cc76524777a12ba77b58ce95416dddfb032997 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision d9cc76524777a12ba77b58ce95416dddfb032997) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -43,7 +43,7 @@ // ********** private data ********** -const COMM_BUFFER_T CAN_OUT_BUFFERS[NUM_OF_CAN_OUT_BUFFERS] = +const COMM_BUFFER_T CAN_OUT_BUFFERS[ NUM_OF_CAN_OUT_BUFFERS ] = { COMM_BUFFER_OUT_CAN_HD_ALARM, COMM_BUFFER_OUT_CAN_HD_2_DG, @@ -52,7 +52,7 @@ COMM_BUFFER_OUT_CAN_PC }; -const COMM_BUFFER_T MSG_IN_BUFFERS[NUM_OF_MSG_IN_BUFFERS] = +const COMM_BUFFER_T MSG_IN_BUFFERS[ NUM_OF_MSG_IN_BUFFERS ] = { COMM_BUFFER_IN_CAN_DG_ALARM, COMM_BUFFER_IN_CAN_UI_ALARM, @@ -64,8 +64,8 @@ COMM_BUFFER_IN_UART_PC }; -static U08 pcXmitPacket[PC_MESSAGE_PACKET_SIZE] = {0,0,0,0,0,0,0,0}; -static U08 pcRecvPacket[PC_MESSAGE_PACKET_SIZE] = {0,0,0,0,0,0,0,0}; +static U08 pcXmitPacket[ PC_MESSAGE_PACKET_SIZE ] = {0,0,0,0,0,0,0,0}; +static U08 pcRecvPacket[ PC_MESSAGE_PACKET_SIZE ] = {0,0,0,0,0,0,0,0}; // DMA control records static g_dmaCTRL pcDMAXmitControlRecord; // DMA transmit control record (UART-debug) @@ -268,7 +268,7 @@ } else if ( TRUE == isCANBoxForRecv( srcCANBox ) ) { - U08 data[CAN_MESSAGE_PAYLOAD_SIZE]; + U08 data[ CAN_MESSAGE_PAYLOAD_SIZE ]; // get CAN packet received on given CAN message box if ( FALSE != canIsRxMessageArrived( canREG1, srcCANBox ) ) @@ -406,7 +406,7 @@ for ( i = 0; i < NUM_OF_CAN_OUT_BUFFERS; i++ ) { - if ( CAN_OUT_BUFFERS[i] == srcCANBox ) + if ( CAN_OUT_BUFFERS[ i ] == srcCANBox ) { result = TRUE; break; @@ -433,7 +433,7 @@ for ( i = 0; i < NUM_OF_CAN_IN_BUFFERS; i++ ) { - if ( MSG_IN_BUFFERS[i] == srcCANBox ) + if ( MSG_IN_BUFFERS[ i ] == srcCANBox ) { result = TRUE; break; @@ -468,9 +468,9 @@ // search for next priority CAN packet to transmit for ( i = 0; i < NUM_OF_CAN_OUT_BUFFERS; i++ ) { - if ( numberOfBytesInCommBuffer( CAN_OUT_BUFFERS[i] ) >= CAN_MESSAGE_PAYLOAD_SIZE ) + if ( numberOfBytesInCommBuffer( CAN_OUT_BUFFERS[ i ] ) >= CAN_MESSAGE_PAYLOAD_SIZE ) { - result = CAN_OUT_BUFFERS[i]; + result = CAN_OUT_BUFFERS[ i ]; break; // found highest priority packet to transmit - we're done } } @@ -496,7 +496,7 @@ // if a buffer is found with a packet to transmit, get packet from buffer and transmit it if ( buffer != COMM_BUFFER_NOT_USED ) { - U08 data[CAN_MESSAGE_PAYLOAD_SIZE]; + U08 data[ CAN_MESSAGE_PAYLOAD_SIZE ]; U32 dataSize = getFromCommBuffer( buffer, data, CAN_MESSAGE_PAYLOAD_SIZE ); CAN_MESSAGE_BOX_T mBox = buffer; // CAN message boxes and comm buffers are aligned @@ -562,7 +562,7 @@ *************************************************************************/ static void processIncomingData( void ) { - U08 data[sizeof(MESSAGE_WRAPPER_T)+1]; + U08 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 ]; U32 i; // queue any received messages @@ -578,18 +578,18 @@ messagesInBuffer = FALSE; // since messages can have 8-byte alignment padding left unconsumed by last get, get padding out of buffer - consumeBufferPaddingBeforeSync( MSG_IN_BUFFERS[i] ); + consumeBufferPaddingBeforeSync( MSG_IN_BUFFERS[ i ] ); // do we have enough bytes in buffer for smallest message? - numOfBytesInBuffer = numberOfBytesInCommBuffer( MSG_IN_BUFFERS[i] ); + numOfBytesInBuffer = numberOfBytesInCommBuffer( MSG_IN_BUFFERS[ i ] ); if ( numOfBytesInBuffer >= MESSAGE_OVERHEAD_SIZE ) { // peek at minimum of all bytes available or max message size (+1 for sync byte) - U32 bytesPeeked = peekFromCommBuffer( MSG_IN_BUFFERS[i], data, MIN(numOfBytesInBuffer,sizeof(MESSAGE_WRAPPER_T)+1) ); + U32 bytesPeeked = peekFromCommBuffer( MSG_IN_BUFFERS[ i ], data, MIN( numOfBytesInBuffer, sizeof( MESSAGE_WRAPPER_T ) + 1 ) ); U32 msgSize = parseMessageFromBuffer( data, bytesPeeked ); if ( msgSize > 0 ) { // consume message (+sync byte) - msgSize = getFromCommBuffer( MSG_IN_BUFFERS[i], data, msgSize+1 ); + msgSize = getFromCommBuffer( MSG_IN_BUFFERS[ i ], data, msgSize + 1 ); // if message data is at least minimum size, convert received message data to a message and add to message queue if ( msgSize > MESSAGE_OVERHEAD_SIZE ) { @@ -668,15 +668,15 @@ for ( i = 0; i < len; i++ ) { // find sync byte - if ( MESSAGE_SYNC_BYTE == data[i] ) + if ( MESSAGE_SYNC_BYTE == data[ i ] ) { U32 pos = i + 1; // skip past sync byte implemented U32 remSize = len - pos; // if a minimum sized msg would fit in remaining, continue if ( remSize >= MESSAGE_OVERHEAD_SIZE ) { - payloadSize = data[pos + sizeof(U16)]; + payloadSize = data[ pos + sizeof( U16 ) ]; msgSize = MESSAGE_OVERHEAD_SIZE + payloadSize; // we now know the size of the message - we can now know if full message is contained in buffer if ( msgSize <= remSize ) Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r16efeb7b3a19e02ae83a553a77f01a3550ff7850 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 16efeb7b3a19e02ae83a553a77f01a3550ff7850) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -68,25 +68,25 @@ U32 i; // prefix data with message sync byte - data[msgSize++] = MESSAGE_SYNC_BYTE; + data[ msgSize++ ] = MESSAGE_SYNC_BYTE; // serialize message header data - memcpy( &data[msgSize], &(msg.hdr), sizeof(MESSAGE_HEADER_T) ); - msgSize += sizeof(MESSAGE_HEADER_T); + memcpy( &data[ msgSize ], &( msg.hdr ), sizeof( MESSAGE_HEADER_T ) ); + msgSize += sizeof( MESSAGE_HEADER_T ); // serialize message payload (only used bytes per payloadLen field) - memcpy( &data[msgSize], &(msg.payload), msg.hdr.payloadLen ); + memcpy( &data[ msgSize ], &( msg.payload ), msg.hdr.payloadLen ); msgSize += msg.hdr.payloadLen; // TODO - calculate 8-bit CRC - data[msgSize++] = 0; // TODO - s/b 8-bit CRC when calc is available + data[ msgSize++ ] = 0; // TODO - s/b 8-bit CRC when calc is available // pad with zero bytes to get length a multiple of CAN_MESSAGE_PAYLOAD_SIZE (8) sizeMod = msgSize % CAN_MESSAGE_PAYLOAD_SIZE; sizePad = ( sizeMod == 0 ? 0 : CAN_MESSAGE_PAYLOAD_SIZE - sizeMod ); for ( i = 0; i < sizePad; i++ ) { - data[msgSize++] = 0; + data[ msgSize++ ] = 0; } return msgSize; @@ -103,22 +103,22 @@ * @details * Inputs : none * Outputs : Off button msg constructed and queued. - * @param promptUser : TRUE if UI should prompt user to confirm power off \n - * request, FALSE if UI should cancel the prompt. + * @param cmd : 0=prompt user to confirm, 1=cancel prompt, 2=reject user off \n + * request. * @return TRUE if msg successfully queued for transmit, FALSE if not *************************************************************************/ -BOOL sendOffButtonMsgToUI( BOOL promptUser ) +BOOL sendOffButtonMsgToUI( U08 cmd ) { 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 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding // create a message record blankMessage( &msg ); msg.hdr.msgID = MSG_ID_OFF_BUTTON_PRESS; msg.hdr.payloadLen = 1; - msg.payload[0] = (U08)promptUser; + msg.payload[ 0 ] = cmd; // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -162,15 +162,15 @@ 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 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding U08 *payloadPtr = msg.payload; // create a message record blankMessage( &msg ); msg.hdr.msgID = MSG_ID_ALARM_STATUS; - msg.hdr.payloadLen = sizeof(COMP_ALARM_STATUS_T); + msg.hdr.payloadLen = sizeof( COMP_ALARM_STATUS_T ); - memcpy( payloadPtr, &almStatus, sizeof(COMP_ALARM_STATUS_T) ); + memcpy( payloadPtr, &almStatus, sizeof( COMP_ALARM_STATUS_T ) ); // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -198,19 +198,19 @@ 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 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding U08 *payloadPtr = msg.payload; // create a message record blankMessage( &msg ); msg.hdr.msgID = MSG_ID_ALARM_TRIGGERED; - msg.hdr.payloadLen = sizeof(ALARM_ID_T) + sizeof(ALARM_DATA_T) + sizeof(ALARM_DATA_T); + msg.hdr.payloadLen = sizeof( ALARM_ID_T ) + sizeof( ALARM_DATA_T ) + sizeof( ALARM_DATA_T ); - memcpy( payloadPtr, &alarm, sizeof(ALARM_ID_T) ); - payloadPtr += sizeof(ALARM_ID_T); - memcpy( payloadPtr, &almData1, sizeof(ALARM_DATA_T) ); - payloadPtr += sizeof(ALARM_DATA_T); - memcpy( payloadPtr, &almData2, sizeof(ALARM_DATA_T) ); + memcpy( payloadPtr, &alarm, sizeof( ALARM_ID_T ) ); + payloadPtr += sizeof( ALARM_ID_T ); + memcpy( payloadPtr, &almData1, sizeof( ALARM_DATA_T ) ); + payloadPtr += sizeof( ALARM_DATA_T ); + memcpy( payloadPtr, &almData2, sizeof( ALARM_DATA_T ) ); // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -236,15 +236,15 @@ 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 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding U08 *payloadPtr = msg.payload; // create a message record blankMessage( &msg ); msg.hdr.msgID = MSG_ID_ALARM_CLEARED; - msg.hdr.payloadLen = sizeof(ALARM_ID_T); + msg.hdr.payloadLen = sizeof( ALARM_ID_T ); - memcpy( payloadPtr, &alarm, sizeof(ALARM_ID_T) ); + memcpy( payloadPtr, &alarm, sizeof( ALARM_ID_T ) ); // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -275,25 +275,25 @@ 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 data[ sizeof( MESSAGE_WRAPPER_T ) + 1 + CAN_MESSAGE_PAYLOAD_SIZE ]; // must hold full (wrapped) message + sync + any CAN padding U08 *payloadPtr = msg.payload; // create a message record blankMessage( &msg ); msg.hdr.msgID = MSG_ID_BLOOD_FLOW_DATA; - msg.hdr.payloadLen = sizeof(U32) + sizeof(F32) + sizeof(F32) + sizeof(F32) + sizeof(F32) + sizeof(F32); + msg.hdr.payloadLen = sizeof( U32 ) + sizeof( F32 ) + sizeof( F32 ) + sizeof( F32 ) + sizeof( F32 ) + sizeof( F32 ); - memcpy( payloadPtr, &flowStPt, sizeof(U32) ); - payloadPtr += sizeof(U32); - memcpy( payloadPtr, &measFlow, sizeof(F32) ); - payloadPtr += sizeof(F32); - memcpy( payloadPtr, &measRotorSpd, sizeof(F32) ); - payloadPtr += sizeof(F32); - memcpy( payloadPtr, &measSpd, sizeof(F32) ); - payloadPtr += sizeof(F32); - memcpy( payloadPtr, &measMCSpd, sizeof(F32) ); - payloadPtr += sizeof(F32); - memcpy( payloadPtr, &measMCCurr, sizeof(F32) ); + memcpy( payloadPtr, &flowStPt, sizeof( U32 ) ); + payloadPtr += sizeof( U32 ); + memcpy( payloadPtr, &measFlow, sizeof( F32 ) ); + payloadPtr += sizeof( F32 ); + memcpy( payloadPtr, &measRotorSpd, sizeof( F32 ) ); + payloadPtr += sizeof( F32 ); + memcpy( payloadPtr, &measSpd, sizeof( F32 ) ); + payloadPtr += sizeof( F32 ); + memcpy( payloadPtr, &measMCSpd, sizeof( F32 ) ); + payloadPtr += sizeof( F32 ); + memcpy( payloadPtr, &measMCCurr, sizeof( F32 ) ); // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -402,13 +402,13 @@ BOOL result; MESSAGE_T msg; U32 msgSize; - U08 data[PC_MESSAGE_PACKET_SIZE]; + U08 data[ PC_MESSAGE_PACKET_SIZE ]; // create a message record blankMessage( &msg ); msg.hdr.msgID = msgID; msg.hdr.payloadLen = 1; - msg.payload[0] = (U08)ack; + msg.payload[ 0 ] = (U08)ack; // serialize the message (w/ sync, CRC, and appropriate CAN padding) msgSize = serializeMessage( msg, data ); @@ -433,7 +433,7 @@ { // verify pass code // TODO - placeholder - how do we want to authenticate tester? - if ( ( 3 == message->hdr.payloadLen ) && ( 0x31 == message->payload[0] ) && ( 0x32 == message->payload[1] ) && ( 0x33 == message->payload[2] ) ) + if ( ( 3 == message->hdr.payloadLen ) && ( 0x31 == message->payload[ 0 ] ) && ( 0x32 == message->payload[ 1 ] ) && ( 0x33 == message->payload[ 2 ] ) ) { testerLoggedIn = TRUE; } Index: firmware/App/Services/SystemCommMessages.h =================================================================== diff -u -r16efeb7b3a19e02ae83a553a77f01a3550ff7850 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 16efeb7b3a19e02ae83a553a77f01a3550ff7850) +++ firmware/App/Services/SystemCommMessages.h (.../SystemCommMessages.h) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -56,7 +56,7 @@ // ********** public function prototypes ********** // MSG_ID_OFF_BUTTON_PRESS -BOOL sendOffButtonMsgToUI( BOOL promptUser ); +BOOL sendOffButtonMsgToUI( U08 cmd ); void handleOffButtonConfirmMsgFromUI( MESSAGE_T *message ); // MSG_ID_ALARM_STATUS Index: firmware/App/Services/Utilities.c =================================================================== diff -u -r6b6b337c1c0e7dd7c1b7311a39596473d7214ee4 -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/Utilities.c (.../Utilities.c) (revision 6b6b337c1c0e7dd7c1b7311a39596473d7214ee4) +++ firmware/App/Services/Utilities.c (.../Utilities.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -100,7 +100,7 @@ while ( len-- > 0 ) { - crc = (crc << SHIFT_8_BITS_FOR_BYTE_SHIFT) ^ crc16_table[*address ^ ((crc >> SHIFT_8_BITS_FOR_BYTE_SHIFT) & MASK_OFF_MSB)]; + crc = ( crc << SHIFT_8_BITS_FOR_BYTE_SHIFT ) ^ crc16_table[ *address ^ ( ( crc >> SHIFT_8_BITS_FOR_BYTE_SHIFT ) & MASK_OFF_MSB ) ]; address++; } @@ -124,7 +124,7 @@ while ( len-- > 0 ) { - crc = crc8_table[(*address) ^ crc]; + crc = crc8_table[ (*address) ^ crc ]; address++; } Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -r90f6438e80dbe0a32472a076a0d1bc54db65d15a -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 90f6438e80dbe0a32472a076a0d1bc54db65d15a) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -69,10 +69,10 @@ // initialize task check-ins to false for ( i = 0; i < NUM_OF_TASKS; i++ ) { - watchdogTaskCheckedIn[i].data = FALSE; - watchdogTaskCheckedIn[i].ovData = FALSE; - watchdogTaskCheckedIn[i].ovInitData = FALSE; - watchdogTaskCheckedIn[i].override = OVERRIDE_RESET; + watchdogTaskCheckedIn[ i ].data = FALSE; + watchdogTaskCheckedIn[ i ].ovData = FALSE; + watchdogTaskCheckedIn[ i ].ovInitData = FALSE; + watchdogTaskCheckedIn[ i ].override = OVERRIDE_RESET; } } @@ -123,7 +123,7 @@ { if ( task < NUM_OF_TASKS ) { - watchdogTaskCheckedIn[task].data = TRUE; + watchdogTaskCheckedIn[ task ].data = TRUE; } } @@ -196,7 +196,7 @@ // initialize task check-ins to false for ( i = 0; i < NUM_OF_TASKS; i++ ) { - watchdogTaskCheckedIn[i].data = FALSE; + watchdogTaskCheckedIn[ i ].data = FALSE; } } Index: firmware/App/TestSupport.h =================================================================== diff -u -r90f6438e80dbe0a32472a076a0d1bc54db65d15a -r1bbf9da32e622975efed00b1a7589387a9829440 --- firmware/App/TestSupport.h (.../TestSupport.h) (revision 90f6438e80dbe0a32472a076a0d1bc54db65d15a) +++ firmware/App/TestSupport.h (.../TestSupport.h) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -68,7 +68,7 @@ t ovData; \ U32 override; \ }; \ -static struct t_name d_name[s] +static struct t_name d_name[ s ] // DATA_GET_PROTOTYPE - declares a function prototype for a DATA getter function // t = data's type @@ -109,13 +109,13 @@ t result = f_val; \ if ( i_name <= max ) \ { \ - if ( OVERRIDE_KEY == d_name[i_name].override ) \ + if ( OVERRIDE_KEY == d_name[ i_name ].override ) \ { \ - result = d_name[i_name].ovData; \ + result = d_name[ i_name ].ovData; \ } \ else \ { \ - result = d_name[i_name].data; \ + result = d_name[ i_name ].data; \ } \ } \ else \ @@ -170,8 +170,8 @@ if ( TRUE == isTestingActivated() ) \ { \ result = TRUE; \ - d_name[i_name].ovData = value; \ - d_name[i_name].override = OVERRIDE_KEY; \ + d_name[ i_name ].ovData = value; \ + d_name[ i_name ].override = OVERRIDE_KEY; \ } \ } \ return result; \ @@ -184,8 +184,8 @@ if ( TRUE == isTestingActivated() ) \ { \ result = TRUE; \ - d_name[i_name].override = OVERRIDE_RESET; \ - d_name[i_name].ovData = d_name[i_name].ovInitData; \ + d_name[ i_name ].override = OVERRIDE_RESET; \ + d_name[ i_name ].ovData = d_name[ i_name ].ovInitData; \ } \ } \ return result; \ Index: results/VectorCAST.log =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/VectorCAST.log (.../VectorCAST.log) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -1,6 +1,6 @@ COMMAND: /opt/release/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-06 18:01:25 +TIME: 2019-12-10 17:58:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG @@ -35,7 +35,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e ALARMLAMP -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:01:31 +TIME: 2019-12-10 17:58:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -166,7 +166,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e ALARMLAMP test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:01:34 +TIME: 2019-12-10 17:58:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -181,7 +181,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:01:35 +TIME: 2019-12-10 17:58:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -376,7 +376,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:01:37 +TIME: 2019-12-10 17:58:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG @@ -411,7 +411,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e ALARMMGMT -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:01:43 +TIME: 2019-12-10 17:58:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -677,7 +677,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e ALARMMGMT test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:01:46 +TIME: 2019-12-10 17:58:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -692,1046 +692,15 @@ Script processing completed COMMAND: /opt/release/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-06 18:01:48 +TIME: 2019-12-10 17:58:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG Opening Environment - VectorCAST encountered an internal error and needs to close this environment: -Python error: - KeyboardInterrupt: -Traceback (recent call last): - File "/home/LOCAL/blduser/qa/1809/src/python/vc_bootstrap.py", line 192, in load_module - File "vector/apps/DataAPI/api.py", line 46, in - File "/home/LOCAL/blduser/qa/1809/src/python/vc_bootstrap.py", line 192, in load_module - File "vector/apps/ReportBuilder/custom_report.py", line 11, in - File "/opt/release/python/install/json/__init__.py", line 108, in - from .decoder import JSONDecoder - File "/opt/release/python/install/json/decoder.py", line 55, in - STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS) - File "/opt/release/python/install/re.py", line 194, in compile - return _compile(pattern, flags) - File "/opt/release/python/install/re.py", line 249, in _compile - p = sre_compile.compile(pattern, flags) - File "/opt/release/python/install/sre_compile.py", line 572, in compile - p = sre_parse.parse(p, flags) - File "/opt/release/python/install/sre_parse.py", line 735, in parse - p = _parse_sub(source, pattern, 0) - File "/opt/release/python/install/sre_parse.py", line 343, in _parse_sub - itemsappend(_parse(source, state, nested + 1)) - File "/opt/release/python/install/sre_parse.py", line 695, in _parse - p = _parse_sub(source, state, nested + 1) - File "/opt/release/python/install/sre_parse.py", line 343, in _parse_sub - itemsappend(_parse(source, state, nested + 1)) - File "/opt/release/python/install/sre_parse.py", line 461, in _parse - this = sourceget() - File "/opt/release/python/install/sre_parse.py", line 215, in get - self.__next() - File "/opt/release/python/install/sre_parse.py", line 198, in __next - char = self.string[self.index] -This error will be logged in: -/tmp/errors.mdb.log - Could not open environment 'ALARMMGMT' - Traceback (most recent call last): - - File "", line 416, in process_event - -KeyboardInterrupt - in :416 -COMMAND: /opt/release/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-06 18:01:49 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -**Environment Builder Version 19 revision c2818cf (09/24/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" - Initializing search list - Creating the Environment Directory - Creating Environment "BLOODFLOW" - Unit 8 (not-stubbed): User Defined Globals - Parsing -Terminating program -COMMAND: /opt/release/clicast -e BLOODFLOW -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-06 18:01:50 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG - Environment 'BLOODFLOW''s database missing or inaccessible - Traceback (most recent call last): - - File "", line 416, in process_event - -KeyboardInterrupt - in :416 -Environment was not successfully built: NONE_SET -COMMAND: /opt/release/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-06 18:01:52 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -**Environment Builder Version 19 revision c2818cf (09/24/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" - 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 - Unit 9 (tdd-sbf-source): Buttons - 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 Buttons - Compiling file Buttons - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/release/clicast -e BUTTONS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:01:58 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/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 - 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 300 - Processing script line 350 - Processing script line 550 - Processing script line 650 - Processing script line 700 - Processing script line 750 - Script Creation Completed --------------------------------------------------------------------------------- -Test Script Log --------------------------------------------------------------------------------- -(I) @LINE: 1 - >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst -(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 -(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: NominalPath -(S) @LINE: 195 - >>> Processed Test Case: NominalPath -(I) @LINE: 201 - >>> Processing Test Case: Override -(S) @LINE: 207 - >>> Processed Test Case: Override -(I) @LINE: 215 - >>> Processing Test Case: NominalPath -(S) @LINE: 221 - >>> 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 -(S) @LINE: 266 - >>> Processed Test Case: PressedToReleasedOffPendingFirstPulse -(I) @LINE: 272 - >>> Processing Test Case: PressedToReleasedOffPendingIntermediate -(S) @LINE: 284 - >>> Processed Test Case: PressedToReleasedOffPendingIntermediate -(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 -(S) @LINE: 382 - >>> Processed Test Case: handleOffButtonProcessing_OffRequestPendingExpired -(I) @LINE: 390 - >>> Processing Test Case: NoChange -(S) @LINE: 397 - >>> Processed Test Case: NoChange -(I) @LINE: 403 - >>> Processing Test Case: PressTimedOut -(S) @LINE: 416 - >>> Processed Test Case: PressTimedOut -(I) @LINE: 422 - >>> Processing Test Case: PressedToReleased -(S) @LINE: 429 - >>> Processed Test Case: PressedToReleased -(I) @LINE: 435 - >>> Processing Test Case: ReleasedToPressed -(S) @LINE: 448 - >>> Processed Test Case: ReleasedToPressed -(I) @LINE: 456 - >>> Processing Test Case: NominalPath -(S) @LINE: 475 - >>> Processed Test Case: NominalPath -(I) @LINE: 483 - >>> Processing Test Case: FaultMode -(S) @LINE: 486 - >>> Processed Test Case: FaultMode -(I) @LINE: 492 - >>> Processing Test Case: InvalidMode -(S) @LINE: 495 - >>> Processed Test Case: InvalidMode -(I) @LINE: 501 - >>> Processing Test Case: ServiceMode -(S) @LINE: 504 - >>> Processed Test Case: ServiceMode -(I) @LINE: 510 - >>> Processing Test Case: StandbyMode -(S) @LINE: 513 - >>> Processed Test Case: StandbyMode -(I) @LINE: 521 - >>> Processing Test Case: NominalPath -(S) @LINE: 525 - >>> Processed Test Case: NominalPath -(I) @LINE: 533 - >>> Processing Test Case: TestingActive -(S) @LINE: 544 - >>> Processed Test Case: TestingActive -(I) @LINE: 550 - >>> Processing Test Case: TestingInactive -(S) @LINE: 561 - >>> Processed Test Case: TestingInactive -(I) @LINE: 569 - >>> Processing Test Case: TestingActive -(S) @LINE: 580 - >>> Processed Test Case: TestingActive -(I) @LINE: 586 - >>> Processing Test Case: TestingInactive -(S) @LINE: 597 - >>> Processed Test Case: TestingInactive -(I) @LINE: 605 - >>> Processing Test Case: TestingActive -(S) @LINE: 617 - >>> Processed Test Case: TestingActive -(I) @LINE: 623 - >>> Processing Test Case: TestingInactive -(S) @LINE: 635 - >>> Processed Test Case: TestingInactive -(I) @LINE: 643 - >>> Processing Test Case: TestingActive -(S) @LINE: 655 - >>> Processed Test Case: TestingActive -(I) @LINE: 661 - >>> Processing Test Case: TestingInactive -(S) @LINE: 673 - >>> Processed Test Case: TestingInactive -(I) @LINE: 681 - >>> Processing Test Case: InvalidModeToTurnOff -(S) @LINE: 688 - >>> Processed Test Case: InvalidModeToTurnOff -(I) @LINE: 694 - >>> Processing Test Case: OffButtonRejected -(S) @LINE: 700 - >>> Processed Test Case: OffButtonRejected -(I) @LINE: 706 - >>> Processing Test Case: OffDuringFaultMode -(S) @LINE: 713 - >>> Processed Test Case: OffDuringFaultMode -(I) @LINE: 719 - >>> Processing Test Case: OffDuringServiceMode -(S) @LINE: 726 - >>> Processed Test Case: OffDuringServiceMode -(I) @LINE: 732 - >>> Processing Test Case: OffDuringStandbyMode -(S) @LINE: 739 - >>> Processed Test Case: OffDuringStandbyMode -(I) @LINE: 745 - >>> Processing Test Case: userConfirmOffButton_NoConfirmExpected -(S) @LINE: 754 - >>> Processed Test Case: userConfirmOffButton_NoConfirmExpected -(S) @LINE: 754 - >>> Script processing completed -COMMAND: /opt/release/clicast -e BUTTONS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:02:02 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -COMMAND: /opt/release/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-06 18:06:29 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -**Environment Builder Version 19 revision c2818cf (09/24/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" - 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 - Unit 9 (tdd-sbf-source): AlarmLamp - 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 AlarmLamp - Compiling file AlarmLamp - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/release/clicast -e ALARMLAMP -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:06:35 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/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 - Building Master Min Mid Max data. - Opening Parameter/Global File - Opening Types File - Environment is Open - Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines - Processing script line 50 - Processing script line 150 - Processing script line 400 - 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 -(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 -(S) @LINE: 185 - >>> Processed Test Case: RedToYellow -(I) @LINE: 191 - >>> Processing Test Case: StartTest -(S) @LINE: 199 - >>> Processed Test Case: StartTest -(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 - >>> Script processing completed -COMMAND: /opt/release/clicast -e ALARMLAMP test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:06:38 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed -COMMAND: /opt/release/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-06 18:06:39 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 - Running all AlarmLamp.initAlarmLamp 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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.execAlarmLamp test cases - Running: NoPatternChangeManual - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoPatternChangeStep0To1 - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NoPatternChangeStep1To0 - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: NominalPatternChange - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.requestAlarmLampPattern test cases - Running: InvalidLampPatternGiven - 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 - 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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.getCurrentAlarmLampPattern 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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: Override - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.execAlarmLampTest test cases - Running: CompleteToStart - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: GreenOn - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: GreenToOff - 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 - 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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: RedOn - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: RedToYellow - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: StartTest - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: YellowOn - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: YellowToGreen - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.setAlarmLampToPatternStep test cases - Running: AlarmHigh_Red - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: AlarmMedium_Yellow - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: OK_Green - 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 - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.testSetCurrentLampPatternOverride 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/2212972009/ALARMLAMP/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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running all AlarmLamp.testResetCurrentLampPatternOverride 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/2212972009/ALARMLAMP/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/2212972009/ALARMLAMP/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Completed Batch Execution processing -COMMAND: /opt/release/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-06 18:06:41 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -**Environment Builder Version 19 revision c2818cf (09/24/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" - 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 - Unit 9 (tdd-sbf-source): AlarmMgmt - 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 AlarmMgmt - Compiling file AlarmMgmt - Compiling file Data File Number 1 - Linking Instrumented Harness - Coverage Initialized - Writing VectorCAST Database Files to Disk - Environment built Successfully -COMMAND: /opt/release/clicast -e ALARMMGMT -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:06:48 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/19) - Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/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 - 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 250 - Processing script line 350 - 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 - 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 -(I) @LINE: 24 - >>> Processing Test Case: activateAlarm_AlreadyActive -(S) @LINE: 31 - >>> Processed Test Case: activateAlarm_AlreadyActive -(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 - >>> Script processing completed -COMMAND: /opt/release/clicast -e ALARMMGMT test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:06:51 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed -COMMAND: /opt/release/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-06 18:06:53 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 Running all AlarmMgmt.initAlarmMgmt test cases Running: initAlarmMgmt_NominalPath Preparing Test Data @@ -2154,7 +1123,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:06:56 +TIME: 2019-12-10 17:58:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG @@ -2190,7 +1159,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e BLOODFLOW -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-06 18:07:04 +TIME: 2019-12-10 17:58:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -2211,22 +1180,21 @@ Processing script line 250 Processing script line 300 Processing script line 350 - Processing script line 400 Processing script line 450 Processing script line 500 Processing script line 550 - Processing script line 600 - Processing script line 650 Processing script line 750 + Processing script line 850 + Processing script line 900 Processing script line 950 - Processing script line 1000 Processing script line 1050 Processing script line 1100 - Processing script line 1150 Processing script line 1200 - Processing script line 1300 - Processing script line 1350 + Processing script line 1250 + Processing script line 1400 Processing script line 1450 + Processing script line 1550 + Processing script line 1600 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -2326,250 +1294,298 @@ (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: 367 +(S) @LINE: 413 >>> Processed Test Case: getMeasuredBloodPumpSpeed_NominalPath -(I) @LINE: 373 +(I) @LINE: 419 >>> Processing Test Case: getMeasuredBloodPumpSpeed_Override -(S) @LINE: 379 +(S) @LINE: 425 >>> Processed Test Case: getMeasuredBloodPumpSpeed_Override -(I) @LINE: 387 +(I) @LINE: 433 >>> Processing Test Case: getPublishBloodFlowDataInterval_NominalPath -(S) @LINE: 393 +(S) @LINE: 439 >>> Processed Test Case: getPublishBloodFlowDataInterval_NominalPath -(I) @LINE: 399 +(I) @LINE: 445 >>> Processing Test Case: getPublishBloodFlowDataInterval_Override -(S) @LINE: 405 +(S) @LINE: 451 >>> Processed Test Case: getPublishBloodFlowDataInterval_Override -(I) @LINE: 413 +(I) @LINE: 459 >>> Processing Test Case: getTargetBloodFlowRate_NominalPath -(S) @LINE: 419 +(S) @LINE: 465 >>> Processed Test Case: getTargetBloodFlowRate_NominalPath -(I) @LINE: 425 +(I) @LINE: 471 >>> Processing Test Case: getTargetBloodFlowRate_Override -(S) @LINE: 431 +(S) @LINE: 477 >>> Processed Test Case: getTargetBloodFlowRate_Override -(I) @LINE: 439 +(I) @LINE: 485 >>> Processing Test Case: handleBloodPumpControlToTargetState_NominalPath -(S) @LINE: 455 +(S) @LINE: 501 >>> Processed Test Case: handleBloodPumpControlToTargetState_NominalPath -(I) @LINE: 461 +(I) @LINE: 507 >>> Processing Test Case: handleBloodPumpControlToTargetState_NotControlInterval -(S) @LINE: 465 +(S) @LINE: 511 >>> Processed Test Case: handleBloodPumpControlToTargetState_NotControlInterval -(I) @LINE: 471 +(I) @LINE: 517 >>> Processing Test Case: handleBloodPumpControlToTargetState_PWM_Max -(S) @LINE: 487 +(S) @LINE: 533 >>> Processed Test Case: handleBloodPumpControlToTargetState_PWM_Max -(I) @LINE: 493 +(I) @LINE: 539 >>> Processing Test Case: handleBloodPumpControlToTargetState_PWM_Min -(S) @LINE: 509 +(S) @LINE: 555 >>> Processed Test Case: handleBloodPumpControlToTargetState_PWM_Min -(I) @LINE: 515 +(I) @LINE: 561 >>> Processing Test Case: handleBloodPumpControlToTargetState_Reverse -(S) @LINE: 531 +(S) @LINE: 577 >>> Processed Test Case: handleBloodPumpControlToTargetState_Reverse -(I) @LINE: 537 +(I) @LINE: 583 >>> Processing Test Case: handleBloodPumpControlToTargetState_TermsMaxRange -(S) @LINE: 553 +(S) @LINE: 599 >>> Processed Test Case: handleBloodPumpControlToTargetState_TermsMaxRange -(I) @LINE: 559 +(I) @LINE: 605 >>> Processing Test Case: handleBloodPumpControlToTargetState_TermsMaxRange2 -(S) @LINE: 575 +(S) @LINE: 621 >>> Processed Test Case: handleBloodPumpControlToTargetState_TermsMaxRange2 -(I) @LINE: 583 +(I) @LINE: 629 >>> Processing Test Case: handleBloodPumpOffState_NewRateSet -(S) @LINE: 600 +(S) @LINE: 646 >>> Processed Test Case: handleBloodPumpOffState_NewRateSet -(I) @LINE: 606 +(I) @LINE: 652 >>> Processing Test Case: handleBloodPumpOffState_NoChange -(S) @LINE: 610 +(S) @LINE: 656 >>> Processed Test Case: handleBloodPumpOffState_NoChange -(I) @LINE: 618 +(I) @LINE: 664 >>> Processing Test Case: handleBloodPumpRampingDownState_ -(S) @LINE: 623 +(S) @LINE: 669 >>> Processed Test Case: handleBloodPumpRampingDownState_ -(I) @LINE: 629 +(I) @LINE: 675 >>> Processing Test Case: handleBloodPumpRampingDownState_RampComplete -(S) @LINE: 637 +(S) @LINE: 683 >>> Processed Test Case: handleBloodPumpRampingDownState_RampComplete -(I) @LINE: 643 +(I) @LINE: 689 >>> Processing Test Case: handleBloodPumpRampingDownState_StillRamping -(S) @LINE: 652 +(S) @LINE: 698 >>> Processed Test Case: handleBloodPumpRampingDownState_StillRamping -(I) @LINE: 660 +(I) @LINE: 706 >>> Processing Test Case: handleBloodPumpRampingUpState_RampComplete -(S) @LINE: 665 +(S) @LINE: 711 >>> Processed Test Case: handleBloodPumpRampingUpState_RampComplete -(I) @LINE: 671 +(I) @LINE: 717 >>> Processing Test Case: handleBloodPumpRampingUpState_StillRamping -(S) @LINE: 680 +(S) @LINE: 726 >>> Processed Test Case: handleBloodPumpRampingUpState_StillRamping -(I) @LINE: 686 +(I) @LINE: 732 >>> Processing Test Case: handleBloodPumpRampingUpState_StopRequested -(S) @LINE: 694 +(S) @LINE: 740 >>> Processed Test Case: handleBloodPumpRampingUpState_StopRequested -(I) @LINE: 702 +(I) @LINE: 748 >>> Processing Test Case: initBloodFlow_NominalPath -(S) @LINE: 719 +(S) @LINE: 765 >>> Processed Test Case: initBloodFlow_NominalPath -(I) @LINE: 727 +(I) @LINE: 773 >>> Processing Test Case: publishBloodFlowData_NominalPath -(S) @LINE: 739 +(S) @LINE: 785 >>> Processed Test Case: publishBloodFlowData_NominalPath -(I) @LINE: 745 +(I) @LINE: 791 >>> Processing Test Case: publishBloodFlowData_NotIntervalTime -(S) @LINE: 753 +(S) @LINE: 799 >>> Processed Test Case: publishBloodFlowData_NotIntervalTime -(I) @LINE: 761 +(I) @LINE: 807 >>> Processing Test Case: releaseBloodPumpStop_NominalPath -(S) @LINE: 765 +(S) @LINE: 811 >>> Processed Test Case: releaseBloodPumpStop_NominalPath -(I) @LINE: 773 +(I) @LINE: 819 >>> Processing Test Case: setBloodPumpDirection_FWD -(S) @LINE: 780 +(S) @LINE: 826 >>> Processed Test Case: setBloodPumpDirection_FWD -(I) @LINE: 786 +(I) @LINE: 832 >>> Processing Test Case: setBloodPumpDirection_InvalidDirection -(S) @LINE: 797 +(S) @LINE: 843 >>> Processed Test Case: setBloodPumpDirection_InvalidDirection -(I) @LINE: 803 +(I) @LINE: 849 >>> Processing Test Case: setBloodPumpDirection_REV -(S) @LINE: 810 +(S) @LINE: 856 >>> Processed Test Case: setBloodPumpDirection_REV -(I) @LINE: 818 +(I) @LINE: 864 >>> Processing Test Case: setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning -(S) @LINE: 827 +(S) @LINE: 873 >>> Processed Test Case: setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning -(I) @LINE: 833 +(I) @LINE: 879 >>> Processing Test Case: setBloodPumpTargetFlowRate_FlowTooHigh -(S) @LINE: 845 +(S) @LINE: 891 >>> Processed Test Case: setBloodPumpTargetFlowRate_FlowTooHigh -(I) @LINE: 851 +(I) @LINE: 897 >>> Processing Test Case: setBloodPumpTargetFlowRate_OffToRateFwd -(S) @LINE: 871 +(S) @LINE: 917 >>> Processed Test Case: setBloodPumpTargetFlowRate_OffToRateFwd -(I) @LINE: 877 +(I) @LINE: 923 >>> Processing Test Case: setBloodPumpTargetFlowRate_OffToRateRev -(S) @LINE: 897 +(S) @LINE: 943 >>> Processed Test Case: setBloodPumpTargetFlowRate_OffToRateRev -(I) @LINE: 903 +(I) @LINE: 949 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecrease -(S) @LINE: 924 +(S) @LINE: 970 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecrease -(I) @LINE: 930 +(I) @LINE: 976 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown -(S) @LINE: 951 +(S) @LINE: 997 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown -(I) @LINE: 957 +(I) @LINE: 1003 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp -(S) @LINE: 978 +(S) @LINE: 1024 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp -(I) @LINE: 984 +(I) @LINE: 1030 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncrease -(S) @LINE: 1005 +(S) @LINE: 1051 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncrease -(I) @LINE: 1011 +(I) @LINE: 1057 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown -(S) @LINE: 1032 +(S) @LINE: 1078 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown -(I) @LINE: 1038 +(I) @LINE: 1084 >>> Processing Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp -(S) @LINE: 1059 +(S) @LINE: 1105 >>> Processed Test Case: setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp -(I) @LINE: 1065 +(I) @LINE: 1111 >>> Processing Test Case: setBloodPumpTargetFlowRate_ZeroRate -(S) @LINE: 1086 +(S) @LINE: 1132 >>> Processed Test Case: setBloodPumpTargetFlowRate_ZeroRate -(I) @LINE: 1094 +(I) @LINE: 1140 >>> Processing Test Case: stopBloodPump_NominalPath -(S) @LINE: 1103 +(S) @LINE: 1149 >>> Processed Test Case: stopBloodPump_NominalPath -(I) @LINE: 1111 +(I) @LINE: 1157 >>> Processing Test Case: testResetBloodFlowDataPublishIntervalOverride_NominalPath -(S) @LINE: 1122 +(S) @LINE: 1168 >>> Processed Test Case: testResetBloodFlowDataPublishIntervalOverride_NominalPath -(I) @LINE: 1128 +(I) @LINE: 1174 >>> Processing Test Case: testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 1139 +(S) @LINE: 1185 >>> Processed Test Case: testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 1147 +(I) @LINE: 1193 >>> Processing Test Case: testResetMeasuredBloodFlowRateOverride_NominalPath -(S) @LINE: 1158 +(S) @LINE: 1204 >>> Processed Test Case: testResetMeasuredBloodFlowRateOverride_NominalPath -(I) @LINE: 1164 +(I) @LINE: 1210 >>> Processing Test Case: testResetMeasuredBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1175 +(S) @LINE: 1221 >>> Processed Test Case: testResetMeasuredBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1183 +(I) @LINE: 1229 >>> Processing Test Case: testResetMeasuredBloodPumpCurrentOverride_NominalPath -(S) @LINE: 1194 +(S) @LINE: 1240 >>> Processed Test Case: testResetMeasuredBloodPumpCurrentOverride_NominalPath -(I) @LINE: 1200 +(I) @LINE: 1246 >>> Processing Test Case: testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(S) @LINE: 1211 +(S) @LINE: 1257 >>> Processed Test Case: testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(I) @LINE: 1219 +(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: 1230 +(S) @LINE: 1348 >>> Processed Test Case: testResetMeasuredBloodPumpSpeedOverride_NominalPath -(I) @LINE: 1236 +(I) @LINE: 1354 >>> Processing Test Case: testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(S) @LINE: 1247 +(S) @LINE: 1365 >>> Processed Test Case: testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(I) @LINE: 1255 +(I) @LINE: 1373 >>> Processing Test Case: testResetTargetBloodFlowRateOverride_NominalPath -(S) @LINE: 1266 +(S) @LINE: 1384 >>> Processed Test Case: testResetTargetBloodFlowRateOverride_NominalPath -(I) @LINE: 1272 +(I) @LINE: 1390 >>> Processing Test Case: testResetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1283 +(S) @LINE: 1401 >>> Processed Test Case: testResetTargetBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1291 +(I) @LINE: 1409 >>> Processing Test Case: testSetBloodFlowDataPublishIntervalOverride_NominalPath -(S) @LINE: 1303 +(S) @LINE: 1421 >>> Processed Test Case: testSetBloodFlowDataPublishIntervalOverride_NominalPath -(I) @LINE: 1309 +(I) @LINE: 1427 >>> Processing Test Case: testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(S) @LINE: 1321 +(S) @LINE: 1439 >>> Processed Test Case: testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn -(I) @LINE: 1329 +(I) @LINE: 1447 >>> Processing Test Case: testSetMeasuredBloodFlowRateOverride_NominalPath -(S) @LINE: 1341 +(S) @LINE: 1459 >>> Processed Test Case: testSetMeasuredBloodFlowRateOverride_NominalPath -(I) @LINE: 1347 +(I) @LINE: 1465 >>> Processing Test Case: testSetMeasuredBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1359 +(S) @LINE: 1477 >>> Processed Test Case: testSetMeasuredBloodFlowRateOverride_NotLoggedIn -(I) @LINE: 1367 +(I) @LINE: 1485 >>> Processing Test Case: testSetMeasuredBloodPumpCurrentOverride_NominalPath -(S) @LINE: 1379 +(S) @LINE: 1497 >>> Processed Test Case: testSetMeasuredBloodPumpCurrentOverride_NominalPath -(I) @LINE: 1385 +(I) @LINE: 1503 >>> Processing Test Case: testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(S) @LINE: 1397 +(S) @LINE: 1515 >>> Processed Test Case: testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn -(I) @LINE: 1405 +(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: 1417 +(S) @LINE: 1611 >>> Processed Test Case: testSetMeasuredBloodPumpSpeedOverride_NominalPath -(I) @LINE: 1423 +(I) @LINE: 1617 >>> Processing Test Case: testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(S) @LINE: 1435 +(S) @LINE: 1629 >>> Processed Test Case: testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn -(I) @LINE: 1443 +(I) @LINE: 1637 >>> Processing Test Case: testSetTargetBloodFlowRateOverride_NominalPath -(S) @LINE: 1455 +(S) @LINE: 1649 >>> Processed Test Case: testSetTargetBloodFlowRateOverride_NominalPath -(I) @LINE: 1461 +(I) @LINE: 1655 >>> Processing Test Case: testSetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1473 +(S) @LINE: 1667 >>> Processed Test Case: testSetTargetBloodFlowRateOverride_NotLoggedIn -(S) @LINE: 1473 +(S) @LINE: 1667 >>> Script processing completed COMMAND: /opt/release/clicast -e BLOODFLOW test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-06 18:07:09 +TIME: 2019-12-10 17:59:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -2584,7 +1600,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:07:10 +TIME: 2019-12-10 17:59:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -2922,6 +1938,21 @@ 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 @@ -2937,7 +1968,22 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all BloodFlow.getMeasuredBloodPumpCurrent test cases + 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 @@ -3144,6 +2190,36 @@ 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 @@ -3174,7 +2250,37 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all BloodFlow.testSetMeasuredBloodPumpCurrentOverride test cases + 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 @@ -3189,7 +2295,7 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running all BloodFlow.testResetMeasuredBloodPumpCurrentOverride test cases + Running all BloodFlow.testResetMeasuredBloodPumpMCCurrentOverride test cases Running: testResetMeasuredBloodPumpCurrentOverride_NominalPath Preparing Test Data Running Test Case @@ -3207,7 +2313,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:07:14 +TIME: 2019-12-10 17:59:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG @@ -3242,7 +2348,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e BUTTONS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:07:20 +TIME: 2019-12-10 17:59:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -3263,7 +2369,9 @@ Processing script line 50 Processing script line 300 Processing script line 350 - Processing script line 550 + Processing script line 400 + Processing script line 450 + Processing script line 600 Processing script line 650 Processing script line 700 Processing script line 750 @@ -3363,124 +2471,121 @@ >>> Processed Test Case: handleOffButtonProcessing_OffRequestPending (I) @LINE: 375 >>> Processing Test Case: handleOffButtonProcessing_OffRequestPendingExpired -(S) @LINE: 382 +(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: 390 +(I) @LINE: 394 >>> Processing Test Case: NoChange -(S) @LINE: 397 +(S) @LINE: 401 >>> Processed Test Case: NoChange -(I) @LINE: 403 +(I) @LINE: 407 >>> Processing Test Case: PressTimedOut -(S) @LINE: 416 +(S) @LINE: 420 >>> Processed Test Case: PressTimedOut -(I) @LINE: 422 +(I) @LINE: 426 >>> Processing Test Case: PressedToReleased -(S) @LINE: 429 +(S) @LINE: 433 >>> Processed Test Case: PressedToReleased -(I) @LINE: 435 +(I) @LINE: 439 >>> Processing Test Case: ReleasedToPressed -(S) @LINE: 448 +(S) @LINE: 452 >>> Processed Test Case: ReleasedToPressed -(I) @LINE: 456 +(I) @LINE: 460 >>> Processing Test Case: NominalPath -(S) @LINE: 475 +(S) @LINE: 479 >>> Processed Test Case: NominalPath -(I) @LINE: 483 +(I) @LINE: 487 >>> Processing Test Case: FaultMode -(S) @LINE: 486 +(S) @LINE: 490 >>> Processed Test Case: FaultMode -(I) @LINE: 492 +(I) @LINE: 496 >>> Processing Test Case: InvalidMode -(S) @LINE: 495 +(S) @LINE: 499 >>> Processed Test Case: InvalidMode -(I) @LINE: 501 +(I) @LINE: 505 >>> Processing Test Case: ServiceMode -(S) @LINE: 504 +(S) @LINE: 508 >>> Processed Test Case: ServiceMode -(I) @LINE: 510 +(I) @LINE: 514 >>> Processing Test Case: StandbyMode -(S) @LINE: 513 +(S) @LINE: 517 >>> Processed Test Case: StandbyMode -(I) @LINE: 521 +(I) @LINE: 525 >>> Processing Test Case: NominalPath -(S) @LINE: 525 +(S) @LINE: 529 >>> Processed Test Case: NominalPath -(I) @LINE: 533 +(I) @LINE: 537 >>> Processing Test Case: TestingActive -(S) @LINE: 544 +(S) @LINE: 548 >>> Processed Test Case: TestingActive -(I) @LINE: 550 +(I) @LINE: 554 >>> Processing Test Case: TestingInactive -(S) @LINE: 561 +(S) @LINE: 565 >>> Processed Test Case: TestingInactive -(I) @LINE: 569 +(I) @LINE: 573 >>> Processing Test Case: TestingActive -(S) @LINE: 580 +(S) @LINE: 584 >>> Processed Test Case: TestingActive -(I) @LINE: 586 +(I) @LINE: 590 >>> Processing Test Case: TestingInactive -(S) @LINE: 597 +(S) @LINE: 601 >>> Processed Test Case: TestingInactive -(I) @LINE: 605 +(I) @LINE: 609 >>> Processing Test Case: TestingActive -(S) @LINE: 617 +(S) @LINE: 621 >>> Processed Test Case: TestingActive -(I) @LINE: 623 +(I) @LINE: 627 >>> Processing Test Case: TestingInactive -(S) @LINE: 635 +(S) @LINE: 639 >>> Processed Test Case: TestingInactive -(I) @LINE: 643 +(I) @LINE: 647 >>> Processing Test Case: TestingActive -(S) @LINE: 655 +(S) @LINE: 659 >>> Processed Test Case: TestingActive -(I) @LINE: 661 +(I) @LINE: 665 >>> Processing Test Case: TestingInactive -(S) @LINE: 673 +(S) @LINE: 677 >>> Processed Test Case: TestingInactive -(I) @LINE: 681 +(I) @LINE: 685 + >>> Processing Test Case: InvalidCmdFromUI +(S) @LINE: 691 + >>> Processed Test Case: InvalidCmdFromUI +(I) @LINE: 697 >>> Processing Test Case: InvalidModeToTurnOff -(S) @LINE: 688 +(S) @LINE: 704 >>> Processed Test Case: InvalidModeToTurnOff -(I) @LINE: 694 +(I) @LINE: 710 >>> Processing Test Case: OffButtonRejected -(S) @LINE: 700 +(S) @LINE: 716 >>> Processed Test Case: OffButtonRejected -(I) @LINE: 706 +(I) @LINE: 722 >>> Processing Test Case: OffDuringFaultMode -(S) @LINE: 713 +(S) @LINE: 729 >>> Processed Test Case: OffDuringFaultMode -(I) @LINE: 719 +(I) @LINE: 735 >>> Processing Test Case: OffDuringServiceMode -(S) @LINE: 726 +(S) @LINE: 742 >>> Processed Test Case: OffDuringServiceMode -(I) @LINE: 732 +(I) @LINE: 748 >>> Processing Test Case: OffDuringStandbyMode -(S) @LINE: 739 +(S) @LINE: 755 >>> Processed Test Case: OffDuringStandbyMode -(I) @LINE: 745 +(I) @LINE: 761 >>> Processing Test Case: userConfirmOffButton_NoConfirmExpected -(S) @LINE: 754 +(S) @LINE: 771 >>> Processed Test Case: userConfirmOffButton_NoConfirmExpected -(S) @LINE: 754 +(I) @LINE: 777 + >>> Processing Test Case: userConfirmOffButton_NoRejectExpected +(S) @LINE: 787 + >>> Processed Test Case: userConfirmOffButton_NoRejectExpected +(S) @LINE: 787 >>> Script processing completed -COMMAND: /opt/release/clicast -e BUTTONS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:07:23 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/release/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-06 18:07:24 +TIME: 2019-12-10 17:59:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -3601,6 +2706,13 @@ Updating Coverage Data Test Execution Complete Running all Buttons.userConfirmOffButton test cases + Running: InvalidCmdFromUI + 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: InvalidModeToTurnOff Preparing Test Data Running Test Case @@ -3643,6 +2755,13 @@ 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 @@ -3835,7 +2954,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:07:26 +TIME: 2019-12-10 17:59:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG @@ -3871,7 +2990,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e COMM -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-06 18:07:34 +TIME: 2019-12-10 17:59:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -3992,7 +3111,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e COMM test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-06 18:07:37 +TIME: 2019-12-10 17:59:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4007,7 +3126,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:07:38 +TIME: 2019-12-10 17:59:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4195,7 +3314,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:07:40 +TIME: 2019-12-10 17:59:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG @@ -4230,7 +3349,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e COMMBUFFERS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-06 18:07:47 +TIME: 2019-12-10 17:59:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4345,7 +3464,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e COMMBUFFERS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-06 18:07:50 +TIME: 2019-12-10 17:59:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4360,7 +3479,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:07:51 +TIME: 2019-12-10 17:59:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4519,7 +3638,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:07:52 +TIME: 2019-12-10 17:59:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG @@ -4555,7 +3674,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e CPLD -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-06 18:07:58 +TIME: 2019-12-10 17:59:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4633,7 +3752,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e CPLD test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-06 18:08:01 +TIME: 2019-12-10 18:00:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4648,7 +3767,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:08:02 +TIME: 2019-12-10 18:00:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4753,7 +3872,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:08:03 +TIME: 2019-12-10 18:00:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG @@ -4786,9 +3905,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/release/clicast -e FPGA -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst +COMMAND: /opt/release/clicast -e FPGA -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-06 18:08:10 +TIME: 2019-12-10 18:00:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -4803,9 +3922,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (0) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -5323,7 +4439,7 @@ >>> Script processing completed COMMAND: /opt/release/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-06 18:08:13 +TIME: 2019-12-10 18:00:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -5725,7 +4841,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:08:16 +TIME: 2019-12-10 18:00:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG @@ -5761,7 +4877,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INTERRUPTS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-06 18:08:25 +TIME: 2019-12-10 18:00:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -5872,7 +4988,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INTERRUPTS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-06 18:08:28 +TIME: 2019-12-10 18:00:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -5887,7 +5003,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:08:30 +TIME: 2019-12-10 18:00:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6044,7 +5160,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:08:31 +TIME: 2019-12-10 18:00:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG @@ -6053,10 +5169,10 @@ Creating the Environment Directory Creating Environment "INT_ALARMLAMP" Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/source/ - File: sys_main.c (using cached data) + File: sys_main.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/ - File: AlarmLamp.c (using cached data) + File: AlarmLamp.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ File: ModeFault.c (using cached data) @@ -6135,7 +5251,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_ALARMLAMP -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-06 18:08:52 +TIME: 2019-12-10 18:00:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6187,7 +5303,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_ALARMLAMP test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-06 18:08:55 +TIME: 2019-12-10 18:00:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6202,7 +5318,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:08:56 +TIME: 2019-12-10 18:01:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6261,7 +5377,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:08:57 +TIME: 2019-12-10 18:01:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG @@ -6273,10 +5389,10 @@ 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) + File: BloodFlow.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: AlarmMgmt.c (using cached data) + File: AlarmMgmt.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) @@ -6333,7 +5449,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-06 18:09:12 +TIME: 2019-12-10 18:01:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6378,7 +5494,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_ALARMMGMT test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-06 18:09:15 +TIME: 2019-12-10 18:01:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6393,7 +5509,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:09:16 +TIME: 2019-12-10 18:01:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6437,7 +5553,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:09:18 +TIME: 2019-12-10 18:01:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG @@ -6507,7 +5623,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_BLOODFLOW -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-06 18:09:32 +TIME: 2019-12-10 18:01:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6538,17 +5654,17 @@ >>> Processed Test Case: execBloodFlowController (I) @LINE: 42 >>> Processing Test Case: execBloodFlowMonitor -(S) @LINE: 54 +(S) @LINE: 57 >>> Processed Test Case: execBloodFlowMonitor -(I) @LINE: 64 +(I) @LINE: 67 >>> Processing Test Case: initBloodFlow -(S) @LINE: 76 +(S) @LINE: 79 >>> Processed Test Case: initBloodFlow -(S) @LINE: 76 +(S) @LINE: 79 >>> Script processing completed COMMAND: /opt/release/clicast -e INT_BLOODFLOW test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-06 18:09:35 +TIME: 2019-12-10 18:01:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6563,7 +5679,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:09:37 +TIME: 2019-12-10 18:01:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6599,7 +5715,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:09:39 +TIME: 2019-12-10 18:01:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG @@ -6681,7 +5797,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_BUTTONS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-06 18:09:58 +TIME: 2019-12-10 18:02:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6744,7 +5860,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_BUTTONS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-06 18:10:01 +TIME: 2019-12-10 18:02:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6759,7 +5875,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:10:02 +TIME: 2019-12-10 18:02:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6833,7 +5949,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:10:03 +TIME: 2019-12-10 18:02:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG @@ -6909,7 +6025,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-06 18:10:20 +TIME: 2019-12-10 18:02:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6953,7 +6069,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_COMMBUFFERS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-06 18:10:24 +TIME: 2019-12-10 18:02:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -6968,7 +6084,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:10:25 +TIME: 2019-12-10 18:02:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7002,9 +6118,228 @@ Updating Coverage Data Test Execution Complete Completed Batch Execution processing +COMMAND: /opt/release/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-10 18:02:38 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19 revision c2818cf (09/24/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" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_CPLD" + Calling QuickParse Utility for /home/fw/ws_HD/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) + QuickParse Utility Completed + Calling QuickParse Utility for /home/fw/ws_HD/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/ + File: WatchdogMgmt.c + 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/release/clicast -e INT_CPLD -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2019-12-10 18:02:57 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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 + 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/3989498026/INT_CPLD.tst +(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/release/clicast -e INT_CPLD test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2019-12-10 18:03:00 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/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 + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed +COMMAND: /opt/release/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-10 18:03:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/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 + 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/release/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-06 18:10:27 +TIME: 2019-12-10 18:03:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG @@ -7019,7 +6354,7 @@ File: ModeInitPOST.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/ - File: FPGA.c (using cached data) + File: FPGA.c File: Interrupts.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ @@ -7084,7 +6419,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_FPGA -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-06 18:10:47 +TIME: 2019-12-10 18:03:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7133,7 +6468,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_FPGA test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-06 18:10:50 +TIME: 2019-12-10 18:03:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7148,7 +6483,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:10:52 +TIME: 2019-12-10 18:03:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7199,7 +6534,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:10:53 +TIME: 2019-12-10 18:03:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG @@ -7275,7 +6610,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-06 18:11:12 +TIME: 2019-12-10 18:03:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7321,7 +6656,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_MSGQUEUES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-06 18:11:16 +TIME: 2019-12-10 18:03:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7336,7 +6671,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:11:17 +TIME: 2019-12-10 18:03:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7380,7 +6715,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:11:19 +TIME: 2019-12-10 18:03:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG @@ -7396,7 +6731,7 @@ QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) - File: OperationModes.c (using cached data) + File: OperationModes.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/ File: TaskGeneral.c (using cached data) @@ -7460,7 +6795,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-06 18:11:36 +TIME: 2019-12-10 18:04:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7505,7 +6840,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_OPERATIONMODES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-06 18:11:39 +TIME: 2019-12-10 18:04:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7520,7 +6855,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:11:40 +TIME: 2019-12-10 18:04:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7562,9 +6897,125 @@ Updating Coverage Data Test Execution Complete Completed Batch Execution processing +COMMAND: /opt/release/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-10 18:04:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +**Environment Builder Version 19 revision c2818cf (09/24/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" + Initializing search list + Creating the Environment Directory + Creating Environment "INT_SAFETYSHUTDOWN" + Calling QuickParse Utility for /home/fw/ws_HD/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 (using cached data) + 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/release/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2019-12-10 18:04:29 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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 + 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 +(I) @LINE: 24 + >>> Processing Test Case: initSafetyShutdown +(S) @LINE: 27 + >>> Processed Test Case: initSafetyShutdown +(S) @LINE: 27 + >>> Script processing completed +COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2019-12-10 18:04:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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/release/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-10 18:04:33 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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/690517471/INT_SAFETYSHUTDOWN/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Completed Batch Execution processing COMMAND: /opt/release/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-06 18:11:42 +TIME: 2019-12-10 18:04:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG @@ -7661,7 +7112,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-06 18:12:04 +TIME: 2019-12-10 18:04:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7712,7 +7163,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_SYSTEMCOMM test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-06 18:12:08 +TIME: 2019-12-10 18:05:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7727,7 +7178,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:12:10 +TIME: 2019-12-10 18:05:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7778,7 +7229,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:12:12 +TIME: 2019-12-10 18:05:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG @@ -7854,7 +7305,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-06 18:12:30 +TIME: 2019-12-10 18:05:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7921,7 +7372,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_SYSTEMCOMMMESSAGES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-06 18:12:33 +TIME: 2019-12-10 18:05:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -7936,7 +7387,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:12:34 +TIME: 2019-12-10 18:05:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8014,7 +7465,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:12:36 +TIME: 2019-12-10 18:05:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG @@ -8083,7 +7534,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_TIMERS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-06 18:12:52 +TIME: 2019-12-10 18:05:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8123,7 +7574,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_TIMERS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-06 18:12:54 +TIME: 2019-12-10 18:05:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8138,7 +7589,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:12:55 +TIME: 2019-12-10 18:05:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8174,7 +7625,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:12:57 +TIME: 2019-12-10 18:05:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG @@ -8184,7 +7635,7 @@ 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 (using cached data) + File: Utilities.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -8221,7 +7672,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_UTILITIES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-06 18:13:06 +TIME: 2019-12-10 18:06:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8253,7 +7704,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_UTILITIES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-06 18:13:09 +TIME: 2019-12-10 18:06:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8268,7 +7719,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:13:10 +TIME: 2019-12-10 18:06:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8288,7 +7739,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:13:11 +TIME: 2019-12-10 18:06:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG @@ -8377,7 +7828,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-06 18:13:31 +TIME: 2019-12-10 18:06:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8431,7 +7882,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e INT_WATCHDOGMGMT test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-06 18:13:34 +TIME: 2019-12-10 18:06:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8446,7 +7897,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:13:35 +TIME: 2019-12-10 18:06:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8505,7 +7956,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:13:36 +TIME: 2019-12-10 18:06:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG @@ -8540,7 +7991,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e MSGQUEUES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-06 18:13:42 +TIME: 2019-12-10 18:06:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8641,7 +8092,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e MSGQUEUES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-06 18:13:45 +TIME: 2019-12-10 18:06:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8656,7 +8107,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:13:46 +TIME: 2019-12-10 18:06:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8794,7 +8245,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:13:47 +TIME: 2019-12-10 18:06:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG @@ -8829,7 +8280,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e OPERATIONMODES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-06 18:13:54 +TIME: 2019-12-10 18:06:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8964,7 +8415,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e OPERATIONMODES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-06 18:13:56 +TIME: 2019-12-10 18:06:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -8979,7 +8430,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:13:58 +TIME: 2019-12-10 18:07:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -9179,7 +8630,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:13:59 +TIME: 2019-12-10 18:07:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG @@ -9214,7 +8665,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-06 18:14:06 +TIME: 2019-12-10 18:07:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -9250,7 +8701,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-06 18:14:08 +TIME: 2019-12-10 18:07:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -9265,7 +8716,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:14:09 +TIME: 2019-12-10 18:07:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -9293,7 +8744,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:14:11 +TIME: 2019-12-10 18:07:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG @@ -9326,9 +8777,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/release/clicast -e SYSTEMCOMM -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst +COMMAND: /opt/release/clicast -e SYSTEMCOMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-06 18:14:18 +TIME: 2019-12-10 18:07:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -9343,22 +8794,19 @@ 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 Processing script line 200 - Processing script line 250 + Processing script line 300 Processing script line 350 Processing script line 400 - Processing script line 450 Processing script line 500 - Processing script line 650 + Processing script line 550 + Processing script line 600 Processing script line 700 - Processing script line 750 - Processing script line 950 - Processing script line 1000 + Processing script line 800 + Processing script line 900 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -9387,271 +8835,280 @@ >>> Processed Test Case: OneMessageToProcessInBuffers (I) @LINE: 112 >>> Processing Test Case: CAN1TransmitterBusy -(S) @LINE: 115 +(S) @LINE: 122 >>> Processed Test Case: CAN1TransmitterBusy -(I) @LINE: 121 +(I) @LINE: 128 >>> Processing Test Case: SCI1TransmitterBusy -(S) @LINE: 124 +(S) @LINE: 142 >>> Processed Test Case: SCI1TransmitterBusy -(I) @LINE: 130 +(I) @LINE: 148 >>> Processing Test Case: execSystemCommTx_NominalPath -(S) @LINE: 136 +(S) @LINE: 154 >>> Processed Test Case: execSystemCommTx_NominalPath -(I) @LINE: 144 +(I) @LINE: 162 >>> Processing Test Case: BufferFound -(S) @LINE: 148 +(S) @LINE: 166 >>> Processed Test Case: BufferFound -(I) @LINE: 154 +(I) @LINE: 172 >>> Processing Test Case: NoBufferFound -(S) @LINE: 158 +(S) @LINE: 176 >>> Processed Test Case: NoBufferFound -(I) @LINE: 166 +(I) @LINE: 184 >>> Processing Test Case: InvalidCANBox -(S) @LINE: 168 +(S) @LINE: 190 >>> Processed Test Case: InvalidCANBox -(I) @LINE: 174 +(I) @LINE: 196 >>> Processing Test Case: NoPacket -(S) @LINE: 178 +(S) @LINE: 200 >>> Processed Test Case: NoPacket -(I) @LINE: 184 +(I) @LINE: 206 >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 192 +(S) @LINE: 214 >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 198 +(I) @LINE: 220 >>> Processing Test Case: TransmitCANBox -(S) @LINE: 206 +(S) @LINE: 228 >>> Processed Test Case: TransmitCANBox -(I) @LINE: 212 +(I) @LINE: 234 >>> Processing Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(S) @LINE: 225 +(S) @LINE: 247 >>> Processed Test Case: handleCANMsgInterrupt_NoMoreMessagesToXmit -(I) @LINE: 233 +(I) @LINE: 255 >>> Processing Test Case: NominalPath -(S) @LINE: 239 +(S) @LINE: 261 >>> Processed Test Case: NominalPath -(I) @LINE: 247 +(I) @LINE: 269 >>> Processing Test Case: NominalPath -(S) @LINE: 264 +(S) @LINE: 286 >>> Processed Test Case: NominalPath -(I) @LINE: 270 +(I) @LINE: 292 >>> Processing Test Case: handleUARTMsgXmitPacketInterrupt_NoMoreMessages -(S) @LINE: 278 +(S) @LINE: 300 >>> Processed Test Case: handleUARTMsgXmitPacketInterrupt_NoMoreMessages -(I) @LINE: 286 +(I) @LINE: 308 >>> Processing Test Case: NominalPath -(S) @LINE: 289 +(S) @LINE: 311 >>> Processed Test Case: NominalPath -(I) @LINE: 297 +(I) @LINE: 319 >>> Processing Test Case: NominalPath -(E) @LINE: 379 TEST.ATTRIBUTES:SystemComm.<>.pcDMARecvControlRecord.DADD::EXPECTED_BASE=16 +(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: 380 +(S) @LINE: 405 >>> Processed Test Case: NominalPath -(I) @LINE: 388 +(I) @LINE: 413 >>> Processing Test Case: NotReceiveCANBox -(S) @LINE: 391 +(S) @LINE: 416 >>> Processed Test Case: NotReceiveCANBox -(I) @LINE: 397 +(I) @LINE: 422 >>> Processing Test Case: ReceiveCANBox -(S) @LINE: 400 +(S) @LINE: 425 >>> Processed Test Case: ReceiveCANBox -(I) @LINE: 408 +(I) @LINE: 433 >>> Processing Test Case: NotTransmitCANBox -(S) @LINE: 411 +(S) @LINE: 436 >>> Processed Test Case: NotTransmitCANBox -(I) @LINE: 417 +(I) @LINE: 442 >>> Processing Test Case: TransmitCANBox -(S) @LINE: 420 +(S) @LINE: 445 >>> Processed Test Case: TransmitCANBox -(I) @LINE: 428 +(I) @LINE: 453 >>> Processing Test Case: isDGCommunicating_NominalPath -(S) @LINE: 431 +(S) @LINE: 456 >>> Processed Test Case: isDGCommunicating_NominalPath -(I) @LINE: 439 +(I) @LINE: 464 >>> Processing Test Case: isUICommunicating_NominalPath -(S) @LINE: 442 +(S) @LINE: 467 >>> Processed Test Case: isUICommunicating_NominalPath -(I) @LINE: 450 +(I) @LINE: 475 >>> Processing Test Case: FullMessageFound -(S) @LINE: 462 +(S) @LINE: 487 >>> Processed Test Case: FullMessageFound -(I) @LINE: 468 +(I) @LINE: 493 >>> Processing Test Case: NoMessageCouldBeParsed -(S) @LINE: 478 +(S) @LINE: 503 >>> Processed Test Case: NoMessageCouldBeParsed -(I) @LINE: 484 +(I) @LINE: 509 >>> Processing Test Case: NoSyncFound -(S) @LINE: 492 +(S) @LINE: 517 >>> Processed Test Case: NoSyncFound -(I) @LINE: 498 +(I) @LINE: 523 >>> Processing Test Case: NotEnoughDataForMinMessage -(S) @LINE: 506 +(S) @LINE: 531 >>> Processed Test Case: NotEnoughDataForMinMessage -(I) @LINE: 514 +(I) @LINE: 539 >>> Processing Test Case: MoreDataInBufferThanMaxMsgSize -(S) @LINE: 527 +(S) @LINE: 552 >>> Processed Test Case: MoreDataInBufferThanMaxMsgSize -(I) @LINE: 533 +(I) @LINE: 558 >>> Processing Test Case: MsgFoundButIncompleteMsgRetrieved -(S) @LINE: 549 +(S) @LINE: 574 >>> Processed Test Case: MsgFoundButIncompleteMsgRetrieved -(I) @LINE: 555 +(I) @LINE: 580 >>> Processing Test Case: NoMsgFound -(S) @LINE: 563 +(S) @LINE: 588 >>> Processed Test Case: NoMsgFound -(I) @LINE: 571 +(I) @LINE: 596 >>> Processing Test Case: 0001_OffButtonPress -(S) @LINE: 575 +(S) @LINE: 600 >>> Processed Test Case: 0001_OffButtonPress -(I) @LINE: 581 +(I) @LINE: 606 >>> Processing Test Case: 0006_DGCheckIn -(S) @LINE: 585 +(S) @LINE: 610 >>> Processed Test Case: 0006_DGCheckIn -(I) @LINE: 591 +(I) @LINE: 616 >>> Processing Test Case: 0007_UICheckIn -(S) @LINE: 595 +(S) @LINE: 620 >>> Processed Test Case: 0007_UICheckIn -(I) @LINE: 601 +(I) @LINE: 626 >>> Processing Test Case: 8000_TestLogin -(S) @LINE: 610 +(S) @LINE: 635 >>> Processed Test Case: 8000_TestLogin -(I) @LINE: 616 +(I) @LINE: 641 >>> Processing Test Case: 8001_HDMessage -(S) @LINE: 624 +(S) @LINE: 649 >>> Processed Test Case: 8001_HDMessage -(I) @LINE: 630 +(I) @LINE: 655 >>> Processing Test Case: 8002_OffButtonOverride -(S) @LINE: 638 +(S) @LINE: 663 >>> Processed Test Case: 8002_OffButtonOverride -(I) @LINE: 644 +(I) @LINE: 669 >>> Processing Test Case: 8003_StopButtonOverride -(S) @LINE: 652 +(S) @LINE: 677 >>> Processed Test Case: 8003_StopButtonOverride -(I) @LINE: 658 +(I) @LINE: 683 >>> Processing Test Case: 8004_AlarmLampPatternOverride -(S) @LINE: 666 +(S) @LINE: 691 >>> Processed Test Case: 8004_AlarmLampPatternOverride -(I) @LINE: 672 +(I) @LINE: 697 >>> Processing Test Case: 8005_WatchdogTaskCheckInOverride -(S) @LINE: 680 +(S) @LINE: 705 >>> Processed Test Case: 8005_WatchdogTaskCheckInOverride -(I) @LINE: 686 +(I) @LINE: 711 >>> Processing Test Case: 8006_AlarmStateOverride -(E) @LINE: 703 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 +(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: 704 +(S) @LINE: 732 >>> Processed Test Case: 8006_AlarmStateOverride -(I) @LINE: 710 +(I) @LINE: 738 >>> Processing Test Case: 8007_AlarmTimeOverride -(E) @LINE: 727 TEST.ATTRIBUTES:uut_prototype_stubs.handleTestOffButtonStateOverrideRequest.message[0].hdr.msgID::EXPECTED_BASE=16 +(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: 728 +(S) @LINE: 759 >>> Processed Test Case: 8007_AlarmTimeOverride -(I) @LINE: 734 +(I) @LINE: 765 >>> Processing Test Case: 8008_BloodFlowSetPtOverride -(S) @LINE: 743 +(S) @LINE: 774 >>> Processed Test Case: 8008_BloodFlowSetPtOverride -(I) @LINE: 749 +(I) @LINE: 780 >>> Processing Test Case: 8009_BloodFlowMeasuredOverride -(S) @LINE: 760 +(S) @LINE: 791 >>> Processed Test Case: 8009_BloodFlowMeasuredOverride -(I) @LINE: 766 +(I) @LINE: 797 >>> Processing Test Case: 800A_BloodPumpMCMeasuredSpeedOverride -(S) @LINE: 778 +(S) @LINE: 809 >>> Processed Test Case: 800A_BloodPumpMCMeasuredSpeedOverride -(I) @LINE: 784 +(I) @LINE: 815 >>> Processing Test Case: 800B_BloodPumpMCMeasuredCurrentOverride -(S) @LINE: 798 +(S) @LINE: 829 >>> Processed Test Case: 800B_BloodPumpMCMeasuredCurrentOverride -(I) @LINE: 804 +(I) @LINE: 835 >>> Processing Test Case: 800C_BloodFlowDataPublishIntervalOverride -(S) @LINE: 818 +(S) @LINE: 849 >>> Processed Test Case: 800C_BloodFlowDataPublishIntervalOverride -(I) @LINE: 824 +(I) @LINE: 855 >>> Processing Test Case: 800D_AlarmStatusPublishIntervalOverride -(S) @LINE: 834 +(S) @LINE: 865 >>> Processed Test Case: 800D_AlarmStatusPublishIntervalOverride -(I) @LINE: 840 +(I) @LINE: 871 >>> Processing Test Case: InvalidMessageID -(S) @LINE: 847 +(S) @LINE: 878 >>> Processed Test Case: InvalidMessageID -(I) @LINE: 853 +(I) @LINE: 884 >>> Processing Test Case: InvalidTestMessageID -(S) @LINE: 862 +(S) @LINE: 893 >>> Processed Test Case: InvalidTestMessageID -(I) @LINE: 868 +(I) @LINE: 899 >>> Processing Test Case: InvalidTestMessageIDInRange -(S) @LINE: 878 +(S) @LINE: 909 >>> Processed Test Case: InvalidTestMessageIDInRange -(I) @LINE: 884 +(I) @LINE: 915 >>> Processing Test Case: TestWithoutLogin -(S) @LINE: 895 +(S) @LINE: 926 >>> Processed Test Case: TestWithoutLogin -(I) @LINE: 903 +(I) @LINE: 934 >>> Processing Test Case: NoMessagesReceived -(S) @LINE: 906 +(S) @LINE: 937 >>> Processed Test Case: NoMessagesReceived -(I) @LINE: 912 +(I) @LINE: 943 >>> Processing Test Case: OneMessageReceived -(S) @LINE: 917 +(S) @LINE: 948 >>> Processed Test Case: OneMessageReceived -(I) @LINE: 925 +(I) @LINE: 956 >>> Processing Test Case: NoPendingCANPackets -(S) @LINE: 928 +(S) @LINE: 959 >>> Processed Test Case: NoPendingCANPackets -(I) @LINE: 934 +(I) @LINE: 965 >>> Processing Test Case: PendingCANPacketFound -(S) @LINE: 941 +(S) @LINE: 972 >>> Processed Test Case: PendingCANPacketFound -(I) @LINE: 947 +(I) @LINE: 978 >>> Processing Test Case: PendingCANPacketIsPartial -(S) @LINE: 953 +(S) @LINE: 984 >>> Processed Test Case: PendingCANPacketIsPartial -(I) @LINE: 961 +(I) @LINE: 992 >>> Processing Test Case: GetPacketFail -(S) @LINE: 967 +(S) @LINE: 998 >>> Processed Test Case: GetPacketFail -(I) @LINE: 973 +(I) @LINE: 1004 >>> Processing Test Case: NoPacketFound -(S) @LINE: 976 +(S) @LINE: 1007 >>> Processed Test Case: NoPacketFound -(I) @LINE: 982 +(I) @LINE: 1013 >>> Processing Test Case: PacketFound -(S) @LINE: 990 +(S) @LINE: 1021 >>> Processed Test Case: PacketFound -(I) @LINE: 998 +(I) @LINE: 1029 >>> Processing Test Case: uiCommunicated_NominalPath -(S) @LINE: 1001 +(S) @LINE: 1032 >>> Processed Test Case: uiCommunicated_NominalPath -(S) @LINE: 1001 +(S) @LINE: 1032 >>> Script processing completed COMMAND: /opt/release/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-06 18:14:22 +TIME: 2019-12-10 18:07:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -10126,7 +9583,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:14:25 +TIME: 2019-12-10 18:07:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG @@ -10159,9 +9616,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst +COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-06 18:14:32 +TIME: 2019-12-10 18:07:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -10176,22 +9633,25 @@ 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 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 850 Processing script line 900 - Processing script line 950 + Processing script line 1000 Processing script line 1100 + Processing script line 1300 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10212,232 +9672,220 @@ >>> Processed Test Case: broadcastAlarmTriggered_NominalPath (I) @LINE: 175 >>> Processing Test Case: broadcastBloodFlowData_NominalPath -(S) @LINE: 204 +(S) @LINE: 214 >>> Processed Test Case: broadcastBloodFlowData_NominalPath -(I) @LINE: 212 +(I) @LINE: 222 >>> Processing Test Case: handleDGCheckIn_NominalPath -(S) @LINE: 218 +(S) @LINE: 228 >>> Processed Test Case: handleDGCheckIn_NominalPath -(I) @LINE: 226 +(I) @LINE: 236 >>> Processing Test Case: handleOffButtonConfirmMsgFromUI_NominalPath -(S) @LINE: 232 +(S) @LINE: 242 >>> Processed Test Case: handleOffButtonConfirmMsgFromUI_NominalPath -(I) @LINE: 240 +(I) @LINE: 250 >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength -(S) @LINE: 250 +(S) @LINE: 260 >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength -(I) @LINE: 256 +(I) @LINE: 266 >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_Override -(S) @LINE: 270 +(S) @LINE: 280 >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_Override -(I) @LINE: 276 +(I) @LINE: 286 >>> Processing Test Case: handleTestAlarmLampPatternOverrideRequest_Reset -(S) @LINE: 296 +(S) @LINE: 306 >>> Processed Test Case: handleTestAlarmLampPatternOverrideRequest_Reset -(I) @LINE: 304 +(I) @LINE: 314 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(S) @LINE: 314 +(S) @LINE: 324 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_InvalidPayloadLen -(I) @LINE: 320 +(I) @LINE: 330 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Override -(S) @LINE: 345 +(S) @LINE: 355 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Override -(I) @LINE: 351 +(I) @LINE: 361 >>> Processing Test Case: handleTestAlarmStateOverrideRequest_Reset -(S) @LINE: 375 +(S) @LINE: 385 >>> Processed Test Case: handleTestAlarmStateOverrideRequest_Reset -(I) @LINE: 383 +(I) @LINE: 393 >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 394 +(S) @LINE: 404 >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 400 +(I) @LINE: 410 >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override -(S) @LINE: 421 +(S) @LINE: 431 >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override -(I) @LINE: 427 +(I) @LINE: 437 >>> Processing Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 447 +(S) @LINE: 457 >>> Processed Test Case: handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 455 +(I) @LINE: 465 >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_InvalidPayloadLen -(S) @LINE: 466 +(S) @LINE: 476 >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_InvalidPayloadLen -(I) @LINE: 472 +(I) @LINE: 482 >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_Override -(S) @LINE: 498 +(S) @LINE: 508 >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_Override -(I) @LINE: 504 +(I) @LINE: 514 >>> Processing Test Case: handleTestAlarmTimeOverrideRequest_Reset -(S) @LINE: 529 +(S) @LINE: 539 >>> Processed Test Case: handleTestAlarmTimeOverrideRequest_Reset -(I) @LINE: 537 +(I) @LINE: 547 >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen -(S) @LINE: 548 +(S) @LINE: 558 >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen -(I) @LINE: 554 +(I) @LINE: 564 >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Override -(S) @LINE: 575 +(S) @LINE: 585 >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Override -(I) @LINE: 581 +(I) @LINE: 591 >>> Processing Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset -(S) @LINE: 601 +(S) @LINE: 611 >>> Processed Test Case: handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset -(I) @LINE: 609 +(I) @LINE: 619 >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen -(S) @LINE: 620 +(S) @LINE: 630 >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen -(I) @LINE: 626 +(I) @LINE: 636 >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_Override -(S) @LINE: 647 +(S) @LINE: 657 >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_Override -(I) @LINE: 653 +(I) @LINE: 663 >>> Processing Test Case: handleTestBloodFlowMeasuredOverrideRequest_Reset -(S) @LINE: 673 +(S) @LINE: 683 >>> Processed Test Case: handleTestBloodFlowMeasuredOverrideRequest_Reset -(I) @LINE: 681 +(I) @LINE: 691 >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen -(S) @LINE: 692 +(S) @LINE: 702 >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen -(I) @LINE: 698 +(I) @LINE: 708 >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_Override -(S) @LINE: 719 +(S) @LINE: 729 >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_Override -(I) @LINE: 725 +(I) @LINE: 735 >>> Processing Test Case: handleTestBloodFlowSetPointOverrideRequest_Reset -(S) @LINE: 745 +(S) @LINE: 755 >>> Processed Test Case: handleTestBloodFlowSetPointOverrideRequest_Reset -(I) @LINE: 753 +(I) @LINE: 763 >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen -(S) @LINE: 764 +(S) @LINE: 774 >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen -(I) @LINE: 770 +(I) @LINE: 780 >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Override -(S) @LINE: 791 +(S) @LINE: 801 >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Override -(I) @LINE: 797 +(I) @LINE: 807 >>> Processing Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset -(S) @LINE: 817 +(S) @LINE: 827 >>> Processed Test Case: handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset -(I) @LINE: 825 +(I) @LINE: 835 >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen -(S) @LINE: 836 +(S) @LINE: 846 >>> Processed Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen -(I) @LINE: 842 +(I) @LINE: 852 >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Override -(S) @LINE: 863 +(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: 869 +(I) @LINE: 881 >>> Processing Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset -(S) @LINE: 889 +(S) @LINE: 902 >>> Processed Test Case: handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset -(I) @LINE: 897 +(I) @LINE: 910 >>> Processing Test Case: handleTestHDMessageRequest_NominalPath -(S) @LINE: 909 +(S) @LINE: 922 >>> Processed Test Case: handleTestHDMessageRequest_NominalPath -(I) @LINE: 917 +(I) @LINE: 930 >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 934 +(S) @LINE: 947 >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 940 +(I) @LINE: 953 >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_Override -(S) @LINE: 954 +(S) @LINE: 967 >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_Override -(I) @LINE: 960 +(I) @LINE: 973 >>> Processing Test Case: handleTestOffButtonStateOverrideRequest_Reset -(S) @LINE: 979 +(S) @LINE: 992 >>> Processed Test Case: handleTestOffButtonStateOverrideRequest_Reset -(I) @LINE: 987 +(I) @LINE: 1000 >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 997 +(S) @LINE: 1010 >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 1003 +(I) @LINE: 1016 >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_Override -(S) @LINE: 1009 +(S) @LINE: 1022 >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_Override -(I) @LINE: 1015 +(I) @LINE: 1028 >>> Processing Test Case: handleTestStopButtonStateOverrideRequest_Reset -(S) @LINE: 1035 +(S) @LINE: 1048 >>> Processed Test Case: handleTestStopButtonStateOverrideRequest_Reset -(I) @LINE: 1043 +(I) @LINE: 1056 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(S) @LINE: 1053 +(S) @LINE: 1066 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength -(I) @LINE: 1059 +(I) @LINE: 1072 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(S) @LINE: 1078 +(S) @LINE: 1091 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Override -(I) @LINE: 1084 +(I) @LINE: 1097 >>> Processing Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(S) @LINE: 1102 +(S) @LINE: 1115 >>> Processed Test Case: handleTestWatchdogCheckInStateOverrideRequest_Reset -(I) @LINE: 1110 +(I) @LINE: 1123 >>> Processing Test Case: handleTesterLogInRequest_LoginSuccessful -(S) @LINE: 1119 +(S) @LINE: 1132 >>> Processed Test Case: handleTesterLogInRequest_LoginSuccessful -(I) @LINE: 1125 +(I) @LINE: 1138 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(S) @LINE: 1134 +(S) @LINE: 1147 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 -(I) @LINE: 1140 +(I) @LINE: 1153 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(S) @LINE: 1149 +(S) @LINE: 1162 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 -(I) @LINE: 1155 +(I) @LINE: 1168 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(S) @LINE: 1164 +(S) @LINE: 1177 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 -(I) @LINE: 1170 +(I) @LINE: 1183 >>> Processing Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(S) @LINE: 1180 +(S) @LINE: 1193 >>> Processed Test Case: handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength -(I) @LINE: 1188 +(I) @LINE: 1201 >>> Processing Test Case: handleUICheckIn_NominalPath -(S) @LINE: 1194 +(S) @LINE: 1207 >>> Processed Test Case: handleUICheckIn_NominalPath -(I) @LINE: 1202 +(I) @LINE: 1215 >>> Processing Test Case: NominalPath -(S) @LINE: 1205 +(S) @LINE: 1218 >>> Processed Test Case: NominalPath -(I) @LINE: 1213 +(I) @LINE: 1226 >>> Processing Test Case: sendDebugData_NominalPath -(S) @LINE: 1231 +(S) @LINE: 1244 >>> Processed Test Case: sendDebugData_NominalPath -(I) @LINE: 1239 +(I) @LINE: 1252 >>> Processing Test Case: sendOffButtonMsgToUI_NominalPath -(S) @LINE: 1244 +(S) @LINE: 1257 >>> Processed Test Case: sendOffButtonMsgToUI_NominalPath -(I) @LINE: 1252 +(I) @LINE: 1265 >>> Processing Test Case: sendTestAckResponseMsg_NominalPath -(S) @LINE: 1268 +(S) @LINE: 1281 >>> Processed Test Case: sendTestAckResponseMsg_NominalPath -(I) @LINE: 1276 +(I) @LINE: 1289 >>> Processing Test Case: serializeMessage_MessageNeedsPadding -(S) @LINE: 1281 +(S) @LINE: 1294 >>> Processed Test Case: serializeMessage_MessageNeedsPadding -(I) @LINE: 1287 +(I) @LINE: 1300 >>> Processing Test Case: serializeMessage_NominalPath -(S) @LINE: 1292 +(S) @LINE: 1305 >>> Processed Test Case: serializeMessage_NominalPath -(S) @LINE: 1292 +(S) @LINE: 1305 >>> Script processing completed -COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst -DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-06 18:14:36 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2019 -**Version 19 revision c2818cf (09/24/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 - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/release/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-06 18:14:37 +TIME: 2019-12-10 18:07:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -10860,7 +10308,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:14:40 +TIME: 2019-12-10 18:07:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG @@ -10895,7 +10343,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e TIMERS -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-06 18:14:46 +TIME: 2019-12-10 18:07:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -10960,7 +10408,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e TIMERS test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-06 18:14:49 +TIME: 2019-12-10 18:07:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -10975,7 +10423,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:14:50 +TIME: 2019-12-10 18:07:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11055,7 +10503,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:14:51 +TIME: 2019-12-10 18:07:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG @@ -11090,7 +10538,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e UTILITIES -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-06 18:14:58 +TIME: 2019-12-10 18:07:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11131,7 +10579,7 @@ >>> Script processing completed COMMAND: /opt/release/clicast -e UTILITIES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-06 18:15:01 +TIME: 2019-12-10 18:07:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11146,7 +10594,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:15:02 +TIME: 2019-12-10 18:08:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11181,7 +10629,7 @@ Completed Batch Execution processing COMMAND: /opt/release/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-06 18:15:03 +TIME: 2019-12-10 18:08:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19 revision c2818cf (09/24/19) Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG @@ -11216,7 +10664,7 @@ Environment built Successfully COMMAND: /opt/release/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-06 18:15:10 +TIME: 2019-12-10 18:08:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11234,6 +10682,8 @@ Test Script Maintenance Started Test Script Maintenance Complete (0) Translated 0 script lines + Processing script line 200 + Processing script line 250 Processing script line 300 Processing script line 350 Script Creation Completed @@ -11260,93 +10710,93 @@ >>> Processed Test Case: AllTasksCheckedInAndNotTime (I) @LINE: 97 >>> Processing Test Case: OneTaskNotCheckedIn -(S) @LINE: 118 +(S) @LINE: 123 >>> Processed Test Case: OneTaskNotCheckedIn -(I) @LINE: 124 +(I) @LINE: 129 >>> Processing Test Case: WDExpired -(S) @LINE: 126 +(S) @LINE: 136 >>> Processed Test Case: WDExpired -(I) @LINE: 134 +(I) @LINE: 144 >>> Processing Test Case: Completed -(S) @LINE: 138 +(S) @LINE: 148 >>> Processed Test Case: Completed -(I) @LINE: 144 +(I) @LINE: 154 >>> Processing Test Case: InvalidState -(S) @LINE: 147 +(S) @LINE: 157 >>> Processed Test Case: InvalidState -(I) @LINE: 153 +(I) @LINE: 163 >>> Processing Test Case: StartInProgress -(S) @LINE: 163 +(S) @LINE: 173 >>> Processed Test Case: StartInProgress -(I) @LINE: 169 +(I) @LINE: 179 >>> Processing Test Case: TestFailure -(S) @LINE: 180 +(S) @LINE: 190 >>> Processed Test Case: TestFailure -(I) @LINE: 186 +(I) @LINE: 196 >>> Processing Test Case: TestPasses -(S) @LINE: 197 +(S) @LINE: 207 >>> Processed Test Case: TestPasses -(I) @LINE: 205 +(I) @LINE: 215 >>> Processing Test Case: InvalidTask -(S) @LINE: 208 +(S) @LINE: 218 >>> Processed Test Case: InvalidTask -(I) @LINE: 214 +(I) @LINE: 224 >>> Processing Test Case: NominalPath -(S) @LINE: 219 +(S) @LINE: 229 >>> Processed Test Case: NominalPath -(I) @LINE: 225 +(I) @LINE: 235 >>> Processing Test Case: OverridePath -(S) @LINE: 231 +(S) @LINE: 241 >>> Processed Test Case: OverridePath -(I) @LINE: 239 +(I) @LINE: 249 >>> Processing Test Case: AllTasksCheckedIn -(S) @LINE: 249 +(S) @LINE: 259 >>> Processed Test Case: AllTasksCheckedIn -(I) @LINE: 255 +(I) @LINE: 265 >>> Processing Test Case: OneTaskNotCheckedIn -(S) @LINE: 265 +(S) @LINE: 275 >>> Processed Test Case: OneTaskNotCheckedIn -(I) @LINE: 273 +(I) @LINE: 283 >>> Processing Test Case: NominalPath -(S) @LINE: 311 +(S) @LINE: 321 >>> Processed Test Case: NominalPath -(I) @LINE: 319 +(I) @LINE: 329 >>> Processing Test Case: NominalPath -(S) @LINE: 323 +(S) @LINE: 333 >>> Processed Test Case: NominalPath -(I) @LINE: 331 +(I) @LINE: 341 >>> Processing Test Case: NominalPath -(S) @LINE: 340 +(S) @LINE: 350 >>> Processed Test Case: NominalPath -(I) @LINE: 348 +(I) @LINE: 358 >>> Processing Test Case: InvalidTask -(S) @LINE: 351 +(S) @LINE: 361 >>> Processed Test Case: InvalidTask -(I) @LINE: 357 +(I) @LINE: 367 >>> Processing Test Case: NominalPath -(S) @LINE: 369 +(S) @LINE: 379 >>> Processed Test Case: NominalPath -(I) @LINE: 375 +(I) @LINE: 385 >>> Processing Test Case: TestingInactive -(S) @LINE: 387 +(S) @LINE: 397 >>> Processed Test Case: TestingInactive -(I) @LINE: 395 +(I) @LINE: 405 >>> Processing Test Case: InvalidTask -(S) @LINE: 399 +(S) @LINE: 409 >>> Processed Test Case: InvalidTask -(I) @LINE: 405 +(I) @LINE: 415 >>> Processing Test Case: NominalPath -(S) @LINE: 418 +(S) @LINE: 428 >>> Processed Test Case: NominalPath -(I) @LINE: 424 +(I) @LINE: 434 >>> Processing Test Case: TestingInactive -(S) @LINE: 437 +(S) @LINE: 447 >>> Processed Test Case: TestingInactive -(S) @LINE: 437 +(S) @LINE: 447 >>> Script processing completed COMMAND: /opt/release/clicast -e WATCHDOGMGMT test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-06 18:15:13 +TIME: 2019-12-10 18:08:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11361,7 +10811,7 @@ Script processing completed COMMAND: /opt/release/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-06 18:15:14 +TIME: 2019-12-10 18:08:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11570,7 +11020,7 @@ Calling /opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management ... COMMAND: /opt/release/clicast -e ALARMLAMP report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:15:21 +TIME: 2019-12-10 18:08:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11582,7 +11032,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_management_report.html". COMMAND: /opt/release/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:15:22 +TIME: 2019-12-10 18:08:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11594,7 +11044,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/release/clicast -e BLOODFLOW report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-06 18:15:23 +TIME: 2019-12-10 18:08:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11606,7 +11056,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_management_report.html". COMMAND: /opt/release/clicast -e BUTTONS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:15:25 +TIME: 2019-12-10 18:08:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11618,7 +11068,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_management_report.html". COMMAND: /opt/release/clicast -e COMM report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-06 18:15:27 +TIME: 2019-12-10 18:08:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11630,7 +11080,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/release/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-06 18:15:28 +TIME: 2019-12-10 18:08:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11642,7 +11092,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/release/clicast -e CPLD report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-06 18:15:29 +TIME: 2019-12-10 18:08:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11654,7 +11104,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/release/clicast -e FPGA report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-06 18:15:31 +TIME: 2019-12-10 18:08:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11666,7 +11116,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/release/clicast -e INTERRUPTS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-06 18:15:32 +TIME: 2019-12-10 18:08:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11678,7 +11128,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/release/clicast -e INT_ALARMLAMP report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-06 18:15:34 +TIME: 2019-12-10 18:08:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11690,7 +11140,7 @@ 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/release/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-06 18:15:36 +TIME: 2019-12-10 18:08:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11702,7 +11152,7 @@ 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/release/clicast -e INT_BLOODFLOW report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-06 18:15:38 +TIME: 2019-12-10 18:08:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11714,7 +11164,7 @@ 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/release/clicast -e INT_BUTTONS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-06 18:15:39 +TIME: 2019-12-10 18:08:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11726,7 +11176,7 @@ 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/release/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-06 18:15:41 +TIME: 2019-12-10 18:08:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11736,9 +11186,21 @@ 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/release/clicast -e INT_CPLD report custom management +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2019-12-10 18:08:41 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/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/release/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-06 18:15:42 +TIME: 2019-12-10 18:08:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11750,7 +11212,7 @@ 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/release/clicast -e INT_MSGQUEUES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-06 18:15:44 +TIME: 2019-12-10 18:08:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11762,7 +11224,7 @@ 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/release/clicast -e INT_OPERATIONMODES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-06 18:15:45 +TIME: 2019-12-10 18:08:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11772,9 +11234,21 @@ 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". +COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN report custom management +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2019-12-10 18:08:47 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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/release/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-06 18:15:47 +TIME: 2019-12-10 18:08:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11786,7 +11260,7 @@ 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/release/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-06 18:15:49 +TIME: 2019-12-10 18:08:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11798,7 +11272,7 @@ 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/release/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-06 18:15:50 +TIME: 2019-12-10 18:08:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11810,7 +11284,7 @@ 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/release/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-06 18:15:51 +TIME: 2019-12-10 18:08:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11822,7 +11296,7 @@ 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/release/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-06 18:15:53 +TIME: 2019-12-10 18:08:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11834,7 +11308,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/release/clicast -e MSGQUEUES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-06 18:15:55 +TIME: 2019-12-10 18:08:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11846,7 +11320,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/release/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-06 18:15:56 +TIME: 2019-12-10 18:08:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11858,7 +11332,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-06 18:15:58 +TIME: 2019-12-10 18:09:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11870,7 +11344,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/release/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-06 18:15:59 +TIME: 2019-12-10 18:09:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11882,7 +11356,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-06 18:16:01 +TIME: 2019-12-10 18:09:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11894,7 +11368,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/release/clicast -e TIMERS report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-06 18:16:02 +TIME: 2019-12-10 18:09:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11906,7 +11380,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/release/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-06 18:16:03 +TIME: 2019-12-10 18:09:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11918,7 +11392,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/release/clicast -e WATCHDOGMGMT report custom management DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-06 18:16:05 +TIME: 2019-12-10 18:09:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11937,7 +11411,7 @@ Calling /opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/release/clicast -e ALARMLAMP report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2019-12-06 18:16:07 +TIME: 2019-12-10 18:09:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11949,7 +11423,7 @@ 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/release/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2019-12-06 18:16:09 +TIME: 2019-12-10 18:09:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11961,7 +11435,7 @@ 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/release/clicast -e BLOODFLOW report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2019-12-06 18:16:10 +TIME: 2019-12-10 18:09:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11973,7 +11447,7 @@ 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/release/clicast -e BUTTONS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2019-12-06 18:16:13 +TIME: 2019-12-10 18:09:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11985,7 +11459,7 @@ 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/release/clicast -e COMM report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2019-12-06 18:16:14 +TIME: 2019-12-10 18:09:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -11997,7 +11471,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/release/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2019-12-06 18:16:16 +TIME: 2019-12-10 18:09:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12009,7 +11483,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/release/clicast -e CPLD report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2019-12-06 18:16:18 +TIME: 2019-12-10 18:09:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12021,7 +11495,7 @@ 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/release/clicast -e FPGA report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2019-12-06 18:16:20 +TIME: 2019-12-10 18:09:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12033,7 +11507,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/release/clicast -e INTERRUPTS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2019-12-06 18:16:22 +TIME: 2019-12-10 18:09:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12045,7 +11519,7 @@ 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/release/clicast -e INT_ALARMLAMP report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2019-12-06 18:16:24 +TIME: 2019-12-10 18:09:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12057,7 +11531,7 @@ 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/release/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2019-12-06 18:16:26 +TIME: 2019-12-10 18:09:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12069,7 +11543,7 @@ 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/release/clicast -e INT_BLOODFLOW report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2019-12-06 18:16:27 +TIME: 2019-12-10 18:09:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12081,7 +11555,7 @@ 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/release/clicast -e INT_BUTTONS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2019-12-06 18:16:29 +TIME: 2019-12-10 18:09:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12093,7 +11567,7 @@ 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/release/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2019-12-06 18:16:30 +TIME: 2019-12-10 18:09:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12103,9 +11577,21 @@ 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/release/clicast -e INT_CPLD report custom actual +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 +TIME: 2019-12-10 18:09:35 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/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/release/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2019-12-06 18:16:32 +TIME: 2019-12-10 18:09:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12117,7 +11603,7 @@ 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/release/clicast -e INT_MSGQUEUES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2019-12-06 18:16:34 +TIME: 2019-12-10 18:09:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12129,7 +11615,7 @@ 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/release/clicast -e INT_OPERATIONMODES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2019-12-06 18:16:35 +TIME: 2019-12-10 18:09:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12139,9 +11625,21 @@ 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". +COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN report custom actual +DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 +TIME: 2019-12-10 18:09:41 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2019 +**Version 19 revision c2818cf (09/24/19) + Processing options file /home/fw/ws_HD/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/release/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2019-12-06 18:16:37 +TIME: 2019-12-10 18:09:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12153,7 +11651,7 @@ 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/release/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2019-12-06 18:16:38 +TIME: 2019-12-10 18:09:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12165,7 +11663,7 @@ 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/release/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2019-12-06 18:16:40 +TIME: 2019-12-10 18:09:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12177,7 +11675,7 @@ 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/release/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2019-12-06 18:16:41 +TIME: 2019-12-10 18:09:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12189,7 +11687,7 @@ 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/release/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2019-12-06 18:16:43 +TIME: 2019-12-10 18:09:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12201,7 +11699,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/release/clicast -e MSGQUEUES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2019-12-06 18:16:44 +TIME: 2019-12-10 18:09:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12213,7 +11711,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/release/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2019-12-06 18:16:46 +TIME: 2019-12-10 18:09:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12225,7 +11723,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2019-12-06 18:16:47 +TIME: 2019-12-10 18:09:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12237,7 +11735,7 @@ 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/release/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2019-12-06 18:16:48 +TIME: 2019-12-10 18:09:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12249,7 +11747,7 @@ 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/release/clicast -e SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2019-12-06 18:16:50 +TIME: 2019-12-10 18:09:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12261,7 +11759,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/release/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2019-12-06 18:16:53 +TIME: 2019-12-10 18:09:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12273,7 +11771,7 @@ The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/release/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2019-12-06 18:16:54 +TIME: 2019-12-10 18:10:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) @@ -12285,7 +11783,7 @@ 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/release/clicast -e WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2019-12-06 18:16:56 +TIME: 2019-12-10 18:10:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2019 **Version 19 revision c2818cf (09/24/19) Index: results/cppcheck.log =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/cppcheck.log (.../cppcheck.log) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/cppcheck.log (.../cppcheck.log) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -43,13 +43,15 @@ Checking hdfirmware/firmware/App/Modes/OperationModes.c ... 17/53 files checked 32% done Checking hdfirmware/firmware/App/Services/AlarmMgmt.c ... +Checking hdfirmware/firmware/App/Services/AlarmMgmt.c: DEBUG_ENABLED... 18/53 files checked 33% done Checking hdfirmware/firmware/App/Services/CommBuffers.c ... 19/53 files checked 35% 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 Checking hdfirmware/firmware/App/Services/Interrupts.c ... +Checking hdfirmware/firmware/App/Services/Interrupts.c: DEBUG_ENABLED... 21/53 files checked 39% done Checking hdfirmware/firmware/App/Services/MsgQueues.c ... 22/53 files checked 41% done Index: results/cppcheckError.log =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/cppcheckError.log (.../cppcheckError.log) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/cppcheckError.log (.../cppcheckError.log) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -1,3 +1,4 @@ +[hdfirmware/firmware/App/Services/Interrupts.c:97]: (style) The scope of the variable 'debugStr' can be reduced. [hdfirmware/firmware/source/adc.c:99] -> [hdfirmware/firmware/source/adc.c:99]: (style) Same expression on both sides of '|'. [hdfirmware/firmware/source/adc.c:126] -> [hdfirmware/firmware/source/adc.c:126]: (style) Same expression on both sides of '|'. [hdfirmware/firmware/source/adc.c:152] -> [hdfirmware/firmware/source/adc.c:152]: (style) Same expression on both sides of '|'. @@ -310,8 +311,8 @@ [hdfirmware/firmware/source/sys_startup.c:100]: (style) The function '_c_int00' is never used. [hdfirmware/firmware/source/errata_SSWF021_45.c:142]: (style) The function '_errata_SSWF021_45_pll1' is never used. [hdfirmware/firmware/source/errata_SSWF021_45.c:213]: (style) The function '_errata_SSWF021_45_pll2' is never used. -[hdfirmware/firmware/App/Services/AlarmMgmt.c:233]: (style) The function 'activateAlarm1Data' is never used. -[hdfirmware/firmware/App/Services/AlarmMgmt.c:256]: (style) The function 'activateAlarm2Data' is never used. +[hdfirmware/firmware/App/Services/AlarmMgmt.c:241]: (style) The function 'activateAlarm1Data' is never used. +[hdfirmware/firmware/App/Services/AlarmMgmt.c:264]: (style) The function 'activateAlarm2Data' is never used. [hdfirmware/firmware/source/adc.c:937]: (style) The function 'adc1GetConfigValue' is never used. [hdfirmware/firmware/source/adc.c:627]: (style) The function 'adcCalibration' is never used. [hdfirmware/firmware/source/adc.c:874]: (style) The function 'adcDisableNotification' is never used. @@ -355,7 +356,7 @@ [hdfirmware/firmware/source/sys_selftest.c:2349]: (style) The function 'checkPLL2Slip' is never used. [hdfirmware/firmware/source/sys_selftest.c:2408]: (style) The function 'checkRAMAddrParity' is never used. [hdfirmware/firmware/source/sys_selftest.c:2469]: (style) The function 'checkRAMUERRTest' is never used. -[hdfirmware/firmware/App/Services/AlarmMgmt.c:276]: (style) The function 'clearAlarm' is never used. +[hdfirmware/firmware/App/Services/AlarmMgmt.c:284]: (style) The function 'clearAlarm' is never used. [hdfirmware/firmware/source/sys_selftest.c:266]: (style) The function 'cpuSelfTest' is never used. [hdfirmware/firmware/source/sys_selftest.c:1159]: (style) The function 'cpuSelfTestFail' is never used. [hdfirmware/firmware/App/Services/Utilities.c:121]: (style) The function 'crc8' is never used. @@ -446,7 +447,7 @@ [hdfirmware/firmware/source/etpwm.c:1546]: (style) The function 'etpwmTriggerEvent' is never used. [hdfirmware/firmware/source/etpwm.c:885]: (style) The function 'etpwmTriggerSWSync' is never used. [hdfirmware/firmware/source/notification.c:204]: (style) The function 'etpwmTripNotification' is never used. -[hdfirmware/firmware/App/Controllers/BloodFlow.c:694]: (style) The function 'execBloodFlowTest' is never used. +[hdfirmware/firmware/App/Controllers/BloodFlow.c:722]: (style) The function 'execBloodFlowTest' is never used. [hdfirmware/firmware/source/sys_selftest.c:2532]: (style) The function 'fmcBus1ParityCheck' is never used. [hdfirmware/firmware/source/sys_selftest.c:760]: (style) The function 'fmcBus2Check' is never used. [hdfirmware/firmware/App/Services/FPGA.c:903]: (style) The function 'getFPGADialysateFlow' is never used. @@ -460,7 +461,7 @@ [hdfirmware/firmware/source/notification.c:151]: (style) The function 'gioNotification' is never used. [hdfirmware/firmware/source/gio.c:258]: (style) The function 'gioSetDirection' is never used. [hdfirmware/firmware/source/gio.c:307]: (style) The function 'gioSetPort' is never used. -[hdfirmware/firmware/App/Services/AlarmMgmt.c:314]: (style) The function 'isAlarmActive' is never used. +[hdfirmware/firmware/App/Services/AlarmMgmt.c:322]: (style) The function 'isAlarmActive' is never used. [hdfirmware/firmware/App/Services/SystemComm.c:150]: (style) The function 'isDGCommunicating' is never used. [hdfirmware/firmware/App/Modes/ModeInitPOST.c:169]: (style) The function 'isPOSTCompleted' is never used. [hdfirmware/firmware/App/Modes/ModeInitPOST.c:184]: (style) The function 'isPOSTPassed' is never used. Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -395,8 +395,8 @@

Configuration Data

- - + +
Environment NameALARMLAMP
Date of Report Creation06 DEC 2019
Time of Report Creation6:16:08 PM
Date of Report Creation10 DEC 2019
Time of Report Creation6:09:11 PM
@@ -412,8 +412,8 @@ Unit Under TestAlarmLamp SubprograminitAlarmLamp Test Case NameNominalPath - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -540,8 +540,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLamp Test Case NameNoPatternChangeManual - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -668,8 +668,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLamp Test Case NameNoPatternChangeStep0To1 - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -886,8 +886,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLamp Test Case NameNoPatternChangeStep1To0 - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1104,8 +1104,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLamp Test Case NameNominalPatternChange - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1262,8 +1262,8 @@ Unit Under TestAlarmLamp SubprogramrequestAlarmLampPattern Test Case NameInvalidLampPatternGiven - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1502,8 +1502,8 @@ Unit Under TestAlarmLamp SubprogramrequestAlarmLampPattern Test Case NameNominalPath - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1658,8 +1658,8 @@ Unit Under TestAlarmLamp SubprogramgetCurrentAlarmLampPattern Test Case NameNominalPath - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1826,8 +1826,8 @@ Unit Under TestAlarmLamp SubprogramgetCurrentAlarmLampPattern Test Case NameOverride - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -1994,8 +1994,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameCompleteToStart - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -2138,8 +2138,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameGreenOn - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -2330,8 +2330,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameGreenToOff - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -2552,8 +2552,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameInvalidState - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -2792,8 +2792,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameRedOn - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -2984,8 +2984,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameRedToYellow - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -3236,8 +3236,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameStartTest - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -3446,8 +3446,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameYellowOn - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -3638,8 +3638,8 @@ Unit Under TestAlarmLamp SubprogramexecAlarmLampTest Test Case NameYellowToGreen - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -3890,8 +3890,8 @@ Unit Under TestAlarmLamp SubprogramsetAlarmLampToPatternStep Test Case NameAlarmHigh_Red - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -4088,8 +4088,8 @@ Unit Under TestAlarmLamp SubprogramsetAlarmLampToPatternStep Test Case NameAlarmMedium_Yellow - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -4306,8 +4306,8 @@ Unit Under TestAlarmLamp SubprogramsetAlarmLampToPatternStep Test Case NameOK_Green - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -4504,8 +4504,8 @@ Unit Under TestAlarmLamp SubprogramtestSetCurrentLampPatternOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -4714,8 +4714,8 @@ Unit Under TestAlarmLamp SubprogramtestSetCurrentLampPatternOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -4924,8 +4924,8 @@ Unit Under TestAlarmLamp SubprogramtestResetCurrentLampPatternOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM @@ -5122,8 +5122,8 @@ Unit Under TestAlarmLamp SubprogramtestResetCurrentLampPatternOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:06:37 PM - Date of Execution06 DEC 2019 6:06:40 PM + Date of Creation10 DEC 2019 5:58:32 PM + Date of Execution10 DEC 2019 5:58:35 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -651,8 +651,8 @@

Configuration Data

- - + +
Environment NameALARMMGMT
Date of Report Creation06 DEC 2019
Time of Report Creation6:16:10 PM
Date of Report Creation10 DEC 2019
Time of Report Creation6:09:13 PM
@@ -668,8 +668,8 @@ Unit Under TestAlarmMgmt SubprograminitAlarmMgmt Test Case NameinitAlarmMgmt_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -958,8 +958,8 @@ Unit Under TestAlarmMgmt SubprogramexecAlarmMgmt Test Case NameexecAlarmMgmt_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -1160,8 +1160,8 @@ Unit Under TestAlarmMgmt SubprogramexecAlarmMgmt Test Case NameexecAlarmMgmt_TimeToPublishStatus - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -1434,8 +1434,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm Test Case NameactivateAlarm_AlreadyActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -1608,8 +1608,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm Test Case NameactivateAlarm_Fault - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -1842,8 +1842,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm Test Case NameactivateAlarm_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -2066,8 +2066,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm Test Case NameactivateAlarm_NoAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -2290,8 +2290,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm Test Case NameactivateAlarm_NotAFault - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -2494,8 +2494,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarmNoData Test Case NameactivateAlarmNoData_AlreadyActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -2650,8 +2650,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarmNoData Test Case NameactivateAlarmNoData_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:54 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -2880,8 +2880,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm1Data Test Case NameactivateAlarm1Data_AlreadyActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:49 PM @@ -3096,8 +3096,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm1Data Test Case NameactivateAlarm1Data_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -3404,8 +3404,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm2Data Test Case NameactivateAlarm2Data_AlreadyActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -3680,8 +3680,8 @@ Unit Under TestAlarmMgmt SubprogramactivateAlarm2Data Test Case NameactivateAlarm2Data_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4066,8 +4066,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_ClearNotAllowed - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4222,8 +4222,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4408,8 +4408,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_NoAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4594,8 +4594,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4816,8 +4816,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_NotActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -4972,8 +4972,8 @@ Unit Under TestAlarmMgmt SubprogramclearAlarm Test Case NameclearAlarm_NotInFIFO - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -5206,8 +5206,8 @@ Unit Under TestAlarmMgmt SubprogramisAlarmActive Test Case NameisAlarmActive_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -5374,8 +5374,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmActive Test Case NamegetAlarmActive_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -5572,8 +5572,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmActive Test Case NamegetAlarmActive_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -5740,8 +5740,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmActive Test Case NamegetAlarmActive_Override - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -5920,8 +5920,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmStartTime Test Case NamegetAlarmStartTime_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6074,8 +6074,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmStartTime Test Case NamegetAlarmStartTime_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6242,8 +6242,8 @@ Unit Under TestAlarmMgmt SubprogramgetAlarmStartTime Test Case NamegetAlarmStartTime_Override - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6422,8 +6422,8 @@ Unit Under TestAlarmMgmt SubprogramupdateAlarmsState Test Case NameupdateAlarmsState_NoAlarmsActive - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6568,8 +6568,8 @@ Unit Under TestAlarmMgmt SubprogramupdateAlarmsState Test Case NameupdateAlarmsState_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:47 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6756,8 +6756,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_High - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -6906,8 +6906,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_HighFault - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7062,8 +7062,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_InvalidAlarmState - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7230,8 +7230,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_Low - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7380,8 +7380,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_Manual - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7538,8 +7538,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_Medium - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7688,8 +7688,8 @@ Unit Under TestAlarmMgmt SubprogramsetAlarmLampAndAudio Test Case NamesetAlarmLampAndAudio_NoAlarms - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -7838,8 +7838,8 @@ Unit Under TestAlarmMgmt SubprogramresetAlarmPriorityFIFO Test Case NameresetAlarmPriorityFIFO_InvalidPriority - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8054,8 +8054,8 @@ Unit Under TestAlarmMgmt SubprogramresetAlarmPriorityFIFO Test Case NameresetAlarmPriorityFIFO_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8204,8 +8204,8 @@ Unit Under TestAlarmMgmt SubprogramgetPublishAlarmStatusInterval Test Case NamegetPublishAlarmStatusInterval_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8366,8 +8366,8 @@ Unit Under TestAlarmMgmt SubprogramgetPublishAlarmStatusInterval Test Case NamegetPublishAlarmStatusInterval_Override - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8528,8 +8528,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStatusPublishIntervalOverride Test Case NametestSetAlarmStatusPublishIntervalOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8738,8 +8738,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStatusPublishIntervalOverride Test Case NametestSetAlarmStatusPublishIntervalOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -8948,8 +8948,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStatusPublishIntervalOverride Test Case NametestResetAlarmStatusPublishIntervalOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -9146,8 +9146,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStatusPublishIntervalOverride Test Case NametestResetAlarmStatusPublishIntervalOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -9344,8 +9344,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStateOverride Test Case NametestSetAlarmStateOverride_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -9542,8 +9542,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStateOverride Test Case NametestSetAlarmStateOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -9770,8 +9770,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStateOverride Test Case NametestSetAlarmStateOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -9998,8 +9998,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStateOverride Test Case NametestResetAlarmStateOverride_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -10184,8 +10184,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStateOverride Test Case NametestResetAlarmStateOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -10400,8 +10400,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStateOverride Test Case NametestResetAlarmStateOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -10616,8 +10616,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStartOverride Test Case NametestSetAlarmStartOverride_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -10752,8 +10752,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStartOverride Test Case NametestSetAlarmStartOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -11010,8 +11010,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStartOverride Test Case NametestSetAlarmStartOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -11238,8 +11238,8 @@ Unit Under TestAlarmMgmt SubprogramtestSetAlarmStartOverride Test Case NametestSetAlarmStartOverride_ValueTooLarge - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:55 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -11496,8 +11496,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStartOverride Test Case NametestResetAlarmStartOverride_InvalidAlarm - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:56 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -11682,8 +11682,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStartOverride Test Case NametestResetAlarmStartOverride_NominalPath - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:56 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM @@ -11898,8 +11898,8 @@ Unit Under TestAlarmMgmt SubprogramtestResetAlarmStartOverride Test Case NametestResetAlarmStartOverride_NotLoggedIn - Date of Creation06 DEC 2019 6:06:51 PM - Date of Execution06 DEC 2019 6:06:56 PM + Date of Creation10 DEC 2019 5:58:46 PM + Date of Execution10 DEC 2019 5:58:50 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -187,97 +187,97 @@ +
  • + +
  • + +
  • + +
  • +
  • -
      + + + +
    • + +
    • + +
    • +
    • -
    • -
        +
      • +
      • -
          +
        • -
            +
          • -
              -
            • Test Case Configuration
            • +
            • -
                -
              • Test Case Configuration
              • +
              • -
                  +
                • -
                    +
                  • -
                      +
                    • -
                        +
                      • -
                          +
                        • -
                            +
                          • -
                              +
                            • -
                                +
                              • -
                                  +
                                • -
                                    +
                                  • -
                                      +
                                    • -
                                        +
                                      • -
                                          -
                                        • Test Case Configuration
                                        • +
                                        • -
                                            -
                                          • Test Case Configuration
                                          • +
                                          • -
                                              -
                                            • Test Case Configuration
                                            • +
                                            • -
                                                -
                                              • Test Case Configuration
                                              • +
                                              • -
                                                  -
                                                • Test Case Configuration
                                                • +
                                                • -
                                                    -
                                                  • Test Case Configuration
                                                  • +
                                                  • -
                                                      -
                                                    • Test Case Configuration
                                                    • +
                                                    • -
                                                        -
                                                      • Test Case Configuration
                                                      • +
                                                      • -
                                                          -
                                                        • Test Case Configuration
                                                        • +
                                                        • -
                                                            -
                                                          • Test Case Configuration
                                                          • +
                                                          • -
                                                              -
                                                            • Test Case Configuration
                                                            • +
                                                            • -
                                                                -
                                                              • Test Case Configuration
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • + +
                                                              • +
                                                              • -
                                                                  -
                                                                • Test Case Configuration
                                                                • +
                                                                • -
                                                                    -
                                                                  • Test Case Configuration
                                                                  • +
                                                                  • -
                                                                      -
                                                                    • Test Case Configuration
                                                                    • +
                                                                    • -
                                                                        -
                                                                      • Test Case Configuration
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • + +
                                                                      • +
                                                                      • -
                                                                          -
                                                                        • Test Case Configuration
                                                                        • +
                                                                        • -
                                                                            -
                                                                          • Test Case Configuration
                                                                          • +
                                                                          • -
                                                                              -
                                                                            • Test Case Configuration
                                                                            • +
                                                                            • - @@ -859,8 +955,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameBLOODFLOW
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:12 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:15 PM
                                                                              @@ -869,22 +965,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprograminitBloodFlow
                                                                              Test Case NameinitBloodFlow_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -1127,22 +1223,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -1313,22 +1409,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_FlowTooHigh
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -1559,22 +1655,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_OffToRateFwd
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -1775,22 +1871,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_OffToRateRev
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -1991,22 +2087,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateDecrease
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -2213,22 +2309,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateDecreaseDuringRampDown
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -2435,22 +2531,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateDecreaseDuringRampUp
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:11 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -2657,22 +2753,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateIncrease
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -2879,22 +2975,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateIncreaseDuringRampDown
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -3101,22 +3197,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_RateIncreaseDuringRampUp
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -3323,22 +3419,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpTargetFlowRate
                                                                              Test Case NamesetBloodPumpTargetFlowRate_ZeroRate
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -3552,8 +3648,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowMonitor Test Case NameexecBloodFlowMonitor_InitMode_WrapFlowBuffer - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -3803,7 +3899,7 @@ <match> - adcBloodPumpSpeedRPM + adcBloodPumpMCSpeedRPM @@ -3815,7 +3911,7 @@ <match> - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -3902,8 +3998,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowMonitor Test Case NameexecBloodFlowMonitor_NominalPath - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4153,7 +4249,7 @@ <match> - adcBloodPumpSpeedRPM + adcBloodPumpMCSpeedRPM @@ -4165,7 +4261,7 @@ <match> - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -4252,8 +4348,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameexecBloodFlowController_ControlToTargetState - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4390,8 +4486,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameexecBloodFlowController_InvalidState - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4566,8 +4662,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameexecBloodFlowController_OffState - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4702,8 +4798,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameexecBloodFlowController_RampDown - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4830,8 +4926,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameexecBloodFlowController_RampUpState - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:07 PM
                                                                              @@ -4951,22 +5047,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpOffState
                                                                              Test Case NamehandleBloodPumpOffState_NewRateSet
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -5207,22 +5303,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpOffState
                                                                              Test Case NamehandleBloodPumpOffState_NoChange
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -5363,22 +5459,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingUpState
                                                                              Test Case NamehandleBloodPumpRampingUpState_RampComplete
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -5525,22 +5621,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingUpState
                                                                              Test Case NamehandleBloodPumpRampingUpState_StillRamping
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -5735,22 +5831,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingUpState
                                                                              Test Case NamehandleBloodPumpRampingUpState_StopRequested
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -5939,22 +6035,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingDownState
                                                                              Test Case NamehandleBloodPumpRampingDownState_
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -6101,22 +6197,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingDownState
                                                                              Test Case NamehandleBloodPumpRampingDownState_RampComplete
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -6301,22 +6397,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpRampingDownState
                                                                              Test Case NamehandleBloodPumpRampingDownState_StillRamping
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -6511,22 +6607,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:07 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -6751,22 +6847,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_NotControlInterval
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -6895,22 +6991,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_PWM_Max
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -7135,22 +7231,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_PWM_Min
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -7375,22 +7471,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_Reverse
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -7615,22 +7711,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_TermsMaxRange
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -7855,22 +7951,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramhandleBloodPumpControlToTargetState
                                                                              Test Case NamehandleBloodPumpControlToTargetState_TermsMaxRange2
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8095,22 +8191,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramstopBloodPump
                                                                              Test Case NamestopBloodPump_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8263,22 +8359,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramreleaseBloodPumpStop
                                                                              Test Case NamereleaseBloodPumpStop_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8379,22 +8475,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpDirection
                                                                              Test Case NamesetBloodPumpDirection_FWD
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8541,22 +8637,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpDirection
                                                                              Test Case NamesetBloodPumpDirection_InvalidDirection
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8775,22 +8871,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramsetBloodPumpDirection
                                                                              Test Case NamesetBloodPumpDirection_REV
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -8937,22 +9033,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetPublishBloodFlowDataInterval
                                                                              Test Case NamegetPublishBloodFlowDataInterval_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -9105,22 +9201,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetPublishBloodFlowDataInterval
                                                                              Test Case NamegetPublishBloodFlowDataInterval_Override
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -9273,22 +9369,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetTargetBloodFlowRate
                                                                              Test Case NamegetTargetBloodFlowRate_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -9441,22 +9537,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetTargetBloodFlowRate
                                                                              Test Case NamegetTargetBloodFlowRate_Override
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -9616,8 +9712,8 @@ Unit Under TestBloodFlow SubprogramgetMeasuredBloodFlowRate Test Case NamegetMeasuredBloodFlowRate_NominalPath - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -9784,8 +9880,8 @@ Unit Under TestBloodFlow SubprogramgetMeasuredBloodFlowRate Test Case NamegetMeasuredBloodFlowRate_Override - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -9941,26 +10037,344 @@
                                                                              +

                                                                              getMeasuredBloodPumpRotorSpeed_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpRotorSpeed
                                                                              Test Case NamegetMeasuredBloodPumpRotorSpeed_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getMeasuredBloodPumpRotorSpeed_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling getMeasuredBloodPumpRotorSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpRotorSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from getMeasuredBloodPumpRotorSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpRotorSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat30<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat30
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              getMeasuredBloodPumpRotorSpeed_Override

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpRotorSpeed
                                                                              Test Case NamegetMeasuredBloodPumpRotorSpeed_Override
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getMeasuredBloodPumpRotorSpeed_Override

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling getMeasuredBloodPumpRotorSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpRotorSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from getMeasuredBloodPumpRotorSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpRotorSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat20<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat30
                                                                              ovInitDatafloat0
                                                                              ovDatafloat20
                                                                              overrideunsigned int0xCCC33C33
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +

                                                                              getMeasuredBloodPumpSpeed_NominalPath

                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpSpeed
                                                                              Test Case NamegetMeasuredBloodPumpSpeed_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -10051,7 +10465,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -10113,22 +10527,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpSpeed
                                                                              Test Case NamegetMeasuredBloodPumpSpeed_Override
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -10219,7 +10633,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -10277,6 +10691,324 @@
                                                                              +

                                                                              getMeasuredBloodPumpMCSpeed_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpMCSpeed
                                                                              Test Case NamegetMeasuredBloodPumpMCSpeed_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getMeasuredBloodPumpMCSpeed_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling getMeasuredBloodPumpMCSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from getMeasuredBloodPumpMCSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat635<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat635
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              getMeasuredBloodPumpMCSpeed_Override

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpMCSpeed
                                                                              Test Case NamegetMeasuredBloodPumpMCSpeed_Override
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getMeasuredBloodPumpMCSpeed_Override

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling getMeasuredBloodPumpMCSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from getMeasuredBloodPumpMCSpeed

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCSpeed
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat1000<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat635
                                                                              ovInitDatafloat0
                                                                              ovDatafloat1000
                                                                              overrideunsigned int0xCCC33C33
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +

                                                                              getMeasuredBloodPumpCurrent_NominalPath

                                                                              @@ -10286,10 +11018,10 @@ - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpCurrent
                                                                              SubprogramgetMeasuredBloodPumpMCCurrent
                                                                              Test Case NamegetMeasuredBloodPumpCurrent_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -10308,10 +11040,10 @@

                                                                              Event 1 - - Calling getMeasuredBloodPumpCurrent

                                                                              + - Calling getMeasuredBloodPumpMCCurrent
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: getMeasuredBloodPumpCurrent
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCCurrent
                                                                              @@ -10338,10 +11070,10 @@

                                                                              Event 2 - - Returned from getMeasuredBloodPumpCurrent

                                                                              + - Returned from getMeasuredBloodPumpMCCurrent
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: getMeasuredBloodPumpCurrent
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCCurrent
                                                                              @@ -10387,7 +11119,7 @@ - + @@ -10454,10 +11186,10 @@
                                                                              adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramgetMeasuredBloodPumpCurrent
                                                                              SubprogramgetMeasuredBloodPumpMCCurrent
                                                                              Test Case NamegetMeasuredBloodPumpCurrent_Override
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -10476,10 +11208,10 @@

                                                                              Event 1 - - Calling getMeasuredBloodPumpCurrent

                                                                              + - Calling getMeasuredBloodPumpMCCurrent
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: getMeasuredBloodPumpCurrent
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCCurrent
                                                                              @@ -10506,10 +11238,10 @@

                                                                              Event 2 - - Returned from getMeasuredBloodPumpCurrent

                                                                              + - Returned from getMeasuredBloodPumpMCCurrent
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: getMeasuredBloodPumpCurrent
                                                                              +
                                                                              Subprogram: getMeasuredBloodPumpMCCurrent
                                                                              @@ -10555,7 +11287,7 @@ - + @@ -10617,22 +11349,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogrampublishBloodFlowData
                                                                              Test Case NamepublishBloodFlowData_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -10689,7 +11421,7 @@ <match> - measCurr + measMCCurr float 650 <match> @@ -10773,7 +11505,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -10785,7 +11517,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -10829,22 +11561,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogrampublishBloodFlowData
                                                                              Test Case NamepublishBloodFlowData_NotIntervalTime
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:12 PM
                                                                              Date of Creation10 DEC 2019 5:59:03 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -10937,7 +11669,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -10949,7 +11681,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -11000,8 +11732,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpDirection Test Case NamecheckBloodPumpDirection_Fail - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11161,7 +11893,7 @@ - adcBloodPumpSpeedRPM + adcBloodPumpMCSpeedRPM @@ -11212,8 +11944,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpDirection Test Case NamecheckBloodPumpDirection_NominalPath - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11293,7 +12025,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -11354,8 +12086,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpDirection Test Case NamecheckBloodPumpDirection_NotControlling - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11478,8 +12210,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_OFFOk - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:12 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11543,7 +12275,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -11600,8 +12332,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_OFFTooHighAlarm - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11725,7 +12457,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -11782,8 +12514,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_OFFTooHighShortTime - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11847,7 +12579,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -11904,8 +12636,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_RunningOk - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -11969,7 +12701,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -12026,8 +12758,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_RunningTooHighAlarm - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -12151,7 +12883,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -12208,8 +12940,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_RunningTooHighShortTime - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -12273,7 +13005,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -12330,8 +13062,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_RunningTooLowAlarm - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -12455,7 +13187,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -12512,8 +13244,8 @@ Unit Under TestBloodFlow SubprogramcheckBloodPumpMCCurrent Test Case NamecheckBloodPumpMCCurrent_RunningTooLowShortTime - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -12577,7 +13309,7 @@ - adcBloodPumpCurrentmA + adcBloodPumpMCCurrentmA @@ -12634,8 +13366,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowTest Test Case NameexecBloodFlowTest_InvalidState - Date of Creation06 DEC 2019 6:07:08 PM - Date of Execution06 DEC 2019 6:07:13 PM + Date of Creation10 DEC 2019 5:59:03 PM + Date of Execution10 DEC 2019 5:59:08 PM
                                                                              @@ -12771,22 +13503,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetBloodFlowDataPublishIntervalOverride
                                                                              Test Case NametestSetBloodFlowDataPublishIntervalOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -12981,22 +13713,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetBloodFlowDataPublishIntervalOverride
                                                                              Test Case NametestSetBloodFlowDataPublishIntervalOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -13191,22 +13923,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetBloodFlowDataPublishIntervalOverride
                                                                              Test Case NametestResetBloodFlowDataPublishIntervalOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -13389,22 +14121,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetBloodFlowDataPublishIntervalOverride
                                                                              Test Case NametestResetBloodFlowDataPublishIntervalOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -13587,22 +14319,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetTargetBloodFlowRateOverride
                                                                              Test Case NametestSetTargetBloodFlowRateOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -13797,22 +14529,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetTargetBloodFlowRateOverride
                                                                              Test Case NametestSetTargetBloodFlowRateOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -14007,22 +14739,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetTargetBloodFlowRateOverride
                                                                              Test Case NametestResetTargetBloodFlowRateOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:08 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -14205,22 +14937,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetTargetBloodFlowRateOverride
                                                                              Test Case NametestResetTargetBloodFlowRateOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -14403,22 +15135,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodFlowRateOverride
                                                                              Test Case NametestSetMeasuredBloodFlowRateOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -14613,22 +15345,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodFlowRateOverride
                                                                              Test Case NametestSetMeasuredBloodFlowRateOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -14823,22 +15555,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodFlowRateOverride
                                                                              Test Case NametestResetMeasuredBloodFlowRateOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15021,22 +15753,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodFlowRateOverride
                                                                              Test Case NametestResetMeasuredBloodFlowRateOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:08 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15215,26 +15947,842 @@
                                                                              +

                                                                              testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpRotorSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpRotorSpeedOverride_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testSetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat50
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testSetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat50
                                                                              returnunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat25<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat50<match>
                                                                              overrideunsigned int0xCCC33C33<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpRotorSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testSetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat50
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testSetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat50
                                                                              returnunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat25<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat0<match>
                                                                              overrideunsigned int0x0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpRotorSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpRotorSpeedOverride_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testResetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testResetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat25<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat0<match>
                                                                              overrideunsigned int0x0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpRotorSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testResetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testResetMeasuredBloodPumpRotorSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpRotorSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              bloodPumpRotorSpeedRPM
                                                                              datafloat25<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat50<match>
                                                                              overrideunsigned int0xCCC33C33<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +

                                                                              testSetMeasuredBloodPumpSpeedOverride_NominalPath

                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpSpeedOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15367,7 +16915,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -15429,22 +16977,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpSpeedOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15577,7 +17125,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -15639,22 +17187,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpSpeedOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15775,7 +17323,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -15837,22 +17385,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpSpeedOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -15973,7 +17521,7 @@ - adcBloodPumpSpeedRPM + bloodPumpSpeedRPM @@ -16031,26 +17579,842 @@
                                                                              +

                                                                              testSetMeasuredBloodPumpMCSpeedOverride_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpMCSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpMCSpeedOverride_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testSetMeasuredBloodPumpMCSpeedOverride_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testSetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat1000
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testSetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat1000
                                                                              returnunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat500<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat1000<match>
                                                                              overrideunsigned int0xCCC33C33<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpMCSpeedOverride
                                                                              Test Case NametestSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testSetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat1000
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testSetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              valuefloat1000
                                                                              returnunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat500<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat0<match>
                                                                              overrideunsigned int0x0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testResetMeasuredBloodPumpMCSpeedOverride_NominalPath

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpMCSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpMCSpeedOverride_NominalPath
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testResetMeasuredBloodPumpMCSpeedOverride_NominalPath

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testResetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testResetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat500<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat0<match>
                                                                              overrideunsigned int0x0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpMCSpeedOverride
                                                                              Test Case NametestResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling testResetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed isTestingActivated

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: isTestingActivated
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from testResetMeasuredBloodPumpMCSpeedOverride

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.c
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCSpeedOverride
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: BloodFlow.c
                                                                              Globals:
                                                                              adcBloodPumpMCSpeedRPM
                                                                              datafloat500<match>
                                                                              ovInitDatafloat0<match>
                                                                              ovDatafloat1000<match>
                                                                              overrideunsigned int0xCCC33C33<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +

                                                                              testSetMeasuredBloodPumpCurrentOverride_NominalPath

                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpCurrentOverride
                                                                              SubprogramtestSetMeasuredBloodPumpMCCurrentOverride
                                                                              Test Case NametestSetMeasuredBloodPumpCurrentOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -16062,10 +18426,10 @@

                                                                              Event 1 - - Calling testSetMeasuredBloodPumpCurrentOverride

                                                                              + - Calling testSetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16128,10 +18492,10 @@

                                                                              Event 3 - - Returned from testSetMeasuredBloodPumpCurrentOverride

                                                                              + - Returned from testSetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16183,7 +18547,7 @@ - + @@ -16245,22 +18609,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestSetMeasuredBloodPumpCurrentOverride
                                                                              SubprogramtestSetMeasuredBloodPumpMCCurrentOverride
                                                                              Test Case NametestSetMeasuredBloodPumpCurrentOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -16272,10 +18636,10 @@

                                                                              Event 1 - - Calling testSetMeasuredBloodPumpCurrentOverride

                                                                              + - Calling testSetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16338,10 +18702,10 @@

                                                                              Event 3 - - Returned from testSetMeasuredBloodPumpCurrentOverride

                                                                              + - Returned from testSetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16393,7 +18757,7 @@ - + @@ -16455,22 +18819,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpCurrentOverride
                                                                              SubprogramtestResetMeasuredBloodPumpMCCurrentOverride
                                                                              Test Case NametestResetMeasuredBloodPumpCurrentOverride_NominalPath
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -16482,10 +18846,10 @@

                                                                              Event 1 - - Calling testResetMeasuredBloodPumpCurrentOverride

                                                                              + - Calling testResetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16542,10 +18906,10 @@

                                                                              Event 3 - - Returned from testResetMeasuredBloodPumpCurrentOverride

                                                                              + - Returned from testResetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16591,7 +18955,7 @@ - + @@ -16653,22 +19017,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - + - - + +
                                                                              Unit Under TestBloodFlow
                                                                              SubprogramtestResetMeasuredBloodPumpCurrentOverride
                                                                              SubprogramtestResetMeasuredBloodPumpMCCurrentOverride
                                                                              Test Case NametestResetMeasuredBloodPumpCurrentOverride_NotLoggedIn
                                                                              Date of Creation06 DEC 2019 6:07:09 PM
                                                                              Date of Execution06 DEC 2019 6:07:13 PM
                                                                              Date of Creation10 DEC 2019 5:59:04 PM
                                                                              Date of Execution10 DEC 2019 5:59:09 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -16680,10 +19044,10 @@

                                                                              Event 1 - - Calling testResetMeasuredBloodPumpCurrentOverride

                                                                              + - Calling testResetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16740,10 +19104,10 @@

                                                                              Event 3 - - Returned from testResetMeasuredBloodPumpCurrentOverride

                                                                              + - Returned from testResetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.c
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16789,7 +19153,7 @@ - + Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -305,256 +305,272 @@ -
                                                                            • -
                                                                            • adcBloodPumpCurrentmAadcBloodPumpMCCurrentmA
                                                                              - - + +
                                                                              Environment NameBUTTONS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:14 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:17 PM
                                                                              @@ -588,8 +604,8 @@ Unit Under TestButtons SubprograminitButtons Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:21 PM
                                                                              @@ -740,8 +756,8 @@ Unit Under TestButtons SubprogramexecButtons Test Case NameButtonsPressed - Date of Creation06 DEC 2019 6:07:22 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:21 PM
                                                                              @@ -998,8 +1014,8 @@ Unit Under TestButtons SubprogramexecButtons Test Case NameNoButtonsPressed - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:21 PM
                                                                              @@ -1216,8 +1232,8 @@ Unit Under TestButtons SubprogramisStopButtonPressed Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:21 PM
                                                                              @@ -1360,8 +1376,8 @@ Unit Under TestButtons SubprogramgetOffButtonState Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:21 PM
                                                                              @@ -1528,8 +1544,8 @@ Unit Under TestButtons SubprogramgetOffButtonState Test Case NameOverride - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -1696,8 +1712,8 @@ Unit Under TestButtons SubprogramgetStopButtonState Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -1864,8 +1880,8 @@ Unit Under TestButtons SubprogramgetStopButtonState Test Case NameOverride - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -2032,8 +2048,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameCompleted - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -2206,8 +2222,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameInProgressStuckButtonReleased - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -2380,8 +2396,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameInProgressStuckButtonTimeout_OffPressed - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -2656,8 +2672,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameInProgressStuckButtonTimeout_StopPressed - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -2932,8 +2948,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameInvalidState - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -3136,8 +3152,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameStartTestNoButtonsPressed - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -3340,8 +3356,8 @@ Unit Under TestButtons SubprogramexecStuckButtonTest Test Case NameStartTestStuckButton - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -3575,7 +3591,7 @@
                                                                              -

                                                                              InvalidModeToTurnOff

                                                                              +

                                                                              InvalidCmdFromUI

                                                                              @@ -3585,9 +3601,9 @@ Unit Under TestButtons SubprogramuserConfirmOffButton - Test Case NameInvalidModeToTurnOff - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:25 PM + Test Case NameInvalidCmdFromUI + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -3598,6 +3614,156 @@
                                                                              +

                                                                              Start of InvalidCmdFromUI

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling userConfirmOffButton

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: userConfirmOffButton
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char3
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from userConfirmOffButton

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: userConfirmOffButton
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char3
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: Buttons.c
                                                                              Globals:
                                                                              offRequestAwaitingUserConfirmationunsigned int1<match>
                                                                              offButtonPressPendingunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%2/2PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              InvalidModeToTurnOff

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameInvalidModeToTurnOff
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +

                                                                              Start of InvalidModeToTurnOff

                                                                              @@ -3759,22 +3925,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameOffButtonRejected
                                                                              Date of Creation06 DEC 2019 6:07:23 PM
                                                                              Date of Execution06 DEC 2019 6:07:25 PM
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -3805,7 +3971,7 @@ response unsigned char - 0 + 2 @@ -3835,7 +4001,7 @@ response unsigned char - 0 + 2 @@ -3909,22 +4075,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameOffDuringFaultMode
                                                                              Date of Creation06 DEC 2019 6:07:23 PM
                                                                              Date of Execution06 DEC 2019 6:07:25 PM
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -4089,22 +4255,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameOffDuringServiceMode
                                                                              Date of Creation06 DEC 2019 6:07:23 PM
                                                                              Date of Execution06 DEC 2019 6:07:26 PM
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -4269,22 +4435,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameOffDuringStandbyMode
                                                                              Date of Creation06 DEC 2019 6:07:23 PM
                                                                              Date of Execution06 DEC 2019 6:07:26 PM
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -4449,22 +4615,22 @@
                                                                              -

                                                                              Test Case Configuration

                                                                              +

                                                                              Test Case Configuration

                                                                              - - + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameuserConfirmOffButton_NoConfirmExpected
                                                                              Date of Creation06 DEC 2019 6:07:23 PM
                                                                              Date of Execution06 DEC 2019 6:07:26 PM
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM

                                                                              - Execution Results (PASS)

                                                                              + Execution Results (PASS)
                                                                              @@ -4481,6 +4647,26 @@
                                                                              UUT: Buttons.c
                                                                              Subprogram: userConfirmOffButton
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char1
                                                                              +
                                                                              @@ -4495,6 +4681,26 @@ + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char1
                                                                              +
                                                                              +
                                                                              + + + @@ -4567,6 +4773,168 @@
                                                                              +

                                                                              userConfirmOffButton_NoRejectExpected

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              +
                                                                              Global Data Type Actual Value
                                                                              + + + + + + + +
                                                                              Unit Under TestButtons
                                                                              SubprogramuserConfirmOffButton
                                                                              Test Case NameuserConfirmOffButton_NoRejectExpected
                                                                              Date of Creation10 DEC 2019 5:59:20 PM
                                                                              Date of Execution10 DEC 2019 5:59:22 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of userConfirmOffButton_NoRejectExpected

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling userConfirmOffButton

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: userConfirmOffButton
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char2
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Returned from userConfirmOffButton

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: userConfirmOffButton
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              responseunsigned char2
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: Buttons.c
                                                                              Globals:
                                                                              offRequestAwaitingUserConfirmationunsigned int0<match>
                                                                              offButtonPressPendingunsigned int0<match>
                                                                              offRequestPulseCountunsigned int0<match>
                                                                              offRequestPulseTimerunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%4/4PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +

                                                                              FaultMode

                                                                              @@ -4578,8 +4946,8 @@ Unit Under TestButtons SubprogramisCurrentOpModeOkToTurnOff Test Case NameFaultMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -4720,8 +5088,8 @@ Unit Under TestButtons SubprogramisCurrentOpModeOkToTurnOff Test Case NameInvalidMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -4862,8 +5230,8 @@ Unit Under TestButtons SubprogramisCurrentOpModeOkToTurnOff Test Case NameServiceMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5004,8 +5372,8 @@ Unit Under TestButtons SubprogramisCurrentOpModeOkToTurnOff Test Case NameStandbyMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5146,8 +5514,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NameNoChangeNoPending - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5268,8 +5636,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamePressedToReleasedOffPendingFirstPulse - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5412,8 +5780,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamePressedToReleasedOffPendingIntermediate - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5546,8 +5914,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamePressedToReleasedOffPendingLastPulse - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5690,8 +6058,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NameReleasedToPressedFaultMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -5852,8 +6220,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NameReleasedToPressedInvalidMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6004,8 +6372,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NameReleasedToPressedServiceMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6166,8 +6534,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NameReleasedToPressedStandbyMode - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6328,8 +6696,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamehandleOffButtonProcessing_OffRequestPending - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6438,8 +6806,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamehandleOffButtonProcessing_OffRequestPendingExpired - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6484,12 +6852,6 @@ - - promptUser - unsigned int - 0 - <match> - return unsigned int @@ -6562,7 +6924,7 @@ - +
                                                                              Expected Results matched 100%3/32/2 PASS
                                                                              @@ -6584,8 +6946,8 @@ Unit Under TestButtons SubprogramhandleStopButtonProcessing Test Case NameNoChange - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6706,8 +7068,8 @@ Unit Under TestButtons SubprogramhandleStopButtonProcessing Test Case NamePressTimedOut - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -6886,8 +7248,8 @@ Unit Under TestButtons SubprogramhandleStopButtonProcessing Test Case NamePressedToReleased - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -7008,8 +7370,8 @@ Unit Under TestButtons SubprogramhandleStopButtonProcessing Test Case NameReleasedToPressed - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -7208,8 +7570,8 @@ Unit Under TestButtons SubprogramtestSetOffButtonStateOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -7418,8 +7780,8 @@ Unit Under TestButtons SubprogramtestSetOffButtonStateOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -7628,8 +7990,8 @@ Unit Under TestButtons SubprogramtestResetOffButtonStateOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -7826,8 +8188,8 @@ Unit Under TestButtons SubprogramtestResetOffButtonStateOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -8024,8 +8386,8 @@ Unit Under TestButtons SubprogramtestSetStopButtonStateOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -8234,8 +8596,8 @@ Unit Under TestButtons SubprogramtestSetStopButtonStateOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -8444,8 +8806,8 @@ Unit Under TestButtons SubprogramtestResetStopButtonStateOverride Test Case NameTestingActive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              @@ -8642,8 +9004,8 @@ Unit Under TestButtons SubprogramtestResetStopButtonStateOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:07:23 PM - Date of Execution06 DEC 2019 6:07:26 PM + Date of Creation10 DEC 2019 5:59:20 PM + Date of Execution10 DEC 2019 5:59:22 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -355,8 +355,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCOMMBUFFERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:17 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:21 PM
                                                                              @@ -372,8 +372,8 @@ Unit Under TestCommBuffers SubprograminitCommBuffers Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -806,8 +806,8 @@ Unit Under TestCommBuffers SubprogramaddToCommBuffer Test Case NameInsufficientSpaceForAdd - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -1014,8 +1014,8 @@ Unit Under TestCommBuffers SubprogramaddToCommBuffer Test Case NameInvalidBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -1160,8 +1160,8 @@ Unit Under TestCommBuffers SubprogramaddToCommBuffer Test Case NameSuccessfulAdd - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -1622,8 +1622,8 @@ Unit Under TestCommBuffers SubprogramgetFromCommBuffer Test Case NameInvalidBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -1768,8 +1768,8 @@ Unit Under TestCommBuffers SubprogramgetFromCommBuffer Test Case NameLengthLargerThanBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -1976,8 +1976,8 @@ Unit Under TestCommBuffers SubprogramgetFromCommBuffer Test Case NameLengthLargerThanContents - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -2184,8 +2184,8 @@ Unit Under TestCommBuffers SubprogramgetFromCommBuffer Test Case NameSuccessfulGetFromBothBuffers - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -2478,8 +2478,8 @@ Unit Under TestCommBuffers SubprogramgetFromCommBuffer Test Case NameSuccessfulGetFromInactiveBufferOnly - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -2772,8 +2772,8 @@ Unit Under TestCommBuffers SubprogrampeekFromCommBuffer Test Case NameInvalidBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -2918,8 +2918,8 @@ Unit Under TestCommBuffers SubprogrampeekFromCommBuffer Test Case NameLengthLargerThanBuffer - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -3126,8 +3126,8 @@ Unit Under TestCommBuffers SubprogrampeekFromCommBuffer Test Case NameLengthLargerThanContents - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -3334,8 +3334,8 @@ Unit Under TestCommBuffers SubprogrampeekFromCommBuffer Test Case NameSuccessfulPeekFromBothBuffers - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:49 PM
                                                                              @@ -3628,8 +3628,8 @@ Unit Under TestCommBuffers SubprogrampeekFromCommBuffer Test Case NameSuccessfulPeekFromInactiveBufferOnly - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -3916,8 +3916,8 @@ Unit Under TestCommBuffers SubprogramnumberOfBytesInCommBuffer Test Case NameInvalidBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -4050,8 +4050,8 @@ Unit Under TestCommBuffers SubprogramnumberOfBytesInCommBuffer Test Case NameNominalPath - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -4224,8 +4224,8 @@ Unit Under TestCommBuffers SubprogramswitchDoubleBuffer Test Case NameSwitch0To1 - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -4398,8 +4398,8 @@ Unit Under TestCommBuffers SubprogramswitchDoubleBuffer Test Case NameSwitch1To0 - Date of Creation06 DEC 2019 6:07:50 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:47 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -4572,8 +4572,8 @@ Unit Under TestCommBuffers SubprogramgetDataFromInactiveBuffer Test Case NameConsumeAllDataInInactiveBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              @@ -4836,8 +4836,8 @@ Unit Under TestCommBuffers SubprogramgetDataFromInactiveBuffer Test Case NameConsumePortionOfDataInInactiveBuffer - Date of Creation06 DEC 2019 6:07:49 PM - Date of Execution06 DEC 2019 6:07:52 PM + Date of Creation10 DEC 2019 5:59:46 PM + Date of Execution10 DEC 2019 5:59:50 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -379,8 +379,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:16 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:19 PM
                                                                              @@ -396,8 +396,8 @@ Unit Under TestComm SubprogramsignalCANXmitsInitiated Test Case NamesignalCANXmitsInitiated_NominalPath - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:39 PM + Date of Creation10 DEC 2019 5:59:34 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -500,8 +500,8 @@ Unit Under TestComm SubprogramsignalCANXmitsCompleted Test Case NamesignalCANXmitsCompleted_NominalPath - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:39 PM + Date of Creation10 DEC 2019 5:59:34 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -604,8 +604,8 @@ Unit Under TestComm SubprogramsignalSCI1XmitsInitiated Test Case NamesignalSCI1XmitsInitiated_NominalPath - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:39 PM + Date of Creation10 DEC 2019 5:59:34 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -708,8 +708,8 @@ Unit Under TestComm SubprogramsignalSCI1XmitsCompleted Test Case NamesignalSCI1XmitsCompleted_NominalPath - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:39 PM + Date of Creation10 DEC 2019 5:59:34 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -812,8 +812,8 @@ Unit Under TestComm SubprogramsetSCI1DMAReceiveInterrupt Test Case NamesetSCI1DMAReceiveInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:39 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -928,8 +928,8 @@ Unit Under TestComm SubprogramsetSCI1DMATransmitInterrupt Test Case NamesetSCI1DMATransmitInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1044,8 +1044,8 @@ Unit Under TestComm SubprogramclearSCI1DMAReceiveInterrupt Test Case NameclearSCI1DMAReceiveInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1160,8 +1160,8 @@ Unit Under TestComm SubprogramclearSCI1DMATransmitInterrupt Test Case NameclearSCI1DMATransmitInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1276,8 +1276,8 @@ Unit Under TestComm SubprogramsetSCI2DMAReceiveInterrupt Test Case NamesetSCI2DMAReceiveInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1392,8 +1392,8 @@ Unit Under TestComm SubprogramsetSCI2DMATransmitInterrupt Test Case NamesetSCI2DMATransmitInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1508,8 +1508,8 @@ Unit Under TestComm SubprogramclearSCI2DMAReceiveInterrupt Test Case NameclearSCI2DMAReceiveInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1624,8 +1624,8 @@ Unit Under TestComm SubprogramclearSCI2DMATransmitInterrupt Test Case NameclearSCI2DMATransmitInterrupt - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1740,8 +1740,8 @@ Unit Under TestComm SubprogramisSCI1DMATransmitInProgress Test Case NameisSCI1DMATransmitInProgress_DMABusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -1914,8 +1914,8 @@ Unit Under TestComm SubprogramisSCI1DMATransmitInProgress Test Case NameisSCI1DMATransmitInProgress_InProgress - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2094,8 +2094,8 @@ Unit Under TestComm SubprogramisSCI1DMATransmitInProgress Test Case NameisSCI1DMATransmitInProgress_NotBusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2268,8 +2268,8 @@ Unit Under TestComm SubprogramisSCI1DMATransmitInProgress Test Case NameisSCI1DMATransmitInProgress_TransmitterBusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2442,8 +2442,8 @@ Unit Under TestComm SubprogramisSCI2DMATransmitInProgress Test Case NameisSCI2DMATransmitInProgress_DMABusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2616,8 +2616,8 @@ Unit Under TestComm SubprogramisSCI2DMATransmitInProgress Test Case NameisSCI2DMATransmitInProgress_NotBusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2790,8 +2790,8 @@ Unit Under TestComm SubprogramisSCI2DMATransmitInProgress Test Case NameisSCI2DMATransmitInProgress_TransmitterBusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -2964,8 +2964,8 @@ Unit Under TestComm SubprogramisCAN1TransmitInProgress Test Case NameisCAN1TransmitInProgress_Ch1_8_Busy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -3132,8 +3132,8 @@ Unit Under TestComm SubprogramisCAN1TransmitInProgress Test Case NameisCAN1TransmitInProgress_Ch9_16_Busy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -3300,8 +3300,8 @@ Unit Under TestComm SubprogramisCAN1TransmitInProgress Test Case NameisCAN1TransmitInProgress_InProgress - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              @@ -3474,8 +3474,8 @@ Unit Under TestComm SubprogramisCAN1TransmitInProgress Test Case NameisCAN1TransmitInProgress_NotBusy - Date of Creation06 DEC 2019 6:07:37 PM - Date of Execution06 DEC 2019 6:07:40 PM + Date of Creation10 DEC 2019 5:59:33 PM + Date of Execution10 DEC 2019 5:59:36 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -291,8 +291,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCPLD
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:19 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:23 PM
                                                                              @@ -308,8 +308,8 @@ Unit Under TestCPLD SubprograminitCPLD Test Case NameinitCPLD_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -496,8 +496,8 @@ Unit Under TestCPLD SubprogramtoggleCPLDWatchdog Test Case NametoggleCPLDWatchdog_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -598,8 +598,8 @@ Unit Under TestCPLD SubprogramgetCPLDWatchdogExpired Test Case NamegetCPLDWatchdogExpired_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -746,8 +746,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampGreen Test Case NamesetCPLDLampGreen_Off - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -902,8 +902,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampGreen Test Case NamesetCPLDLampGreen_On - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1058,8 +1058,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampBlue Test Case NamesetCPLDLampBlue_Off - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1214,8 +1214,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampBlue Test Case NamesetCPLDLampBlue_On - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1370,8 +1370,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampRed Test Case NamesetCPLDLampRed_Off - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1526,8 +1526,8 @@ Unit Under TestCPLD SubprogramsetCPLDLampRed Test Case NamesetCPLDLampRed_On - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1682,8 +1682,8 @@ Unit Under TestCPLD SubprogramtoggleCPLDOffRequest Test Case NametoggleCPLDOffRequest_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1784,8 +1784,8 @@ Unit Under TestCPLD SubprogramgetCPLDOffButton Test Case NamegetCPLDOffButton_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              @@ -1932,8 +1932,8 @@ Unit Under TestCPLD SubprogramgetCPLDStopButton Test Case NamegetCPLDStopButton_NominalPath - Date of Creation06 DEC 2019 6:08:01 PM - Date of Execution06 DEC 2019 6:08:03 PM + Date of Creation10 DEC 2019 6:00:00 PM + Date of Execution10 DEC 2019 6:00:02 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -611,8 +611,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameFPGA
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:21 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:24 PM
                                                                              @@ -628,8 +628,8 @@ Unit Under TestFPGA SubprograminitFPGA Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -1105,7 +1105,7 @@ SADD unsigned int - 4123593152 + 532289984 @@ -1213,7 +1213,7 @@ DADD unsigned int - 4123593424 + 532290256 @@ -1309,7 +1309,7 @@ SADD unsigned int - 4123593416 + 532290248 @@ -1417,7 +1417,7 @@ DADD unsigned int - 4123593440 + 532290272 @@ -1700,8 +1700,8 @@ Unit Under TestFPGA SubprogramresetFPGACommFlags Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -1840,8 +1840,8 @@ Unit Under TestFPGA SubprogramsignalFPGAReceiptCompleted Test Case NameBulkWriteAndReadInProgressAfterWrite - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2120,8 +2120,8 @@ Unit Under TestFPGA SubprogramsignalFPGAReceiptCompleted Test Case NameNothingInProgress - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2260,8 +2260,8 @@ Unit Under TestFPGA SubprogramsignalFPGAReceiptCompleted Test Case NameReadCmdInProgress - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2400,8 +2400,8 @@ Unit Under TestFPGA SubprogramsignalFPGAReceiptCompleted Test Case NameWriteCmdInProgress - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:14 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2540,8 +2540,8 @@ Unit Under TestFPGA SubprogramsignalFPGATransmitCompleted Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2680,8 +2680,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameCommErrorTooManyRetries - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2852,8 +2852,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameFailedState - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -2998,8 +2998,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameInvalidState - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -3174,8 +3174,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameOutgoingState - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -3320,8 +3320,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameRcvAllSensorsState - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -3924,8 +3924,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameRcvHeaderState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -4234,8 +4234,8 @@ Unit Under TestFPGA SubprogramexecFPGAIn Test Case NameStartState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -4380,8 +4380,8 @@ Unit Under TestFPGA SubprogramexecFPGAOut Test Case NameFailedState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -4484,8 +4484,8 @@ Unit Under TestFPGA SubprogramexecFPGAOut Test Case NameIncomingState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -4588,8 +4588,8 @@ Unit Under TestFPGA SubprogramexecFPGAOut Test Case NameInvalidState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -4722,8 +4722,8 @@ Unit Under TestFPGA SubprogramexecFPGAOut Test Case NameReadHeaderState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -5042,8 +5042,8 @@ Unit Under TestFPGA SubprogramexecFPGAOut Test Case NameWriteAllActuatorsState - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:14 PM
                                                                              @@ -5404,8 +5404,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReadHeaderState Test Case NameNominalCase - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -5722,8 +5722,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveHeaderState Test Case NameBadCRC - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -6036,8 +6036,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveHeaderState Test Case NameNAKResponse - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -6314,8 +6314,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveHeaderState Test Case NameNoResponseReceived - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -6592,8 +6592,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveHeaderState Test Case NameNominalCase - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -6906,8 +6906,8 @@ Unit Under TestFPGA SubprogramhandleFPGAWriteAllActuatorsState Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -7400,8 +7400,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveAllSensorsState Test Case NameBadCRC - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -8002,8 +8002,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveAllSensorsState Test Case NameNAKResponse - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -8208,8 +8208,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveAllSensorsState Test Case NameNoResponseReceived - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -8402,8 +8402,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveAllSensorsState Test Case NameNoWriteResponseReceived - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -8596,8 +8596,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReceiveAllSensorsState Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -9174,8 +9174,8 @@ Unit Under TestFPGA SubprogramexecFPGATest Test Case NameTestFailed - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -9384,8 +9384,8 @@ Unit Under TestFPGA SubprogramexecFPGATest Test Case NameTestPassed - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -9534,8 +9534,8 @@ Unit Under TestFPGA SubprogramsetupDMAForWriteCmd Test Case NameLengthTooLarge - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -9694,8 +9694,8 @@ Unit Under TestFPGA SubprogramsetupDMAForWriteCmd Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -9844,8 +9844,8 @@ Unit Under TestFPGA SubprogramstartDMAWriteCmd Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:13 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -10234,8 +10234,8 @@ Unit Under TestFPGA SubprogramsetupDMAForWriteResp Test Case NameLengthTooLarge - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -10394,8 +10394,8 @@ Unit Under TestFPGA SubprogramsetupDMAForWriteResp Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -10544,8 +10544,8 @@ Unit Under TestFPGA SubprogramstartDMAReceiptOfWriteResp Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:13 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -10934,8 +10934,8 @@ Unit Under TestFPGA SubprogramsetupDMAForReadCmd Test Case NameLengthTooLarge - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -11094,8 +11094,8 @@ Unit Under TestFPGA SubprogramsetupDMAForReadCmd Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -11244,8 +11244,8 @@ Unit Under TestFPGA SubprogramstartDMAReadCmd Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -11634,8 +11634,8 @@ Unit Under TestFPGA SubprogramsetupDMAForReadResp Test Case NameLengthTooLarge - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -11794,8 +11794,8 @@ Unit Under TestFPGA SubprogramsetupDMAForReadResp Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -11944,8 +11944,8 @@ Unit Under TestFPGA SubprogramstartDMAReceiptOfReadResp Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -12334,8 +12334,8 @@ Unit Under TestFPGA SubprogramgetFPGAId Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -12484,8 +12484,8 @@ Unit Under TestFPGA SubprogramgetFPGARev Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -12634,8 +12634,8 @@ Unit Under TestFPGA SubprogramgetFPGAStatus Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:15 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -12784,8 +12784,8 @@ Unit Under TestFPGA SubprogramsetFPGAControl Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:16 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -12934,8 +12934,8 @@ Unit Under TestFPGA SubprogramgetFPGABloodFlow Test Case NamegetFPGABloodFlow_NominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:16 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -13084,8 +13084,8 @@ Unit Under TestFPGA SubprogramgetFPGADialysateFlow Test Case NamegetFPGADialysateFlow_NominalPath - Date of Creation06 DEC 2019 6:08:13 PM - Date of Execution06 DEC 2019 6:08:16 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -13234,8 +13234,8 @@ Unit Under TestFPGA SubprogramconsumeUnexpectedData Test Case NameDataBytePending - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:16 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              @@ -13406,8 +13406,8 @@ Unit Under TestFPGA SubprogramconsumeUnexpectedData Test Case NameNoData - Date of Creation06 DEC 2019 6:08:12 PM - Date of Execution06 DEC 2019 6:08:16 PM + Date of Creation10 DEC 2019 6:00:12 PM + Date of Execution10 DEC 2019 6:00:15 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -355,8 +355,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINTERRUPTS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:24 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:26 PM
                                                                              @@ -372,8 +372,8 @@ Unit Under TestInterrupts SubprogramphantomInterrupt Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -464,8 +464,8 @@ Unit Under TestInterrupts SubprogramcanMessageNotification Test Case NameInvalidCANNode - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -596,8 +596,8 @@ Unit Under TestInterrupts SubprogramcanMessageNotification Test Case NameNominalPath - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -738,8 +738,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_BusOff - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -900,8 +900,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_BusPassive - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1062,8 +1062,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_BusWarning - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1224,8 +1224,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_InvalidCANNode - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1346,8 +1346,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_Other - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1508,8 +1508,8 @@ Unit Under TestInterrupts SubprogramcanErrorNotification Test Case NamecanErrorNotification_ParityError - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1670,8 +1670,8 @@ Unit Under TestInterrupts SubprogramsciNotification Test Case NameFramingError_SCI - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1820,8 +1820,8 @@ Unit Under TestInterrupts SubprogramsciNotification Test Case NameFramingError_SCI2 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -1970,8 +1970,8 @@ Unit Under TestInterrupts SubprogramsciNotification Test Case NameInvalidSCI - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2132,8 +2132,8 @@ Unit Under TestInterrupts SubprogramsciNotification Test Case NameOverrunError_SCI - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2282,8 +2282,8 @@ Unit Under TestInterrupts SubprogramsciNotification Test Case NameOverrunError_SCI2 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2432,8 +2432,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameDMAChannel0 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2616,8 +2616,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameDMAChannel1 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2800,8 +2800,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameDMAChannel2 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -2984,8 +2984,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameDMAChannel3 - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -3168,8 +3168,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameInvalidChannel - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              @@ -3312,8 +3312,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NameUnexpectedInterruptType - Date of Creation06 DEC 2019 6:08:28 PM - Date of Execution06 DEC 2019 6:08:31 PM + Date of Creation10 DEC 2019 6:00:26 PM + Date of Execution10 DEC 2019 6:00:29 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -243,8 +243,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_ALARMLAMP
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:25 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:28 PM
                                                                              @@ -260,8 +260,8 @@ Unit Under TestModeFault SubprogramtransitionToFaultMode Test Case NamerequestAlarmLampPattern - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              @@ -376,8 +376,8 @@ Unit Under TestModeInitPOST SubprogramexecInitAndPOSTMode Test Case NameexecAlarmLampTest - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              @@ -518,8 +518,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmLampPatternOverrideRequest Test Case NametestResetCurrentLampPatternOverride - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              @@ -880,8 +880,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmLampPatternOverrideRequest Test Case NametestSetCurrentLampPatternOverride - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              @@ -1236,8 +1236,8 @@ Unit Under TestTaskGeneral SubprogramtaskGeneral Test Case NameexecAlarmLamp - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              @@ -1484,8 +1484,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitAlarmLamp - Date of Creation06 DEC 2019 6:08:55 PM - Date of Execution06 DEC 2019 6:08:57 PM + Date of Creation10 DEC 2019 6:00:55 PM + Date of Execution10 DEC 2019 6:01:02 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -227,8 +227,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_ALARMMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:27 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:30 PM
                                                                              @@ -244,8 +244,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowMonitor Test Case NameactivateAlarm1Data - Date of Creation06 DEC 2019 6:09:15 PM - Date of Execution06 DEC 2019 6:09:17 PM + Date of Creation10 DEC 2019 6:01:23 PM + Date of Execution10 DEC 2019 6:01:25 PM
                                                                              @@ -516,8 +516,8 @@ Unit Under TestBloodFlow SubprogramexecBloodFlowController Test Case NameactivateAlarm2Data - Date of Creation06 DEC 2019 6:09:15 PM - Date of Execution06 DEC 2019 6:09:17 PM + Date of Creation10 DEC 2019 6:01:23 PM + Date of Execution10 DEC 2019 6:01:25 PM
                                                                              @@ -742,8 +742,8 @@ Unit Under TestTaskGeneral SubprogramtaskGeneral Test Case NameexecAlarmMgmt - Date of Creation06 DEC 2019 6:09:15 PM - Date of Execution06 DEC 2019 6:09:17 PM + Date of Creation10 DEC 2019 6:01:23 PM + Date of Execution10 DEC 2019 6:01:25 PM
                                                                              @@ -976,8 +976,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitAlarmMgmt - Date of Creation06 DEC 2019 6:09:15 PM - Date of Execution06 DEC 2019 6:09:17 PM + Date of Creation10 DEC 2019 6:01:23 PM + Date of Execution10 DEC 2019 6:01:25 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -219,8 +219,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_BLOODFLOW
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:28 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:31 PM
                                                                              @@ -236,8 +236,8 @@ Unit Under TestTaskGeneral SubprogramtaskGeneral Test Case NameexecBloodFlowController - Date of Creation06 DEC 2019 6:09:35 PM - Date of Execution06 DEC 2019 6:09:38 PM + Date of Creation10 DEC 2019 6:01:45 PM + Date of Execution10 DEC 2019 6:01:47 PM @@ -468,8 +468,8 @@ Unit Under TestTaskPriority SubprogramtaskPriority Test Case NameexecBloodFlowMonitor - Date of Creation06 DEC 2019 6:09:35 PM - Date of Execution06 DEC 2019 6:09:38 PM + Date of Creation10 DEC 2019 6:01:45 PM + Date of Execution10 DEC 2019 6:01:47 PM @@ -623,6 +623,26 @@
                                                                              UUT: FPGA.h
                                                                              Subprogram: getFPGABloodFlow
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              returnfloat200
                                                                              +
                                                                              @@ -683,17 +703,29 @@ measFlow float + 2 + <match> + + + measRotorSpd + float 0 <match> measSpd float + 0 + <match> + + + measMCSpd + float -83.875 <match> - measCurr + measMCCurr float -161.65 <match> @@ -796,7 +828,7 @@ - +
                                                                              Expected Results matched 100%5/57/7 PASS
                                                                              @@ -818,8 +850,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitBloodFlow - Date of Creation06 DEC 2019 6:09:35 PM - Date of Execution06 DEC 2019 6:09:38 PM + Date of Creation10 DEC 2019 6:01:45 PM + Date of Execution10 DEC 2019 6:01:47 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -259,8 +259,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_BUTTONS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:30 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:33 PM
                                                                              @@ -276,8 +276,8 @@ Unit Under TestModeInitPOST SubprogramexecInitAndPOSTMode Test Case NameexecStuckButtonTest - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -434,8 +434,8 @@ Unit Under TestSystemCommMessages SubprogramhandleOffButtonConfirmMsgFromUI Test Case NameuserConfirmOffButton - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -666,8 +666,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestOffButtonStateOverrideRequest Test Case NametestResetOffButtonStateOverride - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -1028,8 +1028,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestOffButtonStateOverrideRequest Test Case NametestSetOffButtonStateOverride - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -1384,8 +1384,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestStopButtonStateOverrideRequest Test Case NametestResetStopButtonStateOverride - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -1746,8 +1746,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestStopButtonStateOverrideRequest Test Case NametestSetStopButtonStateOverride - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -2102,8 +2102,8 @@ Unit Under TestTaskPriority SubprogramtaskPriority Test Case NameexecButtons - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM @@ -2418,8 +2418,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitButtons - Date of Creation06 DEC 2019 6:10:01 PM - Date of Execution06 DEC 2019 6:10:03 PM + Date of Creation10 DEC 2019 6:02:10 PM + Date of Execution10 DEC 2019 6:02:13 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -219,8 +219,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_COMMBUFFERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:32 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:34 PM
                                                                              @@ -236,8 +236,8 @@ Unit Under TestSystemComm SubprogramconsumeBufferPaddingBeforeSync Test Case NamepeekAndgetFromAndNumberOfBytesInCommBuffer - Date of Creation06 DEC 2019 6:10:24 PM - Date of Execution06 DEC 2019 6:10:26 PM + Date of Creation10 DEC 2019 6:02:35 PM + Date of Execution10 DEC 2019 6:02:38 PM @@ -506,8 +506,8 @@ Unit Under TestSystemCommMessages SubprogramsendOffButtonMsgToUI Test Case NameaddToCommBuffer - Date of Creation06 DEC 2019 6:10:24 PM - Date of Execution06 DEC 2019 6:10:26 PM + Date of Creation10 DEC 2019 6:02:35 PM + Date of Execution10 DEC 2019 6:02:38 PM @@ -706,8 +706,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitCommBuffers - Date of Creation06 DEC 2019 6:10:24 PM - Date of Execution06 DEC 2019 6:10:27 PM + Date of Creation10 DEC 2019 6:02:35 PM + Date of Execution10 DEC 2019 6:02:38 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html =================================================================== diff -u --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html (revision 0) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -0,0 +1,1441 @@ + + + + + Execution Results Report + + + + +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + +

                                                                              Contents

                                                                              + +
                                                                              +
                                                                              +
                                                                              Execution Results Report
                                                                              + +
                                                                              +

                                                                              Configuration Data

                                                                              + + + + +
                                                                              Environment NameINT_CPLD
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:36 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              setCPLDLampGreen

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestAlarmLamp
                                                                              SubprogramexecAlarmLampTest
                                                                              Test Case NamesetCPLDLampGreen
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of setCPLDLampGreen

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling execAlarmLampTest

                                                                              +
                                                                              +
                                                                              UUT: AlarmLamp.c
                                                                              +
                                                                              Subprogram: execAlarmLampTest
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed didTimeout

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: didTimeout
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              startMSCountunsigned int1000<match>
                                                                              timeoutPeriodunsigned int1000<match>
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Stubbed getMSTimerCount

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: getMSTimerCount
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 4 + - Returned from execAlarmLampTest

                                                                              +
                                                                              +
                                                                              UUT: AlarmLamp.c
                                                                              +
                                                                              Subprogram: execAlarmLampTest
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: AlarmLamp.c
                                                                              Globals:
                                                                              alarmLampSelfTestStateenumALARM_LAMP_SELF_TEST_STATE_YELLOW<match>
                                                                              alarmLampSelfTestStepTimerCountunsigned int0
                                                                              UNIT: CPLD.c
                                                                              Globals:
                                                                              ptr_mibspiREG5
                                                                              [0]
                                                                              PC3unsigned int0x200<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%4/4PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              setCPLDLampRed

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestAlarmLamp
                                                                              SubprogramexecAlarmLampTest
                                                                              Test Case NamesetCPLDLampRed
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of setCPLDLampRed

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling execAlarmLampTest

                                                                              +
                                                                              +
                                                                              UUT: AlarmLamp.c
                                                                              +
                                                                              Subprogram: execAlarmLampTest
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed getMSTimerCount

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: getMSTimerCount
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from execAlarmLampTest

                                                                              +
                                                                              +
                                                                              UUT: AlarmLamp.c
                                                                              +
                                                                              Subprogram: execAlarmLampTest
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: AlarmLamp.c
                                                                              Globals:
                                                                              alarmLampSelfTestStateenumALARM_LAMP_SELF_TEST_STATE_RED<match>
                                                                              alarmLampSelfTestStepTimerCountunsigned int0
                                                                              UNIT: CPLD.c
                                                                              Globals:
                                                                              ptr_mibspiREG5
                                                                              [0]
                                                                              PC3unsigned int0xA00<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%2/2PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              getCPLDOffAndStopButtons

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestButtons
                                                                              SubprogramexecButtons
                                                                              Test Case NamegetCPLDOffAndStopButtons
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getCPLDOffAndStopButtons

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling execButtons

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: execButtons
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed gioGetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioGetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int0<match>
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Stubbed gioGetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioGetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int1<match>
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 4 + - Stubbed getMSTimerCount

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: getMSTimerCount
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 5 + - Stubbed didTimeout

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: didTimeout
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 6 + - Stubbed getCurrentOperationMode

                                                                              +
                                                                              +
                                                                              UUT: OperationModes.h
                                                                              +
                                                                              Subprogram: getCurrentOperationMode
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 7 + - Stubbed sendOffButtonMsgToUI

                                                                              +
                                                                              +
                                                                              UUT: SystemCommMessages.h
                                                                              +
                                                                              Subprogram: sendOffButtonMsgToUI
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 8 + - Returned from execButtons

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: execButtons
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%2/2PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              toggleCPLDOffRequest

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestButtons
                                                                              SubprogramhandleOffButtonProcessing
                                                                              Test Case NametoggleCPLDOffRequest
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of toggleCPLDOffRequest

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling handleOffButtonProcessing

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: handleOffButtonProcessing
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed gioToggleBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioToggleBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from handleOffButtonProcessing

                                                                              +
                                                                              +
                                                                              UUT: Buttons.c
                                                                              +
                                                                              Subprogram: handleOffButtonProcessing
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: Buttons.c
                                                                              Globals:
                                                                              offButtonPressPendingunsigned int0<match>
                                                                              offRequestPulseCountunsigned int0<match>
                                                                              offRequestPulseTimerunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%4/4PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              getCPLDWatchdogExpired

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestWatchdogMgmt
                                                                              SubprogramexecWatchdogMgmt
                                                                              Test Case NamegetCPLDWatchdogExpired
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of getCPLDWatchdogExpired

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling execWatchdogMgmt

                                                                              +
                                                                              +
                                                                              UUT: WatchdogMgmt.c
                                                                              +
                                                                              Subprogram: execWatchdogMgmt
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed gioGetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioGetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int2<match>
                                                                              returnunsigned int1
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Returned from execWatchdogMgmt

                                                                              +
                                                                              +
                                                                              UUT: WatchdogMgmt.c
                                                                              +
                                                                              Subprogram: execWatchdogMgmt
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              toggleCPLDWatchdog

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under TestWatchdogMgmt
                                                                              SubprogrampetWatchdog
                                                                              Test Case NametoggleCPLDWatchdog
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of toggleCPLDWatchdog

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling petWatchdog

                                                                              +
                                                                              +
                                                                              UUT: WatchdogMgmt.c
                                                                              +
                                                                              Subprogram: petWatchdog
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed gioToggleBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioToggleBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int1<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Stubbed getMSTimerCount

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: getMSTimerCount
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 4 + - Returned from petWatchdog

                                                                              +
                                                                              +
                                                                              UUT: WatchdogMgmt.c
                                                                              +
                                                                              Subprogram: petWatchdog
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%1/1PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              +

                                                                              initCPLD

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under Testsys_main
                                                                              SubprograminitSoftware
                                                                              Test Case NameinitCPLD
                                                                              Date of Creation10 DEC 2019 6:03:00 PM
                                                                              Date of Execution10 DEC 2019 6:03:03 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of initCPLD

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling initSoftware

                                                                              +
                                                                              +
                                                                              UUT: sys_main.c
                                                                              +
                                                                              Subprogram: initSoftware
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed initAlarmMgmt

                                                                              +
                                                                              +
                                                                              UUT: AlarmMgmt.h
                                                                              +
                                                                              Subprogram: initAlarmMgmt
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Stubbed initTimers

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: initTimers
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 4 + - Stubbed initSafetyShutdown

                                                                              +
                                                                              +
                                                                              UUT: SafetyShutdown.h
                                                                              +
                                                                              Subprogram: initSafetyShutdown
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 5 + - Stubbed gioSetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioSetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int1<match>
                                                                              valueunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 6 + - Stubbed gioSetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioSetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int0<match>
                                                                              valueunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 7 + - Stubbed initInternalADC

                                                                              +
                                                                              +
                                                                              UUT: InternalADC.h
                                                                              +
                                                                              Subprogram: initInternalADC
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 8 + - Stubbed initBloodFlow

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.h
                                                                              +
                                                                              Subprogram: initBloodFlow
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 9 + - Stubbed initFPGA

                                                                              +
                                                                              +
                                                                              UUT: FPGA.h
                                                                              +
                                                                              Subprogram: initFPGA
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 10 + - Stubbed initCommBuffers

                                                                              +
                                                                              +
                                                                              UUT: CommBuffers.h
                                                                              +
                                                                              Subprogram: initCommBuffers
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 11 + - Stubbed initMsgQueues

                                                                              +
                                                                              +
                                                                              UUT: MsgQueues.h
                                                                              +
                                                                              Subprogram: initMsgQueues
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 12 + - Stubbed initSystemComm

                                                                              +
                                                                              +
                                                                              UUT: SystemComm.h
                                                                              +
                                                                              Subprogram: initSystemComm
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 13 + - Stubbed initOperationModes

                                                                              +
                                                                              +
                                                                              UUT: OperationModes.h
                                                                              +
                                                                              Subprogram: initOperationModes
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 14 + - Returned from initSoftware

                                                                              +
                                                                              +
                                                                              UUT: sys_main.c
                                                                              +
                                                                              Subprogram: initSoftware
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              Global DataTypeActual ValueExpected Value
                                                                              UNIT: CPLD.c
                                                                              Globals:
                                                                              ptr_mibspiREG5
                                                                              [0]
                                                                              PC3unsigned int0x0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%5/5PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              + + \ No newline at end of file Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -235,8 +235,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_FPGA
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:33 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:37 PM
                                                                              @@ -252,8 +252,8 @@ Unit Under TestModeInitPOST SubprogramexecInitAndPOSTMode Test Case NameexecFPGATest - Date of Creation06 DEC 2019 6:10:50 PM - Date of Execution06 DEC 2019 6:10:53 PM + Date of Creation10 DEC 2019 6:03:26 PM + Date of Execution10 DEC 2019 6:03:29 PM @@ -446,8 +446,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NamesignalFPGAReceiptCompleted - Date of Creation06 DEC 2019 6:10:50 PM - Date of Execution06 DEC 2019 6:10:53 PM + Date of Creation10 DEC 2019 6:03:26 PM + Date of Execution10 DEC 2019 6:03:29 PM @@ -624,8 +624,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NamesignalFPGATransmitCompleted - Date of Creation06 DEC 2019 6:10:50 PM - Date of Execution06 DEC 2019 6:10:53 PM + Date of Creation10 DEC 2019 6:03:26 PM + Date of Execution10 DEC 2019 6:03:29 PM @@ -790,8 +790,8 @@ Unit Under TestTaskPriority SubprogramtaskPriority Test Case NameexecFPGAInAndOut - Date of Creation06 DEC 2019 6:10:50 PM - Date of Execution06 DEC 2019 6:10:53 PM + Date of Creation10 DEC 2019 6:03:26 PM + Date of Execution10 DEC 2019 6:03:29 PM @@ -1034,8 +1034,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitFPGA - Date of Creation06 DEC 2019 6:10:50 PM - Date of Execution06 DEC 2019 6:10:53 PM + Date of Creation10 DEC 2019 6:03:27 PM + Date of Execution10 DEC 2019 6:03:29 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -227,8 +227,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_MSGQUEUES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:35 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:39 PM
                                                                              @@ -244,8 +244,8 @@ Unit Under TestSystemComm SubprogramprocessIncomingData Test Case NameaddToMsgQueue - Date of Creation06 DEC 2019 6:11:16 PM - Date of Execution06 DEC 2019 6:11:18 PM + Date of Creation10 DEC 2019 6:03:51 PM + Date of Execution10 DEC 2019 6:03:53 PM @@ -546,8 +546,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessages Test Case NamegetFromMsgQueue - Date of Creation06 DEC 2019 6:11:16 PM - Date of Execution06 DEC 2019 6:11:18 PM + Date of Creation10 DEC 2019 6:03:51 PM + Date of Execution10 DEC 2019 6:03:53 PM @@ -750,8 +750,8 @@ Unit Under TestSystemCommMessages SubprogramsendOffButtonMsgToUI Test Case NameblankMessage - Date of Creation06 DEC 2019 6:11:16 PM - Date of Execution06 DEC 2019 6:11:18 PM + Date of Creation10 DEC 2019 6:03:51 PM + Date of Execution10 DEC 2019 6:03:53 PM @@ -944,8 +944,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitMsgQueues - Date of Creation06 DEC 2019 6:11:16 PM - Date of Execution06 DEC 2019 6:11:18 PM + Date of Creation10 DEC 2019 6:03:51 PM + Date of Execution10 DEC 2019 6:03:53 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -227,8 +227,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_OPERATIONMODES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:36 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:41 PM
                                                                              @@ -244,8 +244,8 @@ Unit Under TestButtons SubprogramuserConfirmOffButton Test Case NamegetCurrentOperationMode - Date of Creation06 DEC 2019 6:11:39 PM - Date of Execution06 DEC 2019 6:11:41 PM + Date of Creation10 DEC 2019 6:04:15 PM + Date of Execution10 DEC 2019 6:04:18 PM @@ -412,8 +412,8 @@ Unit Under TestModeInitPOST SubprogramexecInitAndPOSTMode Test Case NamerequestNewOperationMode - Date of Creation06 DEC 2019 6:11:39 PM - Date of Execution06 DEC 2019 6:11:41 PM + Date of Creation10 DEC 2019 6:04:15 PM + Date of Execution10 DEC 2019 6:04:18 PM @@ -558,8 +558,8 @@ Unit Under TestTaskGeneral SubprogramtaskGeneral Test Case NameexecOperationModes - Date of Creation06 DEC 2019 6:11:39 PM - Date of Execution06 DEC 2019 6:11:41 PM + Date of Creation10 DEC 2019 6:04:15 PM + Date of Execution10 DEC 2019 6:04:18 PM @@ -784,8 +784,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitOperationModes - Date of Creation06 DEC 2019 6:11:39 PM - Date of Execution06 DEC 2019 6:11:41 PM + Date of Creation10 DEC 2019 6:04:15 PM + Date of Execution10 DEC 2019 6:04:18 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html =================================================================== diff -u --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html (revision 0) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -0,0 +1,451 @@ + + + + + Execution Results Report + + + + +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + +

                                                                              Contents

                                                                              + +
                                                                              +
                                                                              +
                                                                              Execution Results Report
                                                                              + +
                                                                              +

                                                                              Configuration Data

                                                                              + + + + +
                                                                              Environment NameINT_SAFETYSHUTDOWN
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:42 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              initSafetyShutdown

                                                                              + +
                                                                              +
                                                                              +

                                                                              Test Case Configuration

                                                                              +
                                                                              + + + + + + + + +
                                                                              Unit Under Testsys_main
                                                                              SubprograminitSoftware
                                                                              Test Case NameinitSafetyShutdown
                                                                              Date of Creation10 DEC 2019 6:04:31 PM
                                                                              Date of Execution10 DEC 2019 6:04:34 PM
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Execution Results (PASS)

                                                                              +
                                                                              + +
                                                                              +

                                                                              Start of initSafetyShutdown

                                                                              +
                                                                              + +
                                                                              + +
                                                                              + +

                                                                              Event 1 + - Calling initSoftware

                                                                              +
                                                                              +
                                                                              UUT: sys_main.c
                                                                              +
                                                                              Subprogram: initSoftware
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 2 + - Stubbed initAlarmMgmt

                                                                              +
                                                                              +
                                                                              UUT: AlarmMgmt.h
                                                                              +
                                                                              Subprogram: initAlarmMgmt
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 3 + - Stubbed initTimers

                                                                              +
                                                                              +
                                                                              UUT: Timers.h
                                                                              +
                                                                              Subprogram: initTimers
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 4 + - Stubbed gioSetBit

                                                                              +
                                                                              +
                                                                              UUT: gio.h
                                                                              +
                                                                              Subprogram: gioSetBit
                                                                              +
                                                                              +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              ParameterTypeActual ValueExpected Value
                                                                              bitunsigned int3<match>
                                                                              valueunsigned int0<match>
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 5 + - Stubbed initCPLD

                                                                              +
                                                                              +
                                                                              UUT: CPLD.h
                                                                              +
                                                                              Subprogram: initCPLD
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 6 + - Stubbed initInternalADC

                                                                              +
                                                                              +
                                                                              UUT: InternalADC.h
                                                                              +
                                                                              Subprogram: initInternalADC
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 7 + - Stubbed initBloodFlow

                                                                              +
                                                                              +
                                                                              UUT: BloodFlow.h
                                                                              +
                                                                              Subprogram: initBloodFlow
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 8 + - Stubbed initAlarmLamp

                                                                              +
                                                                              +
                                                                              UUT: AlarmLamp.h
                                                                              +
                                                                              Subprogram: initAlarmLamp
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 9 + - Stubbed initButtons

                                                                              +
                                                                              +
                                                                              UUT: Buttons.h
                                                                              +
                                                                              Subprogram: initButtons
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 10 + - Stubbed initWatchdogMgmt

                                                                              +
                                                                              +
                                                                              UUT: WatchdogMgmt.h
                                                                              +
                                                                              Subprogram: initWatchdogMgmt
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 11 + - Stubbed initFPGA

                                                                              +
                                                                              +
                                                                              UUT: FPGA.h
                                                                              +
                                                                              Subprogram: initFPGA
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 12 + - Stubbed initCommBuffers

                                                                              +
                                                                              +
                                                                              UUT: CommBuffers.h
                                                                              +
                                                                              Subprogram: initCommBuffers
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 13 + - Stubbed initMsgQueues

                                                                              +
                                                                              +
                                                                              UUT: MsgQueues.h
                                                                              +
                                                                              Subprogram: initMsgQueues
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 14 + - Stubbed initSystemComm

                                                                              +
                                                                              +
                                                                              UUT: SystemComm.h
                                                                              +
                                                                              Subprogram: initSystemComm
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 15 + - Stubbed initOperationModes

                                                                              +
                                                                              +
                                                                              UUT: OperationModes.h
                                                                              +
                                                                              Subprogram: initOperationModes
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +

                                                                              Event 16 + - Returned from initSoftware

                                                                              +
                                                                              +
                                                                              UUT: sys_main.c
                                                                              +
                                                                              Subprogram: initSoftware
                                                                              +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              UUT Returned control to Driver, end of test case

                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Result - PASS

                                                                              + + + + + + +
                                                                              Expected Results matched 100%2/2PASS
                                                                              +
                                                                              +
                                                                              + +
                                                                              + + +
                                                                              + + \ No newline at end of file Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -267,8 +267,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_SYSTEMCOMMMESSAGES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:39 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:45 PM
                                                                              @@ -284,8 +284,8 @@ Unit Under TestButtons SubprogramhandleOffButtonProcessing Test Case NamesendOffButtonMsgToUI - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:35 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -477,7 +477,7 @@ [4] array - 1 + 0 <match> @@ -538,8 +538,8 @@ Unit Under TestButtons SubprogramtestSetOffButtonStateOverride Test Case NameisTestingActivated - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:35 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -694,8 +694,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleOffButtonConfirmMsgFromUI - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:35 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -926,8 +926,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTestAlarmLampPatternOverrideRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:35 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -1262,8 +1262,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTestHDMessageRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:35 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -1634,8 +1634,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTestOffButtonStateOverrideRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:36 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -1970,8 +1970,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTestStopButtonStateOverrideRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:36 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -2306,8 +2306,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTestWatchdogCheckInStateOverrideRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:36 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM @@ -2696,8 +2696,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NamehandleTesterLogInRequest - Date of Creation06 DEC 2019 6:12:33 PM - Date of Execution06 DEC 2019 6:12:36 PM + Date of Creation10 DEC 2019 6:05:27 PM + Date of Execution10 DEC 2019 6:05:30 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -235,8 +235,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_SYSTEMCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:38 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:44 PM
                                                                              @@ -252,8 +252,8 @@ Unit Under TestInterrupts SubprogramcanMessageNotification Test Case NamehandleCANMsgInterrupt - Date of Creation06 DEC 2019 6:12:08 PM - Date of Execution06 DEC 2019 6:12:11 PM + Date of Creation10 DEC 2019 6:05:02 PM + Date of Execution10 DEC 2019 6:05:05 PM @@ -618,8 +618,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NamehandleUARTMsgRecvPacketInterrupt - Date of Creation06 DEC 2019 6:12:08 PM - Date of Execution06 DEC 2019 6:12:11 PM + Date of Creation10 DEC 2019 6:05:02 PM + Date of Execution10 DEC 2019 6:05:05 PM @@ -976,8 +976,8 @@ Unit Under TestInterrupts SubprogramdmaGroupANotification Test Case NamehandleUARTMsgXmitPacketInterrupt - Date of Creation06 DEC 2019 6:12:08 PM - Date of Execution06 DEC 2019 6:12:11 PM + Date of Creation10 DEC 2019 6:05:02 PM + Date of Execution10 DEC 2019 6:05:05 PM @@ -1314,8 +1314,8 @@ Unit Under TestTaskGeneral SubprogramtaskGeneral Test Case NameexecSystemCommRxAndTx - Date of Creation06 DEC 2019 6:12:08 PM - Date of Execution06 DEC 2019 6:12:11 PM + Date of Creation10 DEC 2019 6:05:02 PM + Date of Execution10 DEC 2019 6:05:05 PM @@ -1810,8 +1810,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitSystemComm - Date of Creation06 DEC 2019 6:12:08 PM - Date of Execution06 DEC 2019 6:12:11 PM + Date of Creation10 DEC 2019 6:05:02 PM + Date of Execution10 DEC 2019 6:05:05 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -219,8 +219,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_TIMERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:41 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:47 PM
                                                                              @@ -236,8 +236,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogMgmt Test Case NamedidTimeout - Date of Creation06 DEC 2019 6:12:54 PM - Date of Execution06 DEC 2019 6:12:57 PM + Date of Creation10 DEC 2019 6:05:50 PM + Date of Execution10 DEC 2019 6:05:52 PM @@ -432,8 +432,8 @@ Unit Under TestTaskTimer SubprogramtaskTimer Test Case NameincMSTimerCount - Date of Creation06 DEC 2019 6:12:54 PM - Date of Execution06 DEC 2019 6:12:57 PM + Date of Creation10 DEC 2019 6:05:49 PM + Date of Execution10 DEC 2019 6:05:52 PM @@ -536,8 +536,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitTimers - Date of Creation06 DEC 2019 6:12:54 PM - Date of Execution06 DEC 2019 6:12:57 PM + Date of Creation10 DEC 2019 6:05:50 PM + Date of Execution10 DEC 2019 6:05:52 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -203,8 +203,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_UTILITIES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:43 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:48 PM
                                                                              @@ -220,8 +220,8 @@ Unit Under TestFPGA SubprogramhandleFPGAReadHeaderState Test Case Namecrc16 - Date of Creation06 DEC 2019 6:13:09 PM - Date of Execution06 DEC 2019 6:13:11 PM + Date of Creation10 DEC 2019 6:06:06 PM + Date of Execution10 DEC 2019 6:06:08 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -243,8 +243,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_WATCHDOGMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:44 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:50 PM
                                                                              @@ -260,8 +260,8 @@ Unit Under TestModeInitPOST SubprogramexecInitAndPOSTMode Test Case NameexecWatchdogTest - Date of Creation06 DEC 2019 6:13:33 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM @@ -474,8 +474,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestWatchdogCheckInStateOverrideRequest Test Case NametestResetWatchdogTaskCheckInOverride - Date of Creation06 DEC 2019 6:13:33 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM @@ -890,8 +890,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestWatchdogCheckInStateOverrideRequest Test Case NametestSetWatchdogTaskCheckInOverride - Date of Creation06 DEC 2019 6:13:33 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM @@ -1306,8 +1306,8 @@ Unit Under TestTaskBG SubprogramtaskBackground Test Case NameexecWatchdogMgmt - Date of Creation06 DEC 2019 6:13:33 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM @@ -1616,8 +1616,8 @@ Unit Under TestTaskTimer SubprogramtaskTimer Test Case NamecheckInWithWatchdogMgmt - Date of Creation06 DEC 2019 6:13:33 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM @@ -1754,8 +1754,8 @@ Unit Under Testsys_main SubprograminitSoftware Test Case NameinitWatchdogMgmt - Date of Creation06 DEC 2019 6:13:34 PM - Date of Execution06 DEC 2019 6:13:36 PM + Date of Creation10 DEC 2019 6:06:33 PM + Date of Execution10 DEC 2019 6:06:36 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -331,8 +331,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameMSGQUEUES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:45 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:51 PM
                                                                              @@ -348,8 +348,8 @@ Unit Under TestMsgQueues SubprograminitMsgQueues Test Case NameNominalPath - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -518,8 +518,8 @@ Unit Under TestMsgQueues SubprogramaddToMsgQueue Test Case NameInvalidQueue - Date of Creation06 DEC 2019 6:13:44 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -798,8 +798,8 @@ Unit Under TestMsgQueues SubprogramaddToMsgQueue Test Case NameQueueFull - Date of Creation06 DEC 2019 6:13:44 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -1126,8 +1126,8 @@ Unit Under TestMsgQueues SubprogramaddToMsgQueue Test Case NameSuccessfulAdd - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -1444,8 +1444,8 @@ Unit Under TestMsgQueues SubprogramaddToMsgQueue Test Case NameSuccessfulAddWithWrap - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -1762,8 +1762,8 @@ Unit Under TestMsgQueues SubprogramgetFromMsgQueue Test Case NameInvalidQueue - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -2090,8 +2090,8 @@ Unit Under TestMsgQueues SubprogramgetFromMsgQueue Test Case NameQueueEmpty - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -2432,8 +2432,8 @@ Unit Under TestMsgQueues SubprogramgetFromMsgQueue Test Case NameSuccessfulGet - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -2774,8 +2774,8 @@ Unit Under TestMsgQueues SubprogramgetFromMsgQueue Test Case NameSuccessfulGetWithWrap - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3092,8 +3092,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueEmpty Test Case NameInvalidQueue - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3226,8 +3226,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueEmpty Test Case NameQueueEmpty - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3388,8 +3388,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueEmpty Test Case NameQueueNotEmpty - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3550,8 +3550,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueFull Test Case NameInvalidQueue - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3684,8 +3684,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueFull Test Case NameQueueFull - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -3846,8 +3846,8 @@ Unit Under TestMsgQueues SubprogramisMsgQueueFull Test Case NameQueueNotFull - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -4008,8 +4008,8 @@ Unit Under TestMsgQueues SubprogramblankMessage Test Case NameNominalPath - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM @@ -4230,8 +4230,8 @@ Unit Under TestMsgQueues SubprogramblankMessageInWrapper Test Case NameNominalPath - Date of Creation06 DEC 2019 6:13:45 PM - Date of Execution06 DEC 2019 6:13:47 PM + Date of Creation10 DEC 2019 6:06:46 PM + Date of Execution10 DEC 2019 6:06:49 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -403,8 +403,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameOPERATIONMODES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:47 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:53 PM
                                                                              @@ -420,8 +420,8 @@ Unit Under TestOperationModes SubprograminitOperationModes Test Case NameNominalPath - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -684,8 +684,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameInitPOSTToStandbyMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -868,8 +868,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameInvalidMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1052,8 +1052,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameInvalidModeChange - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1236,8 +1236,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameOpParamsToPreTreatMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1420,8 +1420,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NamePreTreatToTreatmentMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1604,8 +1604,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NamePrescriptionToOpParamsMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1788,8 +1788,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameStandbyToPrescriptionMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -1972,8 +1972,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameStandbyToServiceMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2156,8 +2156,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameTreatmentToFaultMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2340,8 +2340,8 @@ Unit Under TestOperationModes SubprogramexecOperationModes Test Case NameTreatmentToPostTreatMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2524,8 +2524,8 @@ Unit Under TestOperationModes SubprogramrequestNewOperationMode Test Case NameInvalidModeRequested - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2678,8 +2678,8 @@ Unit Under TestOperationModes SubprogramrequestNewOperationMode Test Case NameValidModeRequested - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2834,8 +2834,8 @@ Unit Under TestOperationModes SubprogramgetCurrentOperationMode Test Case NameNominalPath - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -2978,8 +2978,8 @@ Unit Under TestOperationModes SubprogramarbitrateModeRequest Test Case NameNoRequestPending - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3182,8 +3182,8 @@ Unit Under TestOperationModes SubprogramarbitrateModeRequest Test Case NameRequestPending - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3386,8 +3386,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameFaultMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3503,8 +3503,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameInitPOSTMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3620,8 +3620,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameInvalidMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3737,8 +3737,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameOpParamsMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3854,8 +3854,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NamePostTreatmentMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -3971,8 +3971,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NamePreTreatmentMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -4088,8 +4088,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NamePrescriptionMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -4205,8 +4205,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameServiceMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -4322,8 +4322,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameStandbyMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM @@ -4439,8 +4439,8 @@ Unit Under TestOperationModes SubprogramtransitionToNewOperationMode Test Case NameTreatmentMode - Date of Creation06 DEC 2019 6:13:56 PM - Date of Execution06 DEC 2019 6:13:59 PM + Date of Creation10 DEC 2019 6:06:59 PM + Date of Execution10 DEC 2019 6:07:02 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -211,8 +211,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSAFETYSHUTDOWN
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:48 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:55 PM
                                                                              @@ -228,8 +228,8 @@ Unit Under TestSafetyShutdown SubprograminitSafetyShutdown Test Case NameinitSafetyShutdown_NominalPath - Date of Creation06 DEC 2019 6:14:08 PM - Date of Execution06 DEC 2019 6:14:10 PM + Date of Creation10 DEC 2019 6:07:13 PM + Date of Execution10 DEC 2019 6:07:15 PM @@ -336,8 +336,8 @@ Unit Under TestSafetyShutdown SubprogramactivateSafetyShutdown Test Case NameactivateSafetyShutdown_NominalPath - Date of Creation06 DEC 2019 6:14:08 PM - Date of Execution06 DEC 2019 6:14:10 PM + Date of Creation10 DEC 2019 6:07:13 PM + Date of Execution10 DEC 2019 6:07:15 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -635,8 +635,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSYSTEMCOMMMESSAGES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:51 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:58 PM
                                                                              @@ -652,8 +652,8 @@ Unit Under TestSystemCommMessages SubprogramserializeMessage Test Case NameserializeMessage_MessageNeedsPadding - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -812,8 +812,8 @@ Unit Under TestSystemCommMessages SubprogramserializeMessage Test Case NameserializeMessage_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -972,8 +972,8 @@ Unit Under TestSystemCommMessages SubprogramsendOffButtonMsgToUI Test Case NamesendOffButtonMsgToUI_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -1136,8 +1136,8 @@ Unit Under TestSystemCommMessages SubprogramhandleOffButtonConfirmMsgFromUI Test Case NamehandleOffButtonConfirmMsgFromUI_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -1350,8 +1350,8 @@ Unit Under TestSystemCommMessages SubprogrambroadcastAlarmStatus Test Case NamebroadcastAlarmStatus_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -2060,8 +2060,8 @@ Unit Under TestSystemCommMessages SubprogrambroadcastAlarmTriggered Test Case NamebroadcastAlarmTriggered_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:38 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -2506,8 +2506,8 @@ Unit Under TestSystemCommMessages SubprogrambroadcastAlarmCleared Test Case NamebroadcastAlarmCleared_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -2736,8 +2736,8 @@ Unit Under TestSystemCommMessages SubprogrambroadcastBloodFlowData Test Case NamebroadcastBloodFlowData_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -2785,14 +2785,26 @@ + measRotorSpd + float + 30 + + + measSpd float 1000 - measCurr + measMCSpd float + 998 + + + + measMCCurr + float 200 @@ -2869,7 +2881,7 @@ [3] string - 16 + 24 <match> @@ -2935,13 +2947,13 @@ [14] string - 122 + 240 <match> [15] string - 68 + 65 <match> @@ -2959,19 +2971,67 @@ [18] string - 72 + 122 <match> [19] string + 68 + <match> + + + [20] + string + 0 + <match> + + + [21] + string + 128 + <match> + + + [22] + string + 121 + <match> + + + [23] + string + 68 + <match> + + + [24] + string + 0 + <match> + + + [25] + string + 0 + <match> + + + [26] + string + 72 + <match> + + + [27] + string 67 <match> len unsigned int - 24 + 32 <match> @@ -3017,14 +3077,26 @@ + measRotorSpd + float + 30 + + + measSpd float 1000 - measCurr + measMCSpd float + 998 + + + + measMCCurr + float 200 @@ -3052,7 +3124,7 @@ - +
                                                                              Expected Results matched 100%23/2331/31 PASS
                                                                              @@ -3074,8 +3146,8 @@ Unit Under TestSystemCommMessages SubprogramhandleDGCheckIn Test Case NamehandleDGCheckIn_NominalPath - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -3186,8 +3258,8 @@ Unit Under TestSystemCommMessages SubprogramhandleUICheckIn Test Case NamehandleUICheckIn_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -3298,8 +3370,8 @@ Unit Under TestSystemCommMessages SubprogramsendDebugData Test Case NamesendDebugData_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -3576,8 +3648,8 @@ Unit Under TestSystemCommMessages SubprogramisTestingActivated Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -3720,8 +3792,8 @@ Unit Under TestSystemCommMessages SubprogramsendTestAckResponseMsg Test Case NamesendTestAckResponseMsg_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -3962,8 +4034,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTesterLogInRequest Test Case NamehandleTesterLogInRequest_LoginSuccessful - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -4222,8 +4294,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTesterLogInRequest Test Case NamehandleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -4482,8 +4554,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTesterLogInRequest Test Case NamehandleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -4742,8 +4814,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTesterLogInRequest Test Case NamehandleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -5002,8 +5074,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTesterLogInRequest Test Case NamehandleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -5274,8 +5346,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestHDMessageRequest Test Case NamehandleTestHDMessageRequest_NominalPath - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -5586,8 +5658,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestOffButtonStateOverrideRequest Test Case NamehandleTestOffButtonStateOverrideRequest_InvalidPayloadLength - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -5902,8 +5974,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestOffButtonStateOverrideRequest Test Case NamehandleTestOffButtonStateOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -6226,8 +6298,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestOffButtonStateOverrideRequest Test Case NamehandleTestOffButtonStateOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -6582,8 +6654,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestStopButtonStateOverrideRequest Test Case NamehandleTestStopButtonStateOverrideRequest_InvalidPayloadLength - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -6802,8 +6874,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestStopButtonStateOverrideRequest Test Case NamehandleTestStopButtonStateOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -7018,8 +7090,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestStopButtonStateOverrideRequest Test Case NamehandleTestStopButtonStateOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -7386,8 +7458,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmLampPatternOverrideRequest Test Case NamehandleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -7606,8 +7678,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmLampPatternOverrideRequest Test Case NamehandleTestAlarmLampPatternOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -7930,8 +8002,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmLampPatternOverrideRequest Test Case NamehandleTestAlarmLampPatternOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -8298,8 +8370,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestWatchdogCheckInStateOverrideRequest Test Case NamehandleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -8518,8 +8590,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestWatchdogCheckInStateOverrideRequest Test Case NamehandleTestWatchdogCheckInStateOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -8896,8 +8968,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestWatchdogCheckInStateOverrideRequest Test Case NamehandleTestWatchdogCheckInStateOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -9268,8 +9340,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStateOverrideRequest Test Case NamehandleTestAlarmStateOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -9504,8 +9576,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStateOverrideRequest Test Case NamehandleTestAlarmStateOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -9938,8 +10010,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStateOverrideRequest Test Case NamehandleTestAlarmStateOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -10366,8 +10438,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmTimeOverrideRequest Test Case NamehandleTestAlarmTimeOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:38 PM @@ -10608,8 +10680,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmTimeOverrideRequest Test Case NamehandleTestAlarmTimeOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -11048,8 +11120,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmTimeOverrideRequest Test Case NamehandleTestAlarmTimeOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -11482,8 +11554,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStatusBroadcastIntervalOverrideRequest Test Case NamehandleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -11724,8 +11796,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStatusBroadcastIntervalOverrideRequest Test Case NamehandleTestAlarmStatusBroadcastIntervalOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -12110,8 +12182,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestAlarmStatusBroadcastIntervalOverrideRequest Test Case NamehandleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -12490,8 +12562,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowSetPointOverrideRequest Test Case NamehandleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -12732,8 +12804,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowSetPointOverrideRequest Test Case NamehandleTestBloodFlowSetPointOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -13118,8 +13190,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowSetPointOverrideRequest Test Case NamehandleTestBloodFlowSetPointOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -13498,8 +13570,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowMeasuredOverrideRequest Test Case NamehandleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -13740,8 +13812,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowMeasuredOverrideRequest Test Case NamehandleTestBloodFlowMeasuredOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -14126,8 +14198,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowMeasuredOverrideRequest Test Case NamehandleTestBloodFlowMeasuredOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -14506,8 +14578,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodPumpMeasuredSpeedOverrideRequest Test Case NamehandleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:39 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -14748,8 +14820,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodPumpMeasuredSpeedOverrideRequest Test Case NamehandleTestBloodPumpMeasuredSpeedOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:40 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM @@ -14876,10 +14948,10 @@

                                                                              Event 2 - - Stubbed testSetMeasuredBloodPumpSpeedOverride

                                                                              + - Stubbed testSetMeasuredBloodPumpMCSpeedOverride
                                                                              UUT: BloodFlow.h
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpSpeedOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCSpeedOverride
                                                                              @@ -14980,6 +15052,12 @@ + + + + + + @@ -15112,7 +15190,7 @@
                                                                              1 <match>
                                                                              lenunsigned int8<match>
                                                                              return unsigned int
                                                                              - +
                                                                              Expected Results matched 100%7/78/8 PASS
                                                                              @@ -15134,8 +15212,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodPumpMeasuredSpeedOverrideRequest Test Case NamehandleTestBloodPumpMeasuredSpeedOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:36 PM - Date of Execution06 DEC 2019 6:14:40 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -15262,10 +15340,10 @@

                                                                              Event 2 - - Stubbed testResetMeasuredBloodPumpSpeedOverride

                                                                              + - Stubbed testResetMeasuredBloodPumpMCSpeedOverride
                                                                              UUT: BloodFlow.h
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpSpeedOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCSpeedOverride
                                                                              @@ -15514,8 +15592,8 @@ - - + +
                                                                              Unit Under TestSystemCommMessages
                                                                              SubprogramhandleTestBloodPumpMeasuredCurrentOverrideRequest
                                                                              Test Case NamehandleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen
                                                                              Date of Creation06 DEC 2019 6:14:35 PM
                                                                              Date of Execution06 DEC 2019 6:14:40 PM
                                                                              Date of Creation10 DEC 2019 6:07:36 PM
                                                                              Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -15756,8 +15834,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodPumpMeasuredCurrentOverrideRequest Test Case NamehandleTestBloodPumpMeasuredCurrentOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:40 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -15884,10 +15962,10 @@

                                                                              Event 2 - - Stubbed testSetMeasuredBloodPumpCurrentOverride

                                                                              + - Stubbed testSetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.h
                                                                              -
                                                                              Subprogram: testSetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testSetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16142,8 +16220,8 @@ - - + +
                                                                              Unit Under TestSystemCommMessages
                                                                              SubprogramhandleTestBloodPumpMeasuredCurrentOverrideRequest
                                                                              Test Case NamehandleTestBloodPumpMeasuredCurrentOverrideRequest_Reset
                                                                              Date of Creation06 DEC 2019 6:14:35 PM
                                                                              Date of Execution06 DEC 2019 6:14:40 PM
                                                                              Date of Creation10 DEC 2019 6:07:36 PM
                                                                              Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -16270,10 +16348,10 @@

                                                                              Event 2 - - Stubbed testResetMeasuredBloodPumpCurrentOverride

                                                                              + - Stubbed testResetMeasuredBloodPumpMCCurrentOverride
                                                                              UUT: BloodFlow.h
                                                                              -
                                                                              Subprogram: testResetMeasuredBloodPumpCurrentOverride
                                                                              +
                                                                              Subprogram: testResetMeasuredBloodPumpMCCurrentOverride
                                                                              @@ -16522,8 +16600,8 @@ - - + +
                                                                              Unit Under TestSystemCommMessages
                                                                              SubprogramhandleTestBloodFlowBroadcastIntervalOverrideRequest
                                                                              Test Case NamehandleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen
                                                                              Date of Creation06 DEC 2019 6:14:35 PM
                                                                              Date of Execution06 DEC 2019 6:14:40 PM
                                                                              Date of Creation10 DEC 2019 6:07:36 PM
                                                                              Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -16764,8 +16842,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowBroadcastIntervalOverrideRequest Test Case NamehandleTestBloodFlowBroadcastIntervalOverrideRequest_Override - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:40 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM
                                                                              @@ -17150,8 +17228,8 @@ Unit Under TestSystemCommMessages SubprogramhandleTestBloodFlowBroadcastIntervalOverrideRequest Test Case NamehandleTestBloodFlowBroadcastIntervalOverrideRequest_Reset - Date of Creation06 DEC 2019 6:14:35 PM - Date of Execution06 DEC 2019 6:14:40 PM + Date of Creation10 DEC 2019 6:07:36 PM + Date of Execution10 DEC 2019 6:07:39 PM
                                                                              Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -699,8 +699,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSYSTEMCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:50 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:56 PM
                                                                              @@ -716,8 +716,8 @@ Unit Under TestSystemComm SubprograminitSystemComm Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -918,8 +918,8 @@ Unit Under TestSystemComm SubprogramcheckInFromDG Test Case NamecheckInFromDG_NominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1022,8 +1022,8 @@ Unit Under TestSystemComm SubprogramcheckInFromUI Test Case NamecheckInFromUI_NominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1126,8 +1126,8 @@ Unit Under TestSystemComm SubprogramisDGCommunicating Test Case NameisDGCommunicating_NominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1270,8 +1270,8 @@ Unit Under TestSystemComm SubprogramisUICommunicating Test Case NameisUICommunicating_NominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1414,8 +1414,8 @@ Unit Under TestSystemComm SubprogramuiCommunicated Test Case NameuiCommunicated_NominalPath - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1558,8 +1558,8 @@ Unit Under TestSystemComm SubprogramexecSystemCommRx Test Case NameOneMessageToProcessInBuffers - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -1943,7 +1943,7 @@ [0] string - 0x38 + 0x58 @@ -2063,31 +2063,31 @@ [0] string - 0x70 + 0x50 [1] string - 192 + 224 [2] string - 228 + 64 [3] string - 98 + 27 [4] string - 254 + 255 @@ -2243,7 +2243,7 @@ msgID unsigned short - 0xCB10 + 0xB10 @@ -2627,7 +2627,7 @@ msgID unsigned short - 49308 + 57468 @@ -2812,8 +2812,8 @@ Unit Under TestSystemComm SubprogramexecSystemCommTx Test Case NameCAN1TransmitterBusy - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -2837,6 +2837,16 @@
                                                                              UUT: SystemComm.c
                                                                              Subprogram: execSystemCommTx
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -2867,6 +2877,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -2897,6 +2917,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -2907,6 +2937,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -2917,6 +2957,16 @@
                                                                              UUT: SystemComm.c
                                                                              Subprogram: execSystemCommTx
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -2930,6 +2980,11 @@

                                                                              Result - PASS

                                                                              + + + + +
                                                                              Control Flows5/5PASS
                                                                              @@ -2949,8 +3004,8 @@ Unit Under TestSystemComm SubprogramexecSystemCommTx Test Case NameSCI1TransmitterBusy - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -2974,6 +3029,16 @@
                                                                              UUT: SystemComm.c
                                                                              Subprogram: execSystemCommTx
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3004,6 +3069,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3014,6 +3089,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3024,6 +3109,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3034,6 +3129,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3044,6 +3149,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3054,6 +3169,16 @@
                                                                              UUT: CommBuffers.h
                                                                              Subprogram: numberOfBytesInCommBuffer
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3084,6 +3209,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3094,6 +3229,16 @@
                                                                              UUT: SystemComm.c
                                                                              Subprogram: execSystemCommTx
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3107,6 +3252,11 @@

                                                                              Result - PASS

                                                                              + + + + +
                                                                              Control Flows9/9PASS
                                                                              @@ -3126,8 +3276,8 @@ Unit Under TestSystemComm SubprogramexecSystemCommTx Test Case NameexecSystemCommTx_NominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -3450,8 +3600,8 @@ Unit Under TestSystemComm SubprogramhandleCANMsgInterrupt Test Case NameInvalidCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -3495,6 +3645,16 @@ +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3525,6 +3685,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -3538,6 +3708,11 @@

                                                                              Result - PASS

                                                                              + + + + +
                                                                              Control Flows2/2PASS
                                                                              @@ -3557,8 +3732,8 @@ Unit Under TestSystemComm SubprogramhandleCANMsgInterrupt Test Case NameNoPacket - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -3705,8 +3880,8 @@ Unit Under TestSystemComm SubprogramhandleCANMsgInterrupt Test Case NameReceiveCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -3925,8 +4100,8 @@ Unit Under TestSystemComm SubprogramhandleCANMsgInterrupt Test Case NameTransmitCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -4145,8 +4320,8 @@ Unit Under TestSystemComm SubprogramhandleCANMsgInterrupt Test Case NamehandleCANMsgInterrupt_NoMoreMessagesToXmit - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -4497,8 +4672,8 @@ Unit Under TestSystemComm SubprogramhandleUARTMsgRecvPacketInterrupt Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -4681,8 +4856,8 @@ Unit Under TestSystemComm SubprogramhandleUARTMsgXmitPacketInterrupt Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -4993,8 +5168,8 @@ Unit Under TestSystemComm SubprogramhandleUARTMsgXmitPacketInterrupt Test Case NamehandleUARTMsgXmitPacketInterrupt_NoMoreMessages - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:23 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -5145,8 +5320,8 @@ Unit Under TestSystemComm SubprograminitUARTAndDMA Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -5612,7 +5787,7 @@ DADD unsigned int - 1051195808 + 4003142048 @@ -5745,8 +5920,8 @@ Unit Under TestSystemComm SubprogramisCANBoxForXmit Test Case NameNotTransmitCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -5869,8 +6044,8 @@ Unit Under TestSystemComm SubprogramisCANBoxForXmit Test Case NameTransmitCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -5993,8 +6168,8 @@ Unit Under TestSystemComm SubprogramisCANBoxForRecv Test Case NameNotReceiveCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -6117,8 +6292,8 @@ Unit Under TestSystemComm SubprogramisCANBoxForRecv Test Case NameReceiveCANBox - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -6241,8 +6416,8 @@ Unit Under TestSystemComm SubprogramfindNextHighestPriorityCANPacketToTransmit Test Case NameBufferFound - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -6389,8 +6564,8 @@ Unit Under TestSystemComm SubprogramfindNextHighestPriorityCANPacketToTransmit Test Case NameNoBufferFound - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -6681,8 +6856,8 @@ Unit Under TestSystemComm SubprogramtransmitNextCANPacket Test Case NameNoPendingCANPackets - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -6933,8 +7108,8 @@ Unit Under TestSystemComm SubprogramtransmitNextCANPacket Test Case NamePendingCANPacketFound - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -7185,8 +7360,8 @@ Unit Under TestSystemComm SubprogramtransmitNextCANPacket Test Case NamePendingCANPacketIsPartial - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:26 PM @@ -7407,8 +7582,8 @@ Unit Under TestSystemComm SubprogramtransmitNextUARTPacket Test Case NameGetPacketFail - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -7557,8 +7732,8 @@ Unit Under TestSystemComm SubprogramtransmitNextUARTPacket Test Case NameNoPacketFound - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -7665,8 +7840,8 @@ Unit Under TestSystemComm SubprogramtransmitNextUARTPacket Test Case NamePacketFound - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -7885,8 +8060,8 @@ Unit Under TestSystemComm SubprogramprocessIncomingData Test Case NameMoreDataInBufferThanMaxMsgSize - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -7970,7 +8145,7 @@ [0] string - 0xE2 + 0xF0 @@ -8715,8 +8890,8 @@ Unit Under TestSystemComm SubprogramprocessIncomingData Test Case NameMsgFoundButIncompleteMsgRetrieved - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -8800,7 +8975,7 @@ [0] string - 0xE1 + 0x5A @@ -9489,8 +9664,8 @@ Unit Under TestSystemComm SubprogramprocessIncomingData Test Case NameNoMsgFound - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -9574,7 +9749,7 @@ [0] string - 0xA + 0x77 @@ -10173,8 +10348,8 @@ Unit Under TestSystemComm SubprogramconsumeBufferPaddingBeforeSync Test Case NameBufferEmpty - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -10321,8 +10496,8 @@ Unit Under TestSystemComm SubprogramconsumeBufferPaddingBeforeSync Test Case NameRemoveSomePadding - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -10438,7 +10613,7 @@ [0] string - 0xA2 + 0xF1 @@ -10655,8 +10830,8 @@ Unit Under TestSystemComm SubprogramparseMessageFromBuffer Test Case NameFullMessageFound - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -10887,8 +11062,8 @@ Unit Under TestSystemComm SubprogramparseMessageFromBuffer Test Case NameNoMessageCouldBeParsed - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11095,8 +11270,8 @@ Unit Under TestSystemComm SubprogramparseMessageFromBuffer Test Case NameNoSyncFound - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11279,8 +11454,8 @@ Unit Under TestSystemComm SubprogramparseMessageFromBuffer Test Case NameNotEnoughDataForMinMessage - Date of Creation06 DEC 2019 6:14:21 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11463,8 +11638,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessages Test Case NameNoMessagesReceived - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11571,8 +11746,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessages Test Case NameOneMessageReceived - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11797,8 +11972,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name0001_OffButtonPress - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -11993,8 +12168,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name0006_DGCheckIn - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -12189,8 +12364,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name0007_UICheckIn - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -12385,8 +12560,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8000_TestLogin - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -12617,8 +12792,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8001_HDMessage - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:24 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -12861,8 +13036,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8002_OffButtonOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -13105,8 +13280,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8003_StopButtonOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -13349,8 +13524,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8004_AlarmLampPatternOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -13593,8 +13768,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8005_WatchdogTaskCheckInOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -13837,8 +14012,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8006_AlarmStateOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -14081,8 +14256,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8007_AlarmTimeOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -14325,8 +14500,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8008_BloodFlowSetPtOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -14569,8 +14744,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name8009_BloodFlowMeasuredOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -14813,8 +14988,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name800A_BloodPumpMCMeasuredSpeedOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -15057,8 +15232,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name800B_BloodPumpMCMeasuredCurrentOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -15301,8 +15476,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name800C_BloodFlowDataPublishIntervalOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -15545,8 +15720,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case Name800D_AlarmStatusPublishIntervalOverride - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -15789,8 +15964,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NameInvalidMessageID - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -15957,8 +16132,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NameInvalidTestMessageID - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -16125,8 +16300,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NameInvalidTestMessageIDInRange - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM @@ -16333,8 +16508,8 @@ Unit Under TestSystemComm SubprogramprocessReceivedMessage Test Case NameTestWithoutLogin - Date of Creation06 DEC 2019 6:14:22 PM - Date of Execution06 DEC 2019 6:14:24 PM + Date of Creation10 DEC 2019 6:07:25 PM + Date of Execution10 DEC 2019 6:07:27 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -267,8 +267,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameTIMERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:54 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:10:00 PM
                                                                              @@ -284,8 +284,8 @@ Unit Under TestTimers SubprograminitTimers Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -388,8 +388,8 @@ Unit Under TestTimers SubprogramincMSTimerCount Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -492,8 +492,8 @@ Unit Under TestTimers SubprogramgetMSTimerCount Test Case NameNominalPath - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -636,8 +636,8 @@ Unit Under TestTimers SubprogramdidTimeout Test Case NameNoTimeoutNoWrap - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -804,8 +804,8 @@ Unit Under TestTimers SubprogramdidTimeout Test Case NameNoTimeoutWrap - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -972,8 +972,8 @@ Unit Under TestTimers SubprogramdidTimeout Test Case NameTimeoutNoWrap - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -1140,8 +1140,8 @@ Unit Under TestTimers SubprogramdidTimeout Test Case NameTimeoutWrap - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -1308,8 +1308,8 @@ Unit Under TestTimers SubprogramcalcTimeSince Test Case NamecalcTimeSince_NominalPath - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM @@ -1464,8 +1464,8 @@ Unit Under TestTimers SubprogramcalcTimeSince Test Case NamecalcTimeSince_Wrap - Date of Creation06 DEC 2019 6:14:49 PM - Date of Execution06 DEC 2019 6:14:51 PM + Date of Creation10 DEC 2019 6:07:48 PM + Date of Execution10 DEC 2019 6:07:50 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -219,8 +219,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameUTILITIES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:55 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:10:02 PM
                                                                              @@ -236,8 +236,8 @@ Unit Under TestUtilities Subprogramcrc16 Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:01 PM - Date of Execution06 DEC 2019 6:15:03 PM + Date of Creation10 DEC 2019 6:07:59 PM + Date of Execution10 DEC 2019 6:08:01 PM @@ -480,8 +480,8 @@ Unit Under TestUtilities Subprogramcrc16 Test Case NameZeroLength - Date of Creation06 DEC 2019 6:15:01 PM - Date of Execution06 DEC 2019 6:15:03 PM + Date of Creation10 DEC 2019 6:07:59 PM + Date of Execution10 DEC 2019 6:08:01 PM @@ -664,8 +664,8 @@ Unit Under TestUtilities Subprogramcrc8 Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:01 PM - Date of Execution06 DEC 2019 6:15:03 PM + Date of Creation10 DEC 2019 6:07:59 PM + Date of Execution10 DEC 2019 6:08:01 PM Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -395,8 +395,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameWATCHDOGMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:57 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:10:03 PM
                                                                              @@ -412,8 +412,8 @@ Unit Under TestWatchdogMgmt SubprograminitWatchdogMgmt Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:13 PM @@ -654,8 +654,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogMgmt Test Case NameAllTasksCheckedInAndMinTimeReached - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:13 PM @@ -908,8 +908,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogMgmt Test Case NameAllTasksCheckedInAndNotTime - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1142,8 +1142,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogMgmt Test Case NameOneTaskNotCheckedIn - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1167,6 +1167,16 @@
                                                                              UUT: WatchdogMgmt.c
                                                                              Subprogram: execWatchdogMgmt
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1177,6 +1187,16 @@
                                                                              UUT: CPLD.h
                                                                              Subprogram: getCPLDWatchdogExpired
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1291,6 +1311,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1304,6 +1334,11 @@

                                                                              Result - PASS

                                                                              + + + + +
                                                                              Control Flows3/3PASS
                                                                              @@ -1323,8 +1358,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogMgmt Test Case NameWDExpired - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1348,6 +1383,16 @@
                                                                              UUT: WatchdogMgmt.c
                                                                              Subprogram: execWatchdogMgmt
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1378,6 +1423,16 @@
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1388,6 +1443,16 @@
                                                                              UUT: WatchdogMgmt.c
                                                                              Subprogram: execWatchdogMgmt
                                                                              +
                                                                              + + + + + + + +
                                                                              Control Flows
                                                                              <match>
                                                                              +
                                                                              @@ -1401,6 +1466,11 @@

                                                                              Result - PASS

                                                                              + + + + +
                                                                              Control Flows3/3PASS
                                                                              @@ -1420,8 +1490,8 @@ Unit Under TestWatchdogMgmt SubprogramcheckInWithWatchdogMgmt Test Case NameInvalidTask - Date of Creation06 DEC 2019 6:15:12 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1612,8 +1682,8 @@ Unit Under TestWatchdogMgmt SubprogramcheckInWithWatchdogMgmt Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1768,8 +1838,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogTest Test Case NameCompleted - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -1912,8 +1982,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogTest Test Case NameInvalidState - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -2066,8 +2136,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogTest Test Case NameStartInProgress - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -2330,8 +2400,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogTest Test Case NameTestFailure - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -2634,8 +2704,8 @@ Unit Under TestWatchdogMgmt SubprogramexecWatchdogTest Test Case NameTestPasses - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -2928,8 +2998,8 @@ Unit Under TestWatchdogMgmt SubprogramresetWDTaskCheckIns Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -3080,8 +3150,8 @@ Unit Under TestWatchdogMgmt SubprogramhaveAllTasksCheckedIn Test Case NameAllTasksCheckedIn - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -3296,8 +3366,8 @@ Unit Under TestWatchdogMgmt SubprogramhaveAllTasksCheckedIn Test Case NameOneTaskNotCheckedIn - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -3512,8 +3582,8 @@ Unit Under TestWatchdogMgmt SubprogramhasTaskGeneralCheckedIn Test Case NameInvalidTask - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -3646,8 +3716,8 @@ Unit Under TestWatchdogMgmt SubprogramhasTaskGeneralCheckedIn Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -3820,8 +3890,8 @@ Unit Under TestWatchdogMgmt SubprogramhasTaskGeneralCheckedIn Test Case NameOverridePath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4000,8 +4070,8 @@ Unit Under TestWatchdogMgmt SubprogrampetWatchdog Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4144,8 +4214,8 @@ Unit Under TestWatchdogMgmt SubprogramtestSetWatchdogTaskCheckInOverride Test Case NameInvalidTask - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4280,8 +4350,8 @@ Unit Under TestWatchdogMgmt SubprogramtestSetWatchdogTaskCheckInOverride Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4508,8 +4578,8 @@ Unit Under TestWatchdogMgmt SubprogramtestSetWatchdogTaskCheckInOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4736,8 +4806,8 @@ Unit Under TestWatchdogMgmt SubprogramtestResetWatchdogTaskCheckInOverride Test Case NameInvalidTask - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -4860,8 +4930,8 @@ Unit Under TestWatchdogMgmt SubprogramtestResetWatchdogTaskCheckInOverride Test Case NameNominalPath - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM @@ -5076,8 +5146,8 @@ Unit Under TestWatchdogMgmt SubprogramtestResetWatchdogTaskCheckInOverride Test Case NameTestingInactive - Date of Creation06 DEC 2019 6:15:13 PM - Date of Execution06 DEC 2019 6:15:15 PM + Date of Creation10 DEC 2019 6:08:11 PM + Date of Execution10 DEC 2019 6:08:14 PM Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameALARMLAMP
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:22 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:20 PM
                                                                              @@ -248,31 +248,31 @@ TOTALS     <<INIT>>     TOTALS     - AlarmLampinitAlarmLampNominalPath06 DEC 2019 6:06:40 PMPASS 5 / 5 -  execAlarmLampNoPatternChangeManual06 DEC 2019 6:06:40 PMPASS 4 / 4 -   NoPatternChangeStep0To106 DEC 2019 6:06:40 PMPASS 7 / 7 -   NoPatternChangeStep1To006 DEC 2019 6:06:40 PMPASS 7 / 7 -   NominalPatternChange06 DEC 2019 6:06:40 PMPASS 4 / 4 -  requestAlarmLampPatternInvalidLampPatternGiven06 DEC 2019 6:06:40 PMPASS 6 / 6 -   NominalPath06 DEC 2019 6:06:40 PMPASS 1 / 1 -  getCurrentAlarmLampPatternNominalPath06 DEC 2019 6:06:40 PMPASS 2 / 2 -   Override06 DEC 2019 6:06:40 PMPASS 2 / 2 -  execAlarmLampTestCompleteToStart06 DEC 2019 6:06:40 PMPASS 2 / 2 -   GreenOn06 DEC 2019 6:06:40 PMPASS 4 / 4 -   GreenToOff06 DEC 2019 6:06:40 PMPASS 5 / 5 -   InvalidState06 DEC 2019 6:06:40 PMPASS 6 / 6 -   RedOn06 DEC 2019 6:06:40 PMPASS 4 / 4 -   RedToYellow06 DEC 2019 6:06:40 PMPASS 6 / 6 -   StartTest06 DEC 2019 6:06:40 PMPASS 4 / 4 -   YellowOn06 DEC 2019 6:06:40 PMPASS 4 / 4 -   YellowToGreen06 DEC 2019 6:06:40 PMPASS 6 / 6 -  setAlarmLampToPatternStepAlarmHigh_Red06 DEC 2019 6:06:40 PMPASS 2 / 2 -   AlarmMedium_Yellow06 DEC 2019 6:06:40 PMPASS 3 / 3 -   OK_Green06 DEC 2019 6:06:40 PMPASS 2 / 2 -  testSetCurrentLampPatternOverrideTestingActive06 DEC 2019 6:06:40 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:06:40 PMPASS 5 / 5 -  testResetCurrentLampPatternOverrideTestingActive06 DEC 2019 6:06:40 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:06:40 PMPASS 5 / 5 + AlarmLampinitAlarmLampNominalPath10 DEC 2019 5:58:35 PMPASS 5 / 5 +  execAlarmLampNoPatternChangeManual10 DEC 2019 5:58:35 PMPASS 4 / 4 +   NoPatternChangeStep0To110 DEC 2019 5:58:35 PMPASS 7 / 7 +   NoPatternChangeStep1To010 DEC 2019 5:58:35 PMPASS 7 / 7 +   NominalPatternChange10 DEC 2019 5:58:35 PMPASS 4 / 4 +  requestAlarmLampPatternInvalidLampPatternGiven10 DEC 2019 5:58:35 PMPASS 6 / 6 +   NominalPath10 DEC 2019 5:58:35 PMPASS 1 / 1 +  getCurrentAlarmLampPatternNominalPath10 DEC 2019 5:58:35 PMPASS 2 / 2 +   Override10 DEC 2019 5:58:35 PMPASS 2 / 2 +  execAlarmLampTestCompleteToStart10 DEC 2019 5:58:35 PMPASS 2 / 2 +   GreenOn10 DEC 2019 5:58:35 PMPASS 4 / 4 +   GreenToOff10 DEC 2019 5:58:35 PMPASS 5 / 5 +   InvalidState10 DEC 2019 5:58:35 PMPASS 6 / 6 +   RedOn10 DEC 2019 5:58:35 PMPASS 4 / 4 +   RedToYellow10 DEC 2019 5:58:35 PMPASS 6 / 6 +   StartTest10 DEC 2019 5:58:35 PMPASS 4 / 4 +   YellowOn10 DEC 2019 5:58:35 PMPASS 4 / 4 +   YellowToGreen10 DEC 2019 5:58:35 PMPASS 6 / 6 +  setAlarmLampToPatternStepAlarmHigh_Red10 DEC 2019 5:58:35 PMPASS 2 / 2 +   AlarmMedium_Yellow10 DEC 2019 5:58:35 PMPASS 3 / 3 +   OK_Green10 DEC 2019 5:58:35 PMPASS 2 / 2 +  testSetCurrentLampPatternOverrideTestingActive10 DEC 2019 5:58:35 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:58:35 PMPASS 5 / 5 +  testResetCurrentLampPatternOverrideTestingActive10 DEC 2019 5:58:35 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:58:35 PMPASS 5 / 5 TOTALS825 PASS 25 / 25 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameALARMMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:23 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:22 PM
                                                                              @@ -248,66 +248,66 @@ TOTALS     <<INIT>>     TOTALS     - AlarmMgmtinitAlarmMgmtinitAlarmMgmt_NominalPath06 DEC 2019 6:06:54 PMPASS 26 / 26 -  execAlarmMgmtexecAlarmMgmt_NominalPath06 DEC 2019 6:06:54 PMPASS 4 / 4 -   execAlarmMgmt_TimeToPublishStatus06 DEC 2019 6:06:54 PMPASS 11 / 11 -  activateAlarmactivateAlarm_AlreadyActive06 DEC 2019 6:06:54 PMPASS 2 / 2 -   activateAlarm_Fault06 DEC 2019 6:06:54 PMPASS 3 / 3 -   activateAlarm_InvalidAlarm06 DEC 2019 6:06:54 PMPASS 2 / 2 -   activateAlarm_NoAlarm06 DEC 2019 6:06:54 PMPASS 2 / 2 -   activateAlarm_NotAFault06 DEC 2019 6:06:54 PMPASS 2 / 2 -  activateAlarmNoDataactivateAlarmNoData_AlreadyActive06 DEC 2019 6:06:54 PMPASS 1 / 1 -   activateAlarmNoData_NominalPath06 DEC 2019 6:06:54 PMPASS 4 / 4 -  activateAlarm1DataactivateAlarm1Data_AlreadyActive06 DEC 2019 6:06:55 PMPASS 1 / 1 -   activateAlarm1Data_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -  activateAlarm2DataactivateAlarm2Data_AlreadyActive06 DEC 2019 6:06:55 PMPASS 1 / 1 -   activateAlarm2Data_NominalPath06 DEC 2019 6:06:55 PMPASS 6 / 6 -  clearAlarmclearAlarm_ClearNotAllowed06 DEC 2019 6:06:55 PMPASS 1 / 1 -   clearAlarm_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 1 / 1 -   clearAlarm_NoAlarm06 DEC 2019 6:06:55 PMPASS 1 / 1 -   clearAlarm_NominalPath06 DEC 2019 6:06:55 PMPASS 4 / 4 -   clearAlarm_NotActive06 DEC 2019 6:06:55 PMPASS 1 / 1 -   clearAlarm_NotInFIFO06 DEC 2019 6:06:55 PMPASS 5 / 5 -  isAlarmActiveisAlarmActive_NominalPath06 DEC 2019 6:06:55 PMPASS 1 / 1 -  getAlarmActivegetAlarmActive_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 2 / 2 -   getAlarmActive_NominalPath06 DEC 2019 6:06:55 PMPASS 1 / 1 -   getAlarmActive_Override06 DEC 2019 6:06:55 PMPASS 1 / 1 -  getAlarmStartTimegetAlarmStartTime_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 1 / 1 -   getAlarmStartTime_NominalPath06 DEC 2019 6:06:55 PMPASS 1 / 1 -   getAlarmStartTime_Override06 DEC 2019 6:06:55 PMPASS 1 / 1 -  updateAlarmsStateupdateAlarmsState_NoAlarmsActive06 DEC 2019 6:06:55 PMPASS 6 / 6 -   updateAlarmsState_NominalPath06 DEC 2019 6:06:55 PMPASS 6 / 6 -  setAlarmLampAndAudiosetAlarmLampAndAudio_High06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_HighFault06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_InvalidAlarmState06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_Low06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_Manual06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_Medium06 DEC 2019 6:06:55 PMPASS 1 / 1 -   setAlarmLampAndAudio_NoAlarms06 DEC 2019 6:06:55 PMPASS 1 / 1 + AlarmMgmtinitAlarmMgmtinitAlarmMgmt_NominalPath10 DEC 2019 5:58:49 PMPASS 26 / 26 +  execAlarmMgmtexecAlarmMgmt_NominalPath10 DEC 2019 5:58:49 PMPASS 4 / 4 +   execAlarmMgmt_TimeToPublishStatus10 DEC 2019 5:58:49 PMPASS 11 / 11 +  activateAlarmactivateAlarm_AlreadyActive10 DEC 2019 5:58:49 PMPASS 2 / 2 +   activateAlarm_Fault10 DEC 2019 5:58:49 PMPASS 3 / 3 +   activateAlarm_InvalidAlarm10 DEC 2019 5:58:49 PMPASS 2 / 2 +   activateAlarm_NoAlarm10 DEC 2019 5:58:49 PMPASS 2 / 2 +   activateAlarm_NotAFault10 DEC 2019 5:58:49 PMPASS 2 / 2 +  activateAlarmNoDataactivateAlarmNoData_AlreadyActive10 DEC 2019 5:58:49 PMPASS 1 / 1 +   activateAlarmNoData_NominalPath10 DEC 2019 5:58:49 PMPASS 4 / 4 +  activateAlarm1DataactivateAlarm1Data_AlreadyActive10 DEC 2019 5:58:49 PMPASS 1 / 1 +   activateAlarm1Data_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +  activateAlarm2DataactivateAlarm2Data_AlreadyActive10 DEC 2019 5:58:50 PMPASS 1 / 1 +   activateAlarm2Data_NominalPath10 DEC 2019 5:58:50 PMPASS 6 / 6 +  clearAlarmclearAlarm_ClearNotAllowed10 DEC 2019 5:58:50 PMPASS 1 / 1 +   clearAlarm_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 1 / 1 +   clearAlarm_NoAlarm10 DEC 2019 5:58:50 PMPASS 1 / 1 +   clearAlarm_NominalPath10 DEC 2019 5:58:50 PMPASS 4 / 4 +   clearAlarm_NotActive10 DEC 2019 5:58:50 PMPASS 1 / 1 +   clearAlarm_NotInFIFO10 DEC 2019 5:58:50 PMPASS 5 / 5 +  isAlarmActiveisAlarmActive_NominalPath10 DEC 2019 5:58:50 PMPASS 1 / 1 +  getAlarmActivegetAlarmActive_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 2 / 2 +   getAlarmActive_NominalPath10 DEC 2019 5:58:50 PMPASS 1 / 1 +   getAlarmActive_Override10 DEC 2019 5:58:50 PMPASS 1 / 1 +  getAlarmStartTimegetAlarmStartTime_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 1 / 1 +   getAlarmStartTime_NominalPath10 DEC 2019 5:58:50 PMPASS 1 / 1 +   getAlarmStartTime_Override10 DEC 2019 5:58:50 PMPASS 1 / 1 +  updateAlarmsStateupdateAlarmsState_NoAlarmsActive10 DEC 2019 5:58:50 PMPASS 6 / 6 +   updateAlarmsState_NominalPath10 DEC 2019 5:58:50 PMPASS 6 / 6 +  setAlarmLampAndAudiosetAlarmLampAndAudio_High10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_HighFault10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_InvalidAlarmState10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_Low10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_Manual10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_Medium10 DEC 2019 5:58:50 PMPASS 1 / 1 +   setAlarmLampAndAudio_NoAlarms10 DEC 2019 5:58:50 PMPASS 1 / 1  updateAlarmsSilenceStatus     handleAlarmEscalations     updateAlarmsFlags    -  resetAlarmPriorityFIFOresetAlarmPriorityFIFO_InvalidPriority06 DEC 2019 6:06:55 PMPASS 5 / 5 -   resetAlarmPriorityFIFO_NominalPath06 DEC 2019 6:06:55 PMPASS 1 / 1 -  getPublishAlarmStatusIntervalgetPublishAlarmStatusInterval_NominalPath06 DEC 2019 6:06:55 PMPASS 1 / 1 -   getPublishAlarmStatusInterval_Override06 DEC 2019 6:06:55 PMPASS 1 / 1 -  testSetAlarmStatusPublishIntervalOverridetestSetAlarmStatusPublishIntervalOverride_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testSetAlarmStatusPublishIntervalOverride_NotLoggedIn06 DEC 2019 6:06:55 PMPASS 5 / 5 -  testResetAlarmStatusPublishIntervalOverridetestResetAlarmStatusPublishIntervalOverride_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testResetAlarmStatusPublishIntervalOverride_NotLoggedIn06 DEC 2019 6:06:55 PMPASS 5 / 5 -  testSetAlarmStateOverridetestSetAlarmStateOverride_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testSetAlarmStateOverride_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testSetAlarmStateOverride_NotLoggedIn06 DEC 2019 6:06:55 PMPASS 5 / 5 -  testResetAlarmStateOverridetestResetAlarmStateOverride_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testResetAlarmStateOverride_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testResetAlarmStateOverride_NotLoggedIn06 DEC 2019 6:06:55 PMPASS 5 / 5 -  testSetAlarmStartOverridetestSetAlarmStartOverride_InvalidAlarm06 DEC 2019 6:06:55 PMPASS 1 / 1 -   testSetAlarmStartOverride_NominalPath06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testSetAlarmStartOverride_NotLoggedIn06 DEC 2019 6:06:55 PMPASS 5 / 5 -   testSetAlarmStartOverride_ValueTooLarge06 DEC 2019 6:06:55 PMPASS 5 / 5 -  testResetAlarmStartOverridetestResetAlarmStartOverride_InvalidAlarm06 DEC 2019 6:06:56 PMPASS 5 / 5 -   testResetAlarmStartOverride_NominalPath06 DEC 2019 6:06:56 PMPASS 5 / 5 -   testResetAlarmStartOverride_NotLoggedIn06 DEC 2019 6:06:56 PMPASS 5 / 5 +  resetAlarmPriorityFIFOresetAlarmPriorityFIFO_InvalidPriority10 DEC 2019 5:58:50 PMPASS 5 / 5 +   resetAlarmPriorityFIFO_NominalPath10 DEC 2019 5:58:50 PMPASS 1 / 1 +  getPublishAlarmStatusIntervalgetPublishAlarmStatusInterval_NominalPath10 DEC 2019 5:58:50 PMPASS 1 / 1 +   getPublishAlarmStatusInterval_Override10 DEC 2019 5:58:50 PMPASS 1 / 1 +  testSetAlarmStatusPublishIntervalOverridetestSetAlarmStatusPublishIntervalOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testSetAlarmStatusPublishIntervalOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 +  testResetAlarmStatusPublishIntervalOverridetestResetAlarmStatusPublishIntervalOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testResetAlarmStatusPublishIntervalOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 +  testSetAlarmStateOverridetestSetAlarmStateOverride_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testSetAlarmStateOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testSetAlarmStateOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 +  testResetAlarmStateOverridetestResetAlarmStateOverride_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testResetAlarmStateOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testResetAlarmStateOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 +  testSetAlarmStartOverridetestSetAlarmStartOverride_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 1 / 1 +   testSetAlarmStartOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testSetAlarmStartOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testSetAlarmStartOverride_ValueTooLarge10 DEC 2019 5:58:50 PMPASS 5 / 5 +  testResetAlarmStartOverridetestResetAlarmStartOverride_InvalidAlarm10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testResetAlarmStartOverride_NominalPath10 DEC 2019 5:58:50 PMPASS 5 / 5 +   testResetAlarmStartOverride_NotLoggedIn10 DEC 2019 5:58:50 PMPASS 5 / 5 TOTALS2357 PASS 57 / 57 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameBLOODFLOW
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:25 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:24 PM
                                                                              @@ -206,11 +206,11 @@ - + - + @@ -219,17 +219,17 @@ - + - + - +
                                                                              Testcases83 / 83 PASS95 / 95 PASS
                                                                              Expecteds349 / 349 PASS393 / 393 PASS
                                                                              Control Flow
                                                                              Statement Coverage263 / 263 (100%)297 / 297 (100%)
                                                                              Branch Coverage240 / 240 (100%)270 / 270 (100%)
                                                                              Pairs Coverage51 / 51 (100%)57 / 57 (100%)
                                                                              @@ -252,90 +252,102 @@ TOTALS     <<INIT>>     TOTALS     - BloodFlowinitBloodFlowinitBloodFlow_NominalPath06 DEC 2019 6:07:11 PMPASS 18 / 18 -  setBloodPumpTargetFlowRatesetBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning06 DEC 2019 6:07:11 PMPASS 3 / 3 -   setBloodPumpTargetFlowRate_FlowTooHigh06 DEC 2019 6:07:11 PMPASS 6 / 6 -   setBloodPumpTargetFlowRate_OffToRateFwd06 DEC 2019 6:07:11 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_OffToRateRev06 DEC 2019 6:07:11 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateDecrease06 DEC 2019 6:07:11 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown06 DEC 2019 6:07:11 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp06 DEC 2019 6:07:11 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateIncrease06 DEC 2019 6:07:12 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown06 DEC 2019 6:07:12 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp06 DEC 2019 6:07:12 PMPASS 9 / 9 -   setBloodPumpTargetFlowRate_ZeroRate06 DEC 2019 6:07:12 PMPASS 9 / 9 -  execBloodFlowMonitorexecBloodFlowMonitor_InitMode_WrapFlowBuffer06 DEC 2019 6:07:12 PMPASS 10 / 10 -   execBloodFlowMonitor_NominalPath06 DEC 2019 6:07:12 PMPASS 10 / 10 -  execBloodFlowControllerexecBloodFlowController_ControlToTargetState06 DEC 2019 6:07:12 PMPASS 2 / 2 -   execBloodFlowController_InvalidState06 DEC 2019 6:07:12 PMPASS 4 / 4 -   execBloodFlowController_OffState06 DEC 2019 6:07:12 PMPASS 1 / 1 -   execBloodFlowController_RampDown06 DEC 2019 6:07:12 PMPASS 1 / 1 -   execBloodFlowController_RampUpState06 DEC 2019 6:07:12 PMPASS 1 / 1 -  handleBloodPumpOffStatehandleBloodPumpOffState_NewRateSet06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpOffState_NoChange06 DEC 2019 6:07:12 PMPASS 1 / 1 -  handleBloodPumpRampingUpStatehandleBloodPumpRampingUpState_RampComplete06 DEC 2019 6:07:12 PMPASS 1 / 1 -   handleBloodPumpRampingUpState_StillRamping06 DEC 2019 6:07:12 PMPASS 3 / 3 -   handleBloodPumpRampingUpState_StopRequested06 DEC 2019 6:07:12 PMPASS 3 / 3 -  handleBloodPumpRampingDownStatehandleBloodPumpRampingDownState_06 DEC 2019 6:07:12 PMPASS 1 / 1 -   handleBloodPumpRampingDownState_RampComplete06 DEC 2019 6:07:12 PMPASS 2 / 2 -   handleBloodPumpRampingDownState_StillRamping06 DEC 2019 6:07:12 PMPASS 3 / 3 -  handleBloodPumpControlToTargetStatehandleBloodPumpControlToTargetState_NominalPath06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpControlToTargetState_NotControlInterval06 DEC 2019 6:07:12 PMPASS 2 / 2 -   handleBloodPumpControlToTargetState_PWM_Max06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpControlToTargetState_PWM_Min06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpControlToTargetState_Reverse06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpControlToTargetState_TermsMaxRange06 DEC 2019 6:07:12 PMPASS 6 / 6 -   handleBloodPumpControlToTargetState_TermsMaxRange206 DEC 2019 6:07:12 PMPASS 6 / 6 -  stopBloodPumpstopBloodPump_NominalPath06 DEC 2019 6:07:12 PMPASS 4 / 4 -  releaseBloodPumpStopreleaseBloodPumpStop_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -  setBloodPumpDirectionsetBloodPumpDirection_FWD06 DEC 2019 6:07:12 PMPASS 2 / 2 -   setBloodPumpDirection_InvalidDirection06 DEC 2019 6:07:12 PMPASS 6 / 6 -   setBloodPumpDirection_REV06 DEC 2019 6:07:12 PMPASS 2 / 2 -  getPublishBloodFlowDataIntervalgetPublishBloodFlowDataInterval_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -   getPublishBloodFlowDataInterval_Override06 DEC 2019 6:07:12 PMPASS 1 / 1 -  getTargetBloodFlowRategetTargetBloodFlowRate_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -   getTargetBloodFlowRate_Override06 DEC 2019 6:07:12 PMPASS 1 / 1 -  getMeasuredBloodFlowRategetMeasuredBloodFlowRate_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -   getMeasuredBloodFlowRate_Override06 DEC 2019 6:07:12 PMPASS 1 / 1 -  getMeasuredBloodPumpSpeedgetMeasuredBloodPumpSpeed_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -   getMeasuredBloodPumpSpeed_Override06 DEC 2019 6:07:12 PMPASS 1 / 1 -  getMeasuredBloodPumpCurrentgetMeasuredBloodPumpCurrent_NominalPath06 DEC 2019 6:07:12 PMPASS 1 / 1 -   getMeasuredBloodPumpCurrent_Override06 DEC 2019 6:07:12 PMPASS 1 / 1 -  publishBloodFlowDatapublishBloodFlowData_NominalPath06 DEC 2019 6:07:12 PMPASS 5 / 5 -   publishBloodFlowData_NotIntervalTime06 DEC 2019 6:07:12 PMPASS 1 / 1 -  checkBloodPumpDirectioncheckBloodPumpDirection_Fail06 DEC 2019 6:07:12 PMPASS 5 / 5 -   checkBloodPumpDirection_NominalPath06 DEC 2019 6:07:12 PMPASS -   checkBloodPumpDirection_NotControlling06 DEC 2019 6:07:12 PMPASS -  checkBloodPumpMCCurrentcheckBloodPumpMCCurrent_OFFOk06 DEC 2019 6:07:12 PMPASS 1 / 1 -   checkBloodPumpMCCurrent_OFFTooHighAlarm06 DEC 2019 6:07:13 PMPASS 4 / 4 -   checkBloodPumpMCCurrent_OFFTooHighShortTime06 DEC 2019 6:07:13 PMPASS 1 / 1 -   checkBloodPumpMCCurrent_RunningOk06 DEC 2019 6:07:13 PMPASS 1 / 1 -   checkBloodPumpMCCurrent_RunningTooHighAlarm06 DEC 2019 6:07:13 PMPASS 4 / 4 -   checkBloodPumpMCCurrent_RunningTooHighShortTime06 DEC 2019 6:07:13 PMPASS 1 / 1 -   checkBloodPumpMCCurrent_RunningTooLowAlarm06 DEC 2019 6:07:13 PMPASS 4 / 4 -   checkBloodPumpMCCurrent_RunningTooLowShortTime06 DEC 2019 6:07:13 PMPASS 1 / 1 -  execBloodFlowTestexecBloodFlowTest_InvalidState06 DEC 2019 6:07:13 PMPASS 1 / 1 -  testSetBloodFlowDataPublishIntervalOverridetestSetBloodFlowDataPublishIntervalOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testResetBloodFlowDataPublishIntervalOverridetestResetBloodFlowDataPublishIntervalOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testSetTargetBloodFlowRateOverridetestSetTargetBloodFlowRateOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testSetTargetBloodFlowRateOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testResetTargetBloodFlowRateOverridetestResetTargetBloodFlowRateOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testResetTargetBloodFlowRateOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testSetMeasuredBloodFlowRateOverridetestSetMeasuredBloodFlowRateOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testSetMeasuredBloodFlowRateOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testResetMeasuredBloodFlowRateOverridetestResetMeasuredBloodFlowRateOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testResetMeasuredBloodFlowRateOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testSetMeasuredBloodPumpSpeedOverridetestSetMeasuredBloodPumpSpeedOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testResetMeasuredBloodPumpSpeedOverridetestResetMeasuredBloodPumpSpeedOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testSetMeasuredBloodPumpCurrentOverridetestSetMeasuredBloodPumpCurrentOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 -  testResetMeasuredBloodPumpCurrentOverridetestResetMeasuredBloodPumpCurrentOverride_NominalPath06 DEC 2019 6:07:13 PMPASS 5 / 5 -   testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn06 DEC 2019 6:07:13 PMPASS 5 / 5 - TOTALS3083 PASS 83 / 83 + BloodFlowinitBloodFlowinitBloodFlow_NominalPath10 DEC 2019 5:59:07 PMPASS 18 / 18 +  setBloodPumpTargetFlowRatesetBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning10 DEC 2019 5:59:07 PMPASS 3 / 3 +   setBloodPumpTargetFlowRate_FlowTooHigh10 DEC 2019 5:59:07 PMPASS 6 / 6 +   setBloodPumpTargetFlowRate_OffToRateFwd10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_OffToRateRev10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateDecrease10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateIncrease10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp10 DEC 2019 5:59:07 PMPASS 9 / 9 +   setBloodPumpTargetFlowRate_ZeroRate10 DEC 2019 5:59:07 PMPASS 9 / 9 +  execBloodFlowMonitorexecBloodFlowMonitor_InitMode_WrapFlowBuffer10 DEC 2019 5:59:07 PMPASS 10 / 10 +   execBloodFlowMonitor_NominalPath10 DEC 2019 5:59:07 PMPASS 10 / 10 +  execBloodFlowControllerexecBloodFlowController_ControlToTargetState10 DEC 2019 5:59:07 PMPASS 2 / 2 +   execBloodFlowController_InvalidState10 DEC 2019 5:59:07 PMPASS 4 / 4 +   execBloodFlowController_OffState10 DEC 2019 5:59:07 PMPASS 1 / 1 +   execBloodFlowController_RampDown10 DEC 2019 5:59:07 PMPASS 1 / 1 +   execBloodFlowController_RampUpState10 DEC 2019 5:59:07 PMPASS 1 / 1 +  handleBloodPumpOffStatehandleBloodPumpOffState_NewRateSet10 DEC 2019 5:59:07 PMPASS 6 / 6 +   handleBloodPumpOffState_NoChange10 DEC 2019 5:59:07 PMPASS 1 / 1 +  handleBloodPumpRampingUpStatehandleBloodPumpRampingUpState_RampComplete10 DEC 2019 5:59:07 PMPASS 1 / 1 +   handleBloodPumpRampingUpState_StillRamping10 DEC 2019 5:59:07 PMPASS 3 / 3 +   handleBloodPumpRampingUpState_StopRequested10 DEC 2019 5:59:07 PMPASS 3 / 3 +  handleBloodPumpRampingDownStatehandleBloodPumpRampingDownState_10 DEC 2019 5:59:07 PMPASS 1 / 1 +   handleBloodPumpRampingDownState_RampComplete10 DEC 2019 5:59:07 PMPASS 2 / 2 +   handleBloodPumpRampingDownState_StillRamping10 DEC 2019 5:59:07 PMPASS 3 / 3 +  handleBloodPumpControlToTargetStatehandleBloodPumpControlToTargetState_NominalPath10 DEC 2019 5:59:07 PMPASS 6 / 6 +   handleBloodPumpControlToTargetState_NotControlInterval10 DEC 2019 5:59:08 PMPASS 2 / 2 +   handleBloodPumpControlToTargetState_PWM_Max10 DEC 2019 5:59:08 PMPASS 6 / 6 +   handleBloodPumpControlToTargetState_PWM_Min10 DEC 2019 5:59:08 PMPASS 6 / 6 +   handleBloodPumpControlToTargetState_Reverse10 DEC 2019 5:59:08 PMPASS 6 / 6 +   handleBloodPumpControlToTargetState_TermsMaxRange10 DEC 2019 5:59:08 PMPASS 6 / 6 +   handleBloodPumpControlToTargetState_TermsMaxRange210 DEC 2019 5:59:08 PMPASS 6 / 6 +  stopBloodPumpstopBloodPump_NominalPath10 DEC 2019 5:59:08 PMPASS 4 / 4 +  releaseBloodPumpStopreleaseBloodPumpStop_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +  setBloodPumpDirectionsetBloodPumpDirection_FWD10 DEC 2019 5:59:08 PMPASS 2 / 2 +   setBloodPumpDirection_InvalidDirection10 DEC 2019 5:59:08 PMPASS 6 / 6 +   setBloodPumpDirection_REV10 DEC 2019 5:59:08 PMPASS 2 / 2 +  getPublishBloodFlowDataIntervalgetPublishBloodFlowDataInterval_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getPublishBloodFlowDataInterval_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getTargetBloodFlowRategetTargetBloodFlowRate_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getTargetBloodFlowRate_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getMeasuredBloodFlowRategetMeasuredBloodFlowRate_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getMeasuredBloodFlowRate_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getMeasuredBloodPumpRotorSpeedgetMeasuredBloodPumpRotorSpeed_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getMeasuredBloodPumpRotorSpeed_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getMeasuredBloodPumpSpeedgetMeasuredBloodPumpSpeed_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getMeasuredBloodPumpSpeed_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getMeasuredBloodPumpMCSpeedgetMeasuredBloodPumpMCSpeed_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getMeasuredBloodPumpMCSpeed_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  getMeasuredBloodPumpMCCurrentgetMeasuredBloodPumpCurrent_NominalPath10 DEC 2019 5:59:08 PMPASS 1 / 1 +   getMeasuredBloodPumpCurrent_Override10 DEC 2019 5:59:08 PMPASS 1 / 1 +  publishBloodFlowDatapublishBloodFlowData_NominalPath10 DEC 2019 5:59:08 PMPASS 5 / 5 +   publishBloodFlowData_NotIntervalTime10 DEC 2019 5:59:08 PMPASS 1 / 1 +  checkBloodPumpDirectioncheckBloodPumpDirection_Fail10 DEC 2019 5:59:08 PMPASS 5 / 5 +   checkBloodPumpDirection_NominalPath10 DEC 2019 5:59:08 PMPASS +   checkBloodPumpDirection_NotControlling10 DEC 2019 5:59:08 PMPASS +  checkBloodPumpMCCurrentcheckBloodPumpMCCurrent_OFFOk10 DEC 2019 5:59:08 PMPASS 1 / 1 +   checkBloodPumpMCCurrent_OFFTooHighAlarm10 DEC 2019 5:59:08 PMPASS 4 / 4 +   checkBloodPumpMCCurrent_OFFTooHighShortTime10 DEC 2019 5:59:08 PMPASS 1 / 1 +   checkBloodPumpMCCurrent_RunningOk10 DEC 2019 5:59:08 PMPASS 1 / 1 +   checkBloodPumpMCCurrent_RunningTooHighAlarm10 DEC 2019 5:59:08 PMPASS 4 / 4 +   checkBloodPumpMCCurrent_RunningTooHighShortTime10 DEC 2019 5:59:08 PMPASS 1 / 1 +   checkBloodPumpMCCurrent_RunningTooLowAlarm10 DEC 2019 5:59:08 PMPASS 4 / 4 +   checkBloodPumpMCCurrent_RunningTooLowShortTime10 DEC 2019 5:59:08 PMPASS 1 / 1 +  execBloodFlowTestexecBloodFlowTest_InvalidState10 DEC 2019 5:59:08 PMPASS 1 / 1 +  testSetBloodFlowDataPublishIntervalOverridetestSetBloodFlowDataPublishIntervalOverride_NominalPath10 DEC 2019 5:59:08 PMPASS 5 / 5 +   testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn10 DEC 2019 5:59:08 PMPASS 5 / 5 +  testResetBloodFlowDataPublishIntervalOverridetestResetBloodFlowDataPublishIntervalOverride_NominalPath10 DEC 2019 5:59:08 PMPASS 5 / 5 +   testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn10 DEC 2019 5:59:08 PMPASS 5 / 5 +  testSetTargetBloodFlowRateOverridetestSetTargetBloodFlowRateOverride_NominalPath10 DEC 2019 5:59:08 PMPASS 5 / 5 +   testSetTargetBloodFlowRateOverride_NotLoggedIn10 DEC 2019 5:59:08 PMPASS 5 / 5 +  testResetTargetBloodFlowRateOverridetestResetTargetBloodFlowRateOverride_NominalPath10 DEC 2019 5:59:08 PMPASS 5 / 5 +   testResetTargetBloodFlowRateOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testSetMeasuredBloodFlowRateOverridetestSetMeasuredBloodFlowRateOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testSetMeasuredBloodFlowRateOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testResetMeasuredBloodFlowRateOverridetestResetMeasuredBloodFlowRateOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testResetMeasuredBloodFlowRateOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testSetMeasuredBloodPumpRotorSpeedOverridetestSetMeasuredBloodPumpRotorSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testResetMeasuredBloodPumpRotorSpeedOverridetestResetMeasuredBloodPumpRotorSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testSetMeasuredBloodPumpSpeedOverridetestSetMeasuredBloodPumpSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testResetMeasuredBloodPumpSpeedOverridetestResetMeasuredBloodPumpSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testSetMeasuredBloodPumpMCSpeedOverridetestSetMeasuredBloodPumpMCSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testResetMeasuredBloodPumpMCSpeedOverridetestResetMeasuredBloodPumpMCSpeedOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testSetMeasuredBloodPumpMCCurrentOverridetestSetMeasuredBloodPumpCurrentOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 +  testResetMeasuredBloodPumpMCCurrentOverridetestResetMeasuredBloodPumpCurrentOverride_NominalPath10 DEC 2019 5:59:09 PMPASS 5 / 5 +   testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn10 DEC 2019 5:59:09 PMPASS 5 / 5 + TOTALS3695 PASS 95 / 95 @@ -398,15 +410,21 @@  getMeasuredBloodFlowRate24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) +  getMeasuredBloodPumpRotorSpeed24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) + +  getMeasuredBloodPumpSpeed24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) -  getMeasuredBloodPumpCurrent24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) +  getMeasuredBloodPumpMCSpeed24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) -  publishBloodFlowData27 / 7 (100%)5 / 5 (100%)1 / 1 (100%) +  getMeasuredBloodPumpMCCurrent24 / 4 (100%)5 / 5 (100%)1 / 1 (100%) +  publishBloodFlowData29 / 9 (100%)5 / 5 (100%)1 / 1 (100%) + +  checkBloodPumpDirection48 / 8 (100%)13 / 13 (100%)3 / 3 (100%) @@ -434,23 +452,35 @@  testResetMeasuredBloodFlowRateOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) +  testSetMeasuredBloodPumpRotorSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) + + +  testResetMeasuredBloodPumpRotorSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) + +  testSetMeasuredBloodPumpSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%)  testResetMeasuredBloodPumpSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) -  testSetMeasuredBloodPumpCurrentOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) +  testSetMeasuredBloodPumpMCSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) -  testResetMeasuredBloodPumpCurrentOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) +  testResetMeasuredBloodPumpMCSpeedOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) - TOTALS3087263 / 263 (100%)240 / 240 (100%)51 / 51 (100%) +  testSetMeasuredBloodPumpMCCurrentOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) - GRAND TOTALS3087263 / 263 (100%)240 / 240 (100%)51 / 51 (100%) +  testResetMeasuredBloodPumpMCCurrentOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) + + TOTALS3699297 / 297 (100%)270 / 270 (100%)57 / 57 (100%) + + + GRAND TOTALS3699297 / 297 (100%)270 / 270 (100%)57 / 57 (100%) + Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameBUTTONS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:26 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:25 PM
                                                                              @@ -206,26 +206,26 @@ - + - + - + - + - + - + - + - +
                                                                              Testcases47 / 47 PASS49 / 49 PASS
                                                                              Expecteds171 / 171 PASS176 / 176 PASS
                                                                              Statement Coverage124 / 124 (100%)132 / 139 (94%)
                                                                              Branch Coverage132 / 132 (100%)135 / 140 (96%)
                                                                              Pairs Coverage30 / 30 (100%)30 / 31 (96%)
                                                                              @@ -248,54 +248,56 @@ TOTALS     <<INIT>>     TOTALS     - ButtonsinitButtonsNominalPath06 DEC 2019 6:07:25 PMPASS 9 / 9 -  execButtonsButtonsPressed06 DEC 2019 6:07:25 PMPASS 8 / 8 -   NoButtonsPressed06 DEC 2019 6:07:25 PMPASS 8 / 8 -  isStopButtonPressedNominalPath06 DEC 2019 6:07:25 PMPASS 2 / 2 -  getOffButtonStateNominalPath06 DEC 2019 6:07:25 PMPASS 1 / 1 -   Override06 DEC 2019 6:07:25 PMPASS 1 / 1 -  getStopButtonStateNominalPath06 DEC 2019 6:07:25 PMPASS 1 / 1 -   Override06 DEC 2019 6:07:25 PMPASS 1 / 1 -  execStuckButtonTestCompleted06 DEC 2019 6:07:25 PMPASS 3 / 3 -   InProgressStuckButtonReleased06 DEC 2019 6:07:25 PMPASS 2 / 2 -   InProgressStuckButtonTimeout_OffPressed06 DEC 2019 6:07:25 PMPASS 7 / 7 -   InProgressStuckButtonTimeout_StopPressed06 DEC 2019 6:07:25 PMPASS 7 / 7 -   InvalidState06 DEC 2019 6:07:25 PMPASS 2 / 2 -   StartTestNoButtonsPressed06 DEC 2019 6:07:25 PMPASS 3 / 3 -   StartTestStuckButton06 DEC 2019 6:07:25 PMPASS 5 / 5 -  userConfirmOffButtonInvalidModeToTurnOff06 DEC 2019 6:07:25 PMPASS 2 / 2 -   OffButtonRejected06 DEC 2019 6:07:25 PMPASS 2 / 2 -   OffDuringFaultMode06 DEC 2019 6:07:25 PMPASS 2 / 2 -   OffDuringServiceMode06 DEC 2019 6:07:26 PMPASS 2 / 2 -   OffDuringStandbyMode06 DEC 2019 6:07:26 PMPASS 2 / 2 -   userConfirmOffButton_NoConfirmExpected06 DEC 2019 6:07:26 PMPASS 4 / 4 -  isCurrentOpModeOkToTurnOffFaultMode06 DEC 2019 6:07:26 PMPASS 1 / 1 -   InvalidMode06 DEC 2019 6:07:26 PMPASS 1 / 1 -   ServiceMode06 DEC 2019 6:07:26 PMPASS 1 / 1 -   StandbyMode06 DEC 2019 6:07:26 PMPASS 1 / 1 -  handleOffButtonProcessingNoChangeNoPending06 DEC 2019 6:07:26 PMPASS 3 / 3 -   PressedToReleasedOffPendingFirstPulse06 DEC 2019 6:07:26 PMPASS 5 / 5 -   PressedToReleasedOffPendingIntermediate06 DEC 2019 6:07:26 PMPASS 5 / 5 -   PressedToReleasedOffPendingLastPulse06 DEC 2019 6:07:26 PMPASS 5 / 5 -   ReleasedToPressedFaultMode06 DEC 2019 6:07:26 PMPASS 3 / 3 -   ReleasedToPressedInvalidMode06 DEC 2019 6:07:26 PMPASS 3 / 3 -   ReleasedToPressedServiceMode06 DEC 2019 6:07:26 PMPASS 3 / 3 -   ReleasedToPressedStandbyMode06 DEC 2019 6:07:26 PMPASS 3 / 3 -   handleOffButtonProcessing_OffRequestPending06 DEC 2019 6:07:26 PMPASS 2 / 2 -   handleOffButtonProcessing_OffRequestPendingExpired06 DEC 2019 6:07:26 PMPASS 3 / 3 -  handleStopButtonProcessingNoChange06 DEC 2019 6:07:26 PMPASS 3 / 3 -   PressTimedOut06 DEC 2019 6:07:26 PMPASS 6 / 6 -   PressedToReleased06 DEC 2019 6:07:26 PMPASS 3 / 3 -   ReleasedToPressed06 DEC 2019 6:07:26 PMPASS 6 / 6 -  testSetOffButtonStateOverrideTestingActive06 DEC 2019 6:07:26 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:07:26 PMPASS 5 / 5 -  testResetOffButtonStateOverrideTestingActive06 DEC 2019 6:07:26 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:07:26 PMPASS 5 / 5 -  testSetStopButtonStateOverrideTestingActive06 DEC 2019 6:07:26 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:07:26 PMPASS 5 / 5 -  testResetStopButtonStateOverrideTestingActive06 DEC 2019 6:07:26 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:07:26 PMPASS 5 / 5 - TOTALS1447 PASS 47 / 47 + ButtonsinitButtonsNominalPath10 DEC 2019 5:59:21 PMPASS 9 / 9 +  execButtonsButtonsPressed10 DEC 2019 5:59:21 PMPASS 8 / 8 +   NoButtonsPressed10 DEC 2019 5:59:21 PMPASS 8 / 8 +  isStopButtonPressedNominalPath10 DEC 2019 5:59:21 PMPASS 2 / 2 +  getOffButtonStateNominalPath10 DEC 2019 5:59:21 PMPASS 1 / 1 +   Override10 DEC 2019 5:59:22 PMPASS 1 / 1 +  getStopButtonStateNominalPath10 DEC 2019 5:59:22 PMPASS 1 / 1 +   Override10 DEC 2019 5:59:22 PMPASS 1 / 1 +  execStuckButtonTestCompleted10 DEC 2019 5:59:22 PMPASS 3 / 3 +   InProgressStuckButtonReleased10 DEC 2019 5:59:22 PMPASS 2 / 2 +   InProgressStuckButtonTimeout_OffPressed10 DEC 2019 5:59:22 PMPASS 7 / 7 +   InProgressStuckButtonTimeout_StopPressed10 DEC 2019 5:59:22 PMPASS 7 / 7 +   InvalidState10 DEC 2019 5:59:22 PMPASS 2 / 2 +   StartTestNoButtonsPressed10 DEC 2019 5:59:22 PMPASS 3 / 3 +   StartTestStuckButton10 DEC 2019 5:59:22 PMPASS 5 / 5 +  userConfirmOffButtonInvalidCmdFromUI10 DEC 2019 5:59:22 PMPASS 2 / 2 +   InvalidModeToTurnOff10 DEC 2019 5:59:22 PMPASS 2 / 2 +   OffButtonRejected10 DEC 2019 5:59:22 PMPASS 2 / 2 +   OffDuringFaultMode10 DEC 2019 5:59:22 PMPASS 2 / 2 +   OffDuringServiceMode10 DEC 2019 5:59:22 PMPASS 2 / 2 +   OffDuringStandbyMode10 DEC 2019 5:59:22 PMPASS 2 / 2 +   userConfirmOffButton_NoConfirmExpected10 DEC 2019 5:59:22 PMPASS 4 / 4 +   userConfirmOffButton_NoRejectExpected10 DEC 2019 5:59:22 PMPASS 4 / 4 +  isCurrentOpModeOkToTurnOffFaultMode10 DEC 2019 5:59:22 PMPASS 1 / 1 +   InvalidMode10 DEC 2019 5:59:22 PMPASS 1 / 1 +   ServiceMode10 DEC 2019 5:59:22 PMPASS 1 / 1 +   StandbyMode10 DEC 2019 5:59:22 PMPASS 1 / 1 +  handleOffButtonProcessingNoChangeNoPending10 DEC 2019 5:59:22 PMPASS 3 / 3 +   PressedToReleasedOffPendingFirstPulse10 DEC 2019 5:59:22 PMPASS 5 / 5 +   PressedToReleasedOffPendingIntermediate10 DEC 2019 5:59:22 PMPASS 5 / 5 +   PressedToReleasedOffPendingLastPulse10 DEC 2019 5:59:22 PMPASS 5 / 5 +   ReleasedToPressedFaultMode10 DEC 2019 5:59:22 PMPASS 3 / 3 +   ReleasedToPressedInvalidMode10 DEC 2019 5:59:22 PMPASS 3 / 3 +   ReleasedToPressedServiceMode10 DEC 2019 5:59:22 PMPASS 3 / 3 +   ReleasedToPressedStandbyMode10 DEC 2019 5:59:22 PMPASS 3 / 3 +   handleOffButtonProcessing_OffRequestPending10 DEC 2019 5:59:22 PMPASS 2 / 2 +   handleOffButtonProcessing_OffRequestPendingExpired10 DEC 2019 5:59:22 PMPASS 2 / 2 +  handleStopButtonProcessingNoChange10 DEC 2019 5:59:22 PMPASS 3 / 3 +   PressTimedOut10 DEC 2019 5:59:22 PMPASS 6 / 6 +   PressedToReleased10 DEC 2019 5:59:22 PMPASS 3 / 3 +   ReleasedToPressed10 DEC 2019 5:59:22 PMPASS 6 / 6 +  testSetOffButtonStateOverrideTestingActive10 DEC 2019 5:59:22 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:59:22 PMPASS 5 / 5 +  testResetOffButtonStateOverrideTestingActive10 DEC 2019 5:59:22 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:59:22 PMPASS 5 / 5 +  testSetStopButtonStateOverrideTestingActive10 DEC 2019 5:59:22 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:59:22 PMPASS 5 / 5 +  testResetStopButtonStateOverrideTestingActive10 DEC 2019 5:59:22 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 5:59:22 PMPASS 5 / 5 + TOTALS1449 PASS 49 / 49 @@ -334,7 +336,7 @@  execStuckButtonTest729 / 29 (100%)19 / 19 (100%)4 / 4 (100%) -  userConfirmOffButton47 / 7 (100%)13 / 13 (100%)3 / 3 (100%) +  userConfirmOffButton815 / 22 (68%)16 / 21 (76%)3 / 4 (75%)  isCurrentOpModeOkToTurnOff25 / 5 (100%)9 / 9 (100%)3 / 3 (100%) @@ -358,10 +360,10 @@  testResetStopButtonStateOverride26 / 6 (100%)5 / 5 (100%)1 / 1 (100%) - TOTALS1444124 / 124 (100%)132 / 132 (100%)30 / 30 (100%) + TOTALS1448132 / 139 (94%)135 / 140 (96%)30 / 31 (96%) - GRAND TOTALS1444124 / 124 (100%)132 / 132 (100%)30 / 30 (100%) + GRAND TOTALS1448132 / 139 (94%)135 / 140 (96%)30 / 31 (96%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCOMMBUFFERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:29 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:28 PM
                                                                              @@ -248,26 +248,26 @@ TOTALS     <<INIT>>     TOTALS     - CommBuffersinitCommBuffersNominalPath06 DEC 2019 6:07:52 PMPASS 41 / 41 -  addToCommBufferInsufficientSpaceForAdd06 DEC 2019 6:07:52 PMPASS 1 / 1 -   InvalidBuffer06 DEC 2019 6:07:52 PMPASS 1 / 1 -   SuccessfulAdd06 DEC 2019 6:07:52 PMPASS 26 / 26 -  getFromCommBufferInvalidBuffer06 DEC 2019 6:07:52 PMPASS 1 / 1 -   LengthLargerThanBuffer06 DEC 2019 6:07:52 PMPASS 4 / 4 -   LengthLargerThanContents06 DEC 2019 6:07:52 PMPASS 4 / 4 -   SuccessfulGetFromBothBuffers06 DEC 2019 6:07:52 PMPASS 7 / 7 -   SuccessfulGetFromInactiveBufferOnly06 DEC 2019 6:07:52 PMPASS 7 / 7 -  peekFromCommBufferInvalidBuffer06 DEC 2019 6:07:52 PMPASS 1 / 1 -   LengthLargerThanBuffer06 DEC 2019 6:07:52 PMPASS 4 / 4 -   LengthLargerThanContents06 DEC 2019 6:07:52 PMPASS 4 / 4 -   SuccessfulPeekFromBothBuffers06 DEC 2019 6:07:52 PMPASS 15 / 15 -   SuccessfulPeekFromInactiveBufferOnly06 DEC 2019 6:07:52 PMPASS 15 / 15 -  numberOfBytesInCommBufferInvalidBuffer06 DEC 2019 6:07:52 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:07:52 PMPASS 3 / 3 -  switchDoubleBufferSwitch0To106 DEC 2019 6:07:52 PMPASS 3 / 3 -   Switch1To006 DEC 2019 6:07:52 PMPASS 3 / 3 -  getDataFromInactiveBufferConsumeAllDataInInactiveBuffer06 DEC 2019 6:07:52 PMPASS 3 / 3 -   ConsumePortionOfDataInInactiveBuffer06 DEC 2019 6:07:52 PMPASS 6 / 6 + CommBuffersinitCommBuffersNominalPath10 DEC 2019 5:59:49 PMPASS 41 / 41 +  addToCommBufferInsufficientSpaceForAdd10 DEC 2019 5:59:49 PMPASS 1 / 1 +   InvalidBuffer10 DEC 2019 5:59:49 PMPASS 1 / 1 +   SuccessfulAdd10 DEC 2019 5:59:49 PMPASS 26 / 26 +  getFromCommBufferInvalidBuffer10 DEC 2019 5:59:49 PMPASS 1 / 1 +   LengthLargerThanBuffer10 DEC 2019 5:59:49 PMPASS 4 / 4 +   LengthLargerThanContents10 DEC 2019 5:59:49 PMPASS 4 / 4 +   SuccessfulGetFromBothBuffers10 DEC 2019 5:59:49 PMPASS 7 / 7 +   SuccessfulGetFromInactiveBufferOnly10 DEC 2019 5:59:49 PMPASS 7 / 7 +  peekFromCommBufferInvalidBuffer10 DEC 2019 5:59:49 PMPASS 1 / 1 +   LengthLargerThanBuffer10 DEC 2019 5:59:49 PMPASS 4 / 4 +   LengthLargerThanContents10 DEC 2019 5:59:49 PMPASS 4 / 4 +   SuccessfulPeekFromBothBuffers10 DEC 2019 5:59:49 PMPASS 15 / 15 +   SuccessfulPeekFromInactiveBufferOnly10 DEC 2019 5:59:50 PMPASS 15 / 15 +  numberOfBytesInCommBufferInvalidBuffer10 DEC 2019 5:59:50 PMPASS 1 / 1 +   NominalPath10 DEC 2019 5:59:50 PMPASS 3 / 3 +  switchDoubleBufferSwitch0To110 DEC 2019 5:59:50 PMPASS 3 / 3 +   Switch1To010 DEC 2019 5:59:50 PMPASS 3 / 3 +  getDataFromInactiveBufferConsumeAllDataInInactiveBuffer10 DEC 2019 5:59:50 PMPASS 3 / 3 +   ConsumePortionOfDataInInactiveBuffer10 DEC 2019 5:59:50 PMPASS 6 / 6 TOTALS720 PASS 20 / 20 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:28 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:27 PM
                                                                              @@ -248,29 +248,29 @@ TOTALS     <<INIT>>     TOTALS     - CommsignalCANXmitsInitiatedsignalCANXmitsInitiated_NominalPath06 DEC 2019 6:07:39 PMPASS 1 / 1 -  signalCANXmitsCompletedsignalCANXmitsCompleted_NominalPath06 DEC 2019 6:07:39 PMPASS 1 / 1 -  signalSCI1XmitsInitiatedsignalSCI1XmitsInitiated_NominalPath06 DEC 2019 6:07:39 PMPASS 1 / 1 -  signalSCI1XmitsCompletedsignalSCI1XmitsCompleted_NominalPath06 DEC 2019 6:07:39 PMPASS 1 / 1 -  setSCI1DMAReceiveInterruptsetSCI1DMAReceiveInterrupt06 DEC 2019 6:07:39 PMPASS 1 / 1 -  setSCI1DMATransmitInterruptsetSCI1DMATransmitInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  clearSCI1DMAReceiveInterruptclearSCI1DMAReceiveInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  clearSCI1DMATransmitInterruptclearSCI1DMATransmitInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  setSCI2DMAReceiveInterruptsetSCI2DMAReceiveInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  setSCI2DMATransmitInterruptsetSCI2DMATransmitInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  clearSCI2DMAReceiveInterruptclearSCI2DMAReceiveInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  clearSCI2DMATransmitInterruptclearSCI2DMATransmitInterrupt06 DEC 2019 6:07:40 PMPASS 1 / 1 -  isSCI1DMATransmitInProgressisSCI1DMATransmitInProgress_DMABusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isSCI1DMATransmitInProgress_InProgress06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isSCI1DMATransmitInProgress_NotBusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isSCI1DMATransmitInProgress_TransmitterBusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -  isSCI2DMATransmitInProgressisSCI2DMATransmitInProgress_DMABusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isSCI2DMATransmitInProgress_NotBusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isSCI2DMATransmitInProgress_TransmitterBusy06 DEC 2019 6:07:40 PMPASS 1 / 1 -  isCAN1TransmitInProgressisCAN1TransmitInProgress_Ch1_8_Busy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isCAN1TransmitInProgress_Ch9_16_Busy06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isCAN1TransmitInProgress_InProgress06 DEC 2019 6:07:40 PMPASS 1 / 1 -   isCAN1TransmitInProgress_NotBusy06 DEC 2019 6:07:40 PMPASS 1 / 1 + CommsignalCANXmitsInitiatedsignalCANXmitsInitiated_NominalPath10 DEC 2019 5:59:36 PMPASS 1 / 1 +  signalCANXmitsCompletedsignalCANXmitsCompleted_NominalPath10 DEC 2019 5:59:36 PMPASS 1 / 1 +  signalSCI1XmitsInitiatedsignalSCI1XmitsInitiated_NominalPath10 DEC 2019 5:59:36 PMPASS 1 / 1 +  signalSCI1XmitsCompletedsignalSCI1XmitsCompleted_NominalPath10 DEC 2019 5:59:36 PMPASS 1 / 1 +  setSCI1DMAReceiveInterruptsetSCI1DMAReceiveInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  setSCI1DMATransmitInterruptsetSCI1DMATransmitInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  clearSCI1DMAReceiveInterruptclearSCI1DMAReceiveInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  clearSCI1DMATransmitInterruptclearSCI1DMATransmitInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  setSCI2DMAReceiveInterruptsetSCI2DMAReceiveInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  setSCI2DMATransmitInterruptsetSCI2DMATransmitInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  clearSCI2DMAReceiveInterruptclearSCI2DMAReceiveInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  clearSCI2DMATransmitInterruptclearSCI2DMATransmitInterrupt10 DEC 2019 5:59:36 PMPASS 1 / 1 +  isSCI1DMATransmitInProgressisSCI1DMATransmitInProgress_DMABusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isSCI1DMATransmitInProgress_InProgress10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isSCI1DMATransmitInProgress_NotBusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isSCI1DMATransmitInProgress_TransmitterBusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +  isSCI2DMATransmitInProgressisSCI2DMATransmitInProgress_DMABusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isSCI2DMATransmitInProgress_NotBusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isSCI2DMATransmitInProgress_TransmitterBusy10 DEC 2019 5:59:36 PMPASS 1 / 1 +  isCAN1TransmitInProgressisCAN1TransmitInProgress_Ch1_8_Busy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isCAN1TransmitInProgress_Ch9_16_Busy10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isCAN1TransmitInProgress_InProgress10 DEC 2019 5:59:36 PMPASS 1 / 1 +   isCAN1TransmitInProgress_NotBusy10 DEC 2019 5:59:36 PMPASS 1 / 1 TOTALS1523 PASS 23 / 23 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameCPLD
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:31 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:30 PM
                                                                              @@ -248,18 +248,18 @@ TOTALS     <<INIT>>     TOTALS     - CPLDinitCPLDinitCPLD_NominalPath06 DEC 2019 6:08:03 PMPASS 5 / 5 -  toggleCPLDWatchdogtoggleCPLDWatchdog_NominalPath06 DEC 2019 6:08:03 PMPASS 1 / 1 -  getCPLDWatchdogExpiredgetCPLDWatchdogExpired_NominalPath06 DEC 2019 6:08:03 PMPASS 2 / 2 -  setCPLDLampGreensetCPLDLampGreen_Off06 DEC 2019 6:08:03 PMPASS 1 / 1 -   setCPLDLampGreen_On06 DEC 2019 6:08:03 PMPASS 1 / 1 -  setCPLDLampBluesetCPLDLampBlue_Off06 DEC 2019 6:08:03 PMPASS 1 / 1 -   setCPLDLampBlue_On06 DEC 2019 6:08:03 PMPASS 1 / 1 -  setCPLDLampRedsetCPLDLampRed_Off06 DEC 2019 6:08:03 PMPASS 1 / 1 -   setCPLDLampRed_On06 DEC 2019 6:08:03 PMPASS 1 / 1 -  toggleCPLDOffRequesttoggleCPLDOffRequest_NominalPath06 DEC 2019 6:08:03 PMPASS 1 / 1 -  getCPLDOffButtongetCPLDOffButton_NominalPath06 DEC 2019 6:08:03 PMPASS 2 / 2 -  getCPLDStopButtongetCPLDStopButton_NominalPath06 DEC 2019 6:08:03 PMPASS 2 / 2 + CPLDinitCPLDinitCPLD_NominalPath10 DEC 2019 6:00:02 PMPASS 5 / 5 +  toggleCPLDWatchdogtoggleCPLDWatchdog_NominalPath10 DEC 2019 6:00:02 PMPASS 1 / 1 +  getCPLDWatchdogExpiredgetCPLDWatchdogExpired_NominalPath10 DEC 2019 6:00:02 PMPASS 2 / 2 +  setCPLDLampGreensetCPLDLampGreen_Off10 DEC 2019 6:00:02 PMPASS 1 / 1 +   setCPLDLampGreen_On10 DEC 2019 6:00:02 PMPASS 1 / 1 +  setCPLDLampBluesetCPLDLampBlue_Off10 DEC 2019 6:00:02 PMPASS 1 / 1 +   setCPLDLampBlue_On10 DEC 2019 6:00:02 PMPASS 1 / 1 +  setCPLDLampRedsetCPLDLampRed_Off10 DEC 2019 6:00:02 PMPASS 1 / 1 +   setCPLDLampRed_On10 DEC 2019 6:00:02 PMPASS 1 / 1 +  toggleCPLDOffRequesttoggleCPLDOffRequest_NominalPath10 DEC 2019 6:00:02 PMPASS 1 / 1 +  getCPLDOffButtongetCPLDOffButton_NominalPath10 DEC 2019 6:00:02 PMPASS 2 / 2 +  getCPLDStopButtongetCPLDStopButton_NominalPath10 DEC 2019 6:00:02 PMPASS 2 / 2 TOTALS912 PASS 12 / 12 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameFPGA
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:32 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:31 PM
                                                                              @@ -252,58 +252,58 @@ TOTALS     <<INIT>>     TOTALS     - FPGAinitFPGANominalPath06 DEC 2019 6:08:14 PMPASS 116 / 116 -  resetFPGACommFlagsNominalPath06 DEC 2019 6:08:14 PMPASS 7 / 7 -  signalFPGAReceiptCompletedBulkWriteAndReadInProgressAfterWrite06 DEC 2019 6:08:14 PMPASS 11 / 11 -   NothingInProgress06 DEC 2019 6:08:14 PMPASS 7 / 7 -   ReadCmdInProgress06 DEC 2019 6:08:14 PMPASS 7 / 7 -   WriteCmdInProgress06 DEC 2019 6:08:14 PMPASS 7 / 7 -  signalFPGATransmitCompletedNominalPath06 DEC 2019 6:08:15 PMPASS 7 / 7 -  execFPGAInCommErrorTooManyRetries06 DEC 2019 6:08:15 PMPASS 9 / 9 -   FailedState06 DEC 2019 6:08:15 PMPASS 8 / 8 -   InvalidState06 DEC 2019 6:08:15 PMPASS 9 / 9 -   OutgoingState06 DEC 2019 6:08:15 PMPASS 8 / 8 -   RcvAllSensorsState06 DEC 2019 6:08:15 PMPASS 13 / 13 -   RcvHeaderState06 DEC 2019 6:08:15 PMPASS 14 / 14 -   StartState06 DEC 2019 6:08:15 PMPASS 8 / 8 -  execFPGAOutFailedState06 DEC 2019 6:08:15 PMPASS 1 / 1 -   IncomingState06 DEC 2019 6:08:15 PMPASS 1 / 1 -   InvalidState06 DEC 2019 6:08:15 PMPASS 2 / 2 -   ReadHeaderState06 DEC 2019 6:08:15 PMPASS 19 / 19 -   WriteAllActuatorsState06 DEC 2019 6:08:15 PMPASS 18 / 18 -  handleFPGAReadHeaderStateNominalCase06 DEC 2019 6:08:15 PMPASS 13 / 13 -  handleFPGAReceiveHeaderStateBadCRC06 DEC 2019 6:08:15 PMPASS 9 / 9 -   NAKResponse06 DEC 2019 6:08:15 PMPASS 8 / 8 -   NoResponseReceived06 DEC 2019 6:08:15 PMPASS 8 / 8 -   NominalCase06 DEC 2019 6:08:15 PMPASS 9 / 9 -  handleFPGAWriteAllActuatorsStateNominalPath06 DEC 2019 6:08:15 PMPASS 25 / 25 -  handleFPGAReceiveAllSensorsStateBadCRC06 DEC 2019 6:08:15 PMPASS 6 / 6 -   NAKResponse06 DEC 2019 6:08:15 PMPASS 5 / 5 -   NoResponseReceived06 DEC 2019 6:08:15 PMPASS 5 / 5 -   NoWriteResponseReceived06 DEC 2019 6:08:15 PMPASS 5 / 5 -   NominalPath06 DEC 2019 6:08:15 PMPASS 5 / 5 -  execFPGATestTestFailed06 DEC 2019 6:08:15 PMPASS 4 / 4 -   TestPassed06 DEC 2019 6:08:15 PMPASS 1 / 1 -  setupDMAForWriteCmdLengthTooLarge06 DEC 2019 6:08:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  startDMAWriteCmdNominalPath06 DEC 2019 6:08:15 PMPASS 20 / 20 -  setupDMAForWriteRespLengthTooLarge06 DEC 2019 6:08:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  startDMAReceiptOfWriteRespNominalPath06 DEC 2019 6:08:15 PMPASS 20 / 20 -  setupDMAForReadCmdLengthTooLarge06 DEC 2019 6:08:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  startDMAReadCmdNominalPath06 DEC 2019 6:08:15 PMPASS 20 / 20 -  setupDMAForReadRespLengthTooLarge06 DEC 2019 6:08:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  startDMAReceiptOfReadRespNominalPath06 DEC 2019 6:08:15 PMPASS 20 / 20 -  getFPGAIdNominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  getFPGARevNominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  getFPGAStatusNominalPath06 DEC 2019 6:08:15 PMPASS 1 / 1 -  setFPGAControlNominalPath06 DEC 2019 6:08:16 PMPASS 1 / 1 -  getFPGABloodFlowgetFPGABloodFlow_NominalPath06 DEC 2019 6:08:16 PMPASS 1 / 1 -  getFPGADialysateFlowgetFPGADialysateFlow_NominalPath06 DEC 2019 6:08:16 PMPASS 1 / 1 -  consumeUnexpectedDataDataBytePending06 DEC 2019 6:08:16 PMPASS -   NoData06 DEC 2019 6:08:16 PMPASS + FPGAinitFPGANominalPath10 DEC 2019 6:00:14 PMPASS 116 / 116 +  resetFPGACommFlagsNominalPath10 DEC 2019 6:00:14 PMPASS 7 / 7 +  signalFPGAReceiptCompletedBulkWriteAndReadInProgressAfterWrite10 DEC 2019 6:00:14 PMPASS 11 / 11 +   NothingInProgress10 DEC 2019 6:00:14 PMPASS 7 / 7 +   ReadCmdInProgress10 DEC 2019 6:00:14 PMPASS 7 / 7 +   WriteCmdInProgress10 DEC 2019 6:00:14 PMPASS 7 / 7 +  signalFPGATransmitCompletedNominalPath10 DEC 2019 6:00:14 PMPASS 7 / 7 +  execFPGAInCommErrorTooManyRetries10 DEC 2019 6:00:14 PMPASS 9 / 9 +   FailedState10 DEC 2019 6:00:14 PMPASS 8 / 8 +   InvalidState10 DEC 2019 6:00:14 PMPASS 9 / 9 +   OutgoingState10 DEC 2019 6:00:14 PMPASS 8 / 8 +   RcvAllSensorsState10 DEC 2019 6:00:14 PMPASS 13 / 13 +   RcvHeaderState10 DEC 2019 6:00:14 PMPASS 14 / 14 +   StartState10 DEC 2019 6:00:14 PMPASS 8 / 8 +  execFPGAOutFailedState10 DEC 2019 6:00:14 PMPASS 1 / 1 +   IncomingState10 DEC 2019 6:00:14 PMPASS 1 / 1 +   InvalidState10 DEC 2019 6:00:14 PMPASS 2 / 2 +   ReadHeaderState10 DEC 2019 6:00:14 PMPASS 19 / 19 +   WriteAllActuatorsState10 DEC 2019 6:00:14 PMPASS 18 / 18 +  handleFPGAReadHeaderStateNominalCase10 DEC 2019 6:00:15 PMPASS 13 / 13 +  handleFPGAReceiveHeaderStateBadCRC10 DEC 2019 6:00:15 PMPASS 9 / 9 +   NAKResponse10 DEC 2019 6:00:15 PMPASS 8 / 8 +   NoResponseReceived10 DEC 2019 6:00:15 PMPASS 8 / 8 +   NominalCase10 DEC 2019 6:00:15 PMPASS 9 / 9 +  handleFPGAWriteAllActuatorsStateNominalPath10 DEC 2019 6:00:15 PMPASS 25 / 25 +  handleFPGAReceiveAllSensorsStateBadCRC10 DEC 2019 6:00:15 PMPASS 6 / 6 +   NAKResponse10 DEC 2019 6:00:15 PMPASS 5 / 5 +   NoResponseReceived10 DEC 2019 6:00:15 PMPASS 5 / 5 +   NoWriteResponseReceived10 DEC 2019 6:00:15 PMPASS 5 / 5 +   NominalPath10 DEC 2019 6:00:15 PMPASS 5 / 5 +  execFPGATestTestFailed10 DEC 2019 6:00:15 PMPASS 4 / 4 +   TestPassed10 DEC 2019 6:00:15 PMPASS 1 / 1 +  setupDMAForWriteCmdLengthTooLarge10 DEC 2019 6:00:15 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  startDMAWriteCmdNominalPath10 DEC 2019 6:00:15 PMPASS 20 / 20 +  setupDMAForWriteRespLengthTooLarge10 DEC 2019 6:00:15 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  startDMAReceiptOfWriteRespNominalPath10 DEC 2019 6:00:15 PMPASS 20 / 20 +  setupDMAForReadCmdLengthTooLarge10 DEC 2019 6:00:15 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  startDMAReadCmdNominalPath10 DEC 2019 6:00:15 PMPASS 20 / 20 +  setupDMAForReadRespLengthTooLarge10 DEC 2019 6:00:15 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  startDMAReceiptOfReadRespNominalPath10 DEC 2019 6:00:15 PMPASS 20 / 20 +  getFPGAIdNominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  getFPGARevNominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  getFPGAStatusNominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  setFPGAControlNominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  getFPGABloodFlowgetFPGABloodFlow_NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  getFPGADialysateFlowgetFPGADialysateFlow_NominalPath10 DEC 2019 6:00:15 PMPASS 1 / 1 +  consumeUnexpectedDataDataBytePending10 DEC 2019 6:00:15 PMPASS +   NoData10 DEC 2019 6:00:15 PMPASS TOTALS2652 PASS 52 / 52 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINTERRUPTS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:34 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:33 PM
                                                                              @@ -252,26 +252,26 @@ TOTALS     <<INIT>>     TOTALS     - InterruptsphantomInterruptNominalPath06 DEC 2019 6:08:31 PMPASS -  canMessageNotificationInvalidCANNode06 DEC 2019 6:08:31 PMPASS -   NominalPath06 DEC 2019 6:08:31 PMPASS 1 / 1 -  canErrorNotificationcanErrorNotification_BusOff06 DEC 2019 6:08:31 PMPASS 4 / 4 -   canErrorNotification_BusPassive06 DEC 2019 6:08:31 PMPASS 4 / 4 -   canErrorNotification_BusWarning06 DEC 2019 6:08:31 PMPASS 4 / 4 -   canErrorNotification_InvalidCANNode06 DEC 2019 6:08:31 PMPASS 4 / 4 -   canErrorNotification_Other06 DEC 2019 6:08:31 PMPASS 4 / 4 -   canErrorNotification_ParityError06 DEC 2019 6:08:31 PMPASS 4 / 4 -  sciNotificationFramingError_SCI06 DEC 2019 6:08:31 PMPASS 2 / 2 -   FramingError_SCI206 DEC 2019 6:08:31 PMPASS 2 / 2 -   InvalidSCI06 DEC 2019 6:08:31 PMPASS 4 / 4 -   OverrunError_SCI06 DEC 2019 6:08:31 PMPASS 2 / 2 -   OverrunError_SCI206 DEC 2019 6:08:31 PMPASS 2 / 2 -  dmaGroupANotificationDMAChannel006 DEC 2019 6:08:31 PMPASS -   DMAChannel106 DEC 2019 6:08:31 PMPASS -   DMAChannel206 DEC 2019 6:08:31 PMPASS -   DMAChannel306 DEC 2019 6:08:31 PMPASS -   InvalidChannel06 DEC 2019 6:08:31 PMPASS -   UnexpectedInterruptType06 DEC 2019 6:08:31 PMPASS + InterruptsphantomInterruptNominalPath10 DEC 2019 6:00:29 PMPASS +  canMessageNotificationInvalidCANNode10 DEC 2019 6:00:29 PMPASS +   NominalPath10 DEC 2019 6:00:29 PMPASS 1 / 1 +  canErrorNotificationcanErrorNotification_BusOff10 DEC 2019 6:00:29 PMPASS 4 / 4 +   canErrorNotification_BusPassive10 DEC 2019 6:00:29 PMPASS 4 / 4 +   canErrorNotification_BusWarning10 DEC 2019 6:00:29 PMPASS 4 / 4 +   canErrorNotification_InvalidCANNode10 DEC 2019 6:00:29 PMPASS 4 / 4 +   canErrorNotification_Other10 DEC 2019 6:00:29 PMPASS 4 / 4 +   canErrorNotification_ParityError10 DEC 2019 6:00:29 PMPASS 4 / 4 +  sciNotificationFramingError_SCI10 DEC 2019 6:00:29 PMPASS 2 / 2 +   FramingError_SCI210 DEC 2019 6:00:29 PMPASS 2 / 2 +   InvalidSCI10 DEC 2019 6:00:29 PMPASS 4 / 4 +   OverrunError_SCI10 DEC 2019 6:00:29 PMPASS 2 / 2 +   OverrunError_SCI210 DEC 2019 6:00:29 PMPASS 2 / 2 +  dmaGroupANotificationDMAChannel010 DEC 2019 6:00:29 PMPASS +   DMAChannel110 DEC 2019 6:00:29 PMPASS +   DMAChannel210 DEC 2019 6:00:29 PMPASS +   DMAChannel310 DEC 2019 6:00:29 PMPASS +   InvalidChannel10 DEC 2019 6:00:29 PMPASS +   UnexpectedInterruptType10 DEC 2019 6:00:29 PMPASS TOTALS520 PASS 20 / 20 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_ALARMLAMP
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:35 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:35 PM
                                                                              @@ -248,12 +248,12 @@  testResetCurrentLampPatternOverride    TOTALS8    ModeFaultinitFaultMode    -  transitionToFaultModerequestAlarmLampPattern06 DEC 2019 6:08:57 PMPASS 2 / 2 +  transitionToFaultModerequestAlarmLampPattern10 DEC 2019 6:01:02 PMPASS 2 / 2  execFaultMode    TOTALS31 PASS 1 / 1 ModeInitPOSTinitInitAndPOSTMode     transitionToInitAndPOSTMode    -  execInitAndPOSTModeexecAlarmLampTest06 DEC 2019 6:08:57 PMPASS 1 / 1 +  execInitAndPOSTModeexecAlarmLampTest10 DEC 2019 6:01:02 PMPASS 1 / 1  isPOSTCompleted     isPOSTPassed     handlePOSTStatus    @@ -274,8 +274,8 @@  handleTestHDMessageRequest     handleTestOffButtonStateOverrideRequest     handleTestStopButtonStateOverrideRequest    -  handleTestAlarmLampPatternOverrideRequesttestResetCurrentLampPatternOverride06 DEC 2019 6:08:57 PMPASS 3 / 3 -   testSetCurrentLampPatternOverride06 DEC 2019 6:08:57 PMPASS 3 / 3 +  handleTestAlarmLampPatternOverrideRequesttestResetCurrentLampPatternOverride10 DEC 2019 6:01:02 PMPASS 3 / 3 +   testSetCurrentLampPatternOverride10 DEC 2019 6:01:02 PMPASS 3 / 3  handleTestWatchdogCheckInStateOverrideRequest     handleTestAlarmStateOverrideRequest     handleTestAlarmTimeOverrideRequest    @@ -286,11 +286,11 @@  handleTestBloodPumpMeasuredCurrentOverrideRequest     handleTestBloodFlowBroadcastIntervalOverrideRequest    TOTALS262 PASS 2 / 2 - TaskGeneraltaskGeneralexecAlarmLamp06 DEC 2019 6:08:57 PMPASS 4 / 4 + TaskGeneraltaskGeneralexecAlarmLamp10 DEC 2019 6:01:02 PMPASS 4 / 4 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitAlarmLamp06 DEC 2019 6:08:57 PMPASS 5 / 5 +  initSoftwareinitAlarmLamp10 DEC 2019 6:01:02 PMPASS 5 / 5  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_ALARMMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:37 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:36 PM
                                                                              @@ -215,7 +215,7 @@ Function Coverage - 26 / 59 (44%) + 26 / 65 (40%) @@ -240,8 +240,8 @@ TOTALS     BloodFlowinitBloodFlow     setBloodPumpTargetFlowRate    -  execBloodFlowMonitoractivateAlarm1Data06 DEC 2019 6:09:17 PMPASS 3 / 3 -  execBloodFlowControlleractivateAlarm2Data06 DEC 2019 6:09:17 PMPASS 5 / 5 +  execBloodFlowMonitoractivateAlarm1Data10 DEC 2019 6:01:25 PMPASS 3 / 3 +  execBloodFlowControlleractivateAlarm2Data10 DEC 2019 6:01:25 PMPASS 5 / 5  handleBloodPumpOffState     handleBloodPumpRampingUpState     handleBloodPumpRampingDownState    @@ -252,8 +252,10 @@  getPublishBloodFlowDataInterval     getTargetBloodFlowRate     getMeasuredBloodFlowRate    +  getMeasuredBloodPumpRotorSpeed     getMeasuredBloodPumpSpeed    -  getMeasuredBloodPumpCurrent    +  getMeasuredBloodPumpMCSpeed    +  getMeasuredBloodPumpMCCurrent     publishBloodFlowData     checkBloodPumpDirection     checkBloodPumpMCCurrent    @@ -264,11 +266,15 @@  testResetTargetBloodFlowRateOverride     testSetMeasuredBloodFlowRateOverride     testResetMeasuredBloodFlowRateOverride    +  testSetMeasuredBloodPumpRotorSpeedOverride    +  testResetMeasuredBloodPumpRotorSpeedOverride     testSetMeasuredBloodPumpSpeedOverride     testResetMeasuredBloodPumpSpeedOverride    -  testSetMeasuredBloodPumpCurrentOverride    -  testResetMeasuredBloodPumpCurrentOverride    - TOTALS302 PASS 2 / 2 +  testSetMeasuredBloodPumpMCSpeedOverride    +  testResetMeasuredBloodPumpMCSpeedOverride    +  testSetMeasuredBloodPumpMCCurrentOverride    +  testResetMeasuredBloodPumpMCCurrentOverride    + TOTALS362 PASS 2 / 2 AlarmMgmtinitAlarmMgmt     execAlarmMgmt     activateAlarm    @@ -293,11 +299,11 @@  testSetAlarmStartOverride     testResetAlarmStartOverride    TOTALS23    - TaskGeneraltaskGeneralexecAlarmMgmt06 DEC 2019 6:09:17 PMPASS 2 / 2 + TaskGeneraltaskGeneralexecAlarmMgmt10 DEC 2019 6:01:25 PMPASS 2 / 2 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitAlarmMgmt06 DEC 2019 6:09:17 PMPASS 14 / 14 +  initSoftwareinitAlarmMgmt10 DEC 2019 6:01:25 PMPASS 14 / 14  initHardware     initTasks    TOTALS51 PASS 1 / 1 @@ -363,12 +369,18 @@  getMeasuredBloodFlowRate20 / 1 (0%) +  getMeasuredBloodPumpRotorSpeed20 / 1 (0%) + +  getMeasuredBloodPumpSpeed20 / 1 (0%) -  getMeasuredBloodPumpCurrent21 / 1 (100%) +  getMeasuredBloodPumpMCSpeed20 / 1 (0%) +  getMeasuredBloodPumpMCCurrent21 / 1 (100%) + +  publishBloodFlowData21 / 1 (100%) @@ -399,21 +411,33 @@  testResetMeasuredBloodFlowRateOverride20 / 1 (0%) +  testSetMeasuredBloodPumpRotorSpeedOverride20 / 1 (0%) + + +  testResetMeasuredBloodPumpRotorSpeedOverride20 / 1 (0%) + +  testSetMeasuredBloodPumpSpeedOverride20 / 1 (0%)  testResetMeasuredBloodPumpSpeedOverride20 / 1 (0%) -  testSetMeasuredBloodPumpCurrentOverride20 / 1 (0%) +  testSetMeasuredBloodPumpMCSpeedOverride20 / 1 (0%) -  testResetMeasuredBloodPumpCurrentOverride20 / 1 (0%) +  testResetMeasuredBloodPumpMCSpeedOverride20 / 1 (0%) - TOTALS308712 / 30 (40%) +  testSetMeasuredBloodPumpMCCurrentOverride20 / 1 (0%) +  testResetMeasuredBloodPumpMCCurrentOverride20 / 1 (0%) + + + TOTALS369912 / 36 (33%) + + AlarmMgmtinitAlarmMgmt31 / 1 (100%) @@ -510,7 +534,7 @@ TOTALS551 / 5 (20%) - GRAND TOTALS5915826 / 59 (44%) + GRAND TOTALS6517026 / 65 (40%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_BLOODFLOW
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:39 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:38 PM
                                                                              @@ -210,12 +210,12 @@ Expecteds - 12 / 12 PASS + 14 / 14 PASS Function Coverage - 16 / 37 (43%) + 18 / 43 (41%) @@ -252,8 +252,10 @@  getPublishBloodFlowDataInterval     getTargetBloodFlowRate     getMeasuredBloodFlowRate    +  getMeasuredBloodPumpRotorSpeed     getMeasuredBloodPumpSpeed    -  getMeasuredBloodPumpCurrent    +  getMeasuredBloodPumpMCSpeed    +  getMeasuredBloodPumpMCCurrent     publishBloodFlowData     checkBloodPumpDirection     checkBloodPumpMCCurrent    @@ -264,18 +266,22 @@  testResetTargetBloodFlowRateOverride     testSetMeasuredBloodFlowRateOverride     testResetMeasuredBloodFlowRateOverride    +  testSetMeasuredBloodPumpRotorSpeedOverride    +  testResetMeasuredBloodPumpRotorSpeedOverride     testSetMeasuredBloodPumpSpeedOverride     testResetMeasuredBloodPumpSpeedOverride    -  testSetMeasuredBloodPumpCurrentOverride    -  testResetMeasuredBloodPumpCurrentOverride    - TOTALS30    - TaskGeneraltaskGeneralexecBloodFlowController06 DEC 2019 6:09:38 PMPASS 1 / 1 +  testSetMeasuredBloodPumpMCSpeedOverride    +  testResetMeasuredBloodPumpMCSpeedOverride    +  testSetMeasuredBloodPumpMCCurrentOverride    +  testResetMeasuredBloodPumpMCCurrentOverride    + TOTALS36    + TaskGeneraltaskGeneralexecBloodFlowController10 DEC 2019 6:01:47 PMPASS 1 / 1 TOTALS11 PASS 1 / 1 - TaskPrioritytaskPriorityexecBloodFlowMonitor06 DEC 2019 6:09:38 PMPASS 5 / 5 + TaskPrioritytaskPriorityexecBloodFlowMonitor10 DEC 2019 6:01:47 PMPASS 7 / 7 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitBloodFlow06 DEC 2019 6:09:38 PMPASS 6 / 6 +  initSoftwareinitBloodFlow10 DEC 2019 6:01:47 PMPASS 6 / 6  initHardware     initTasks    TOTALS51 PASS 1 / 1 @@ -341,12 +347,18 @@  getMeasuredBloodFlowRate21 / 1 (100%) +  getMeasuredBloodPumpRotorSpeed21 / 1 (100%) + +  getMeasuredBloodPumpSpeed21 / 1 (100%) -  getMeasuredBloodPumpCurrent21 / 1 (100%) +  getMeasuredBloodPumpMCSpeed21 / 1 (100%) +  getMeasuredBloodPumpMCCurrent21 / 1 (100%) + +  publishBloodFlowData21 / 1 (100%) @@ -377,21 +389,33 @@  testResetMeasuredBloodFlowRateOverride20 / 1 (0%) +  testSetMeasuredBloodPumpRotorSpeedOverride20 / 1 (0%) + + +  testResetMeasuredBloodPumpRotorSpeedOverride20 / 1 (0%) + +  testSetMeasuredBloodPumpSpeedOverride20 / 1 (0%)  testResetMeasuredBloodPumpSpeedOverride20 / 1 (0%) -  testSetMeasuredBloodPumpCurrentOverride20 / 1 (0%) +  testSetMeasuredBloodPumpMCSpeedOverride20 / 1 (0%) -  testResetMeasuredBloodPumpCurrentOverride20 / 1 (0%) +  testResetMeasuredBloodPumpMCSpeedOverride20 / 1 (0%) - TOTALS308713 / 30 (43%) +  testSetMeasuredBloodPumpMCCurrentOverride20 / 1 (0%) +  testResetMeasuredBloodPumpMCCurrentOverride20 / 1 (0%) + + + TOTALS369915 / 36 (41%) + + TaskGeneraltaskGeneral21 / 1 (100%) @@ -422,7 +446,7 @@ TOTALS551 / 5 (20%) - GRAND TOTALS379616 / 37 (43%) + GRAND TOTALS4310818 / 43 (41%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_BUTTONS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:40 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:39 PM
                                                                              @@ -255,14 +255,14 @@ TOTALS14    ModeInitPOSTinitInitAndPOSTMode     transitionToInitAndPOSTMode    -  execInitAndPOSTModeexecStuckButtonTest06 DEC 2019 6:10:03 PMPASS 2 / 2 +  execInitAndPOSTModeexecStuckButtonTest10 DEC 2019 6:02:13 PMPASS 2 / 2  isPOSTCompleted     isPOSTPassed     handlePOSTStatus    TOTALS61 PASS 1 / 1 SystemCommMessagesserializeMessage     sendOffButtonMsgToUI    -  handleOffButtonConfirmMsgFromUIuserConfirmOffButton06 DEC 2019 6:10:03 PMPASS 1 / 1 +  handleOffButtonConfirmMsgFromUIuserConfirmOffButton10 DEC 2019 6:02:13 PMPASS 1 / 1  broadcastAlarmStatus     broadcastAlarmTriggered     broadcastAlarmCleared    @@ -274,10 +274,10 @@  sendTestAckResponseMsg     handleTesterLogInRequest     handleTestHDMessageRequest    -  handleTestOffButtonStateOverrideRequesttestResetOffButtonStateOverride06 DEC 2019 6:10:03 PMPASS 3 / 3 -   testSetOffButtonStateOverride06 DEC 2019 6:10:03 PMPASS 3 / 3 -  handleTestStopButtonStateOverrideRequesttestResetStopButtonStateOverride06 DEC 2019 6:10:03 PMPASS 3 / 3 -   testSetStopButtonStateOverride06 DEC 2019 6:10:03 PMPASS 3 / 3 +  handleTestOffButtonStateOverrideRequesttestResetOffButtonStateOverride10 DEC 2019 6:02:13 PMPASS 3 / 3 +   testSetOffButtonStateOverride10 DEC 2019 6:02:13 PMPASS 3 / 3 +  handleTestStopButtonStateOverrideRequesttestResetStopButtonStateOverride10 DEC 2019 6:02:13 PMPASS 3 / 3 +   testSetStopButtonStateOverride10 DEC 2019 6:02:13 PMPASS 3 / 3  handleTestAlarmLampPatternOverrideRequest     handleTestWatchdogCheckInStateOverrideRequest     handleTestAlarmStateOverrideRequest    @@ -289,11 +289,11 @@  handleTestBloodPumpMeasuredCurrentOverrideRequest     handleTestBloodFlowBroadcastIntervalOverrideRequest    TOTALS265 PASS 5 / 5 - TaskPrioritytaskPriorityexecButtons06 DEC 2019 6:10:03 PMPASS 2 / 2 + TaskPrioritytaskPriorityexecButtons10 DEC 2019 6:02:13 PMPASS 2 / 2 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitButtons06 DEC 2019 6:10:03 PMPASS 9 / 9 +  initSoftwareinitButtons10 DEC 2019 6:02:13 PMPASS 9 / 9  initHardware     initTasks    TOTALS51 PASS 1 / 1 @@ -335,7 +335,7 @@  execStuckButtonTest71 / 1 (100%) -  userConfirmOffButton41 / 1 (100%) +  userConfirmOffButton81 / 1 (100%)  isCurrentOpModeOkToTurnOff21 / 1 (100%) @@ -359,7 +359,7 @@  testResetStopButtonStateOverride21 / 1 (100%) - TOTALS144413 / 14 (92%) + TOTALS144813 / 14 (92%) ModeInitPOSTinitInitAndPOSTMode10 / 1 (0%) @@ -488,7 +488,7 @@ TOTALS551 / 5 (20%) - GRAND TOTALS5212023 / 52 (44%) + GRAND TOTALS5212423 / 52 (44%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_COMMBUFFERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:42 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:41 PM
                                                                              @@ -272,13 +272,13 @@  transmitNextCANPacket     transmitNextUARTPacket     processIncomingData    -  consumeBufferPaddingBeforeSyncpeekAndgetFromAndNumberOfBytesInCommBuffer06 DEC 2019 6:10:26 PMPASS 15 / 15 +  consumeBufferPaddingBeforeSyncpeekAndgetFromAndNumberOfBytesInCommBuffer10 DEC 2019 6:02:38 PMPASS 15 / 15  parseMessageFromBuffer     processReceivedMessages     processReceivedMessage    TOTALS221 PASS 1 / 1 SystemCommMessagesserializeMessage    -  sendOffButtonMsgToUIaddToCommBuffer06 DEC 2019 6:10:26 PMPASS 11 / 11 +  sendOffButtonMsgToUIaddToCommBuffer10 DEC 2019 6:02:38 PMPASS 11 / 11  handleOffButtonConfirmMsgFromUI     broadcastAlarmStatus     broadcastAlarmTriggered    @@ -306,7 +306,7 @@ TOTALS261 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitCommBuffers06 DEC 2019 6:10:27 PMPASS 65 / 65 +  initSoftwareinitCommBuffers10 DEC 2019 6:02:38 PMPASS 65 / 65  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html =================================================================== diff -u --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html (revision 0) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -0,0 +1,474 @@ + + + + + Testcase Management Report + + + + +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              Testcase Management Report
                                                                              + +
                                                                              +

                                                                              Configuration Data

                                                                              + + + + +
                                                                              Environment NameINT_CPLD
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:42 PM
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Overall Results

                                                                              +
                                                                              + +
                                                                              + + + + + + + + + + + + + + +
                                                                              Testcases7 / 7 PASS
                                                                              Expecteds19 / 19 PASS
                                                                              Function Coverage24 / 46 (52%)
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Testcase Management

                                                                              +
                                                                              + +
                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              UnitSubprogramTest CasesExecution Date and TimePass/Fail
                                                                              <<COMPOUND>>    
                                                                              TOTALS    
                                                                              <<INIT>>    
                                                                              TOTALS    
                                                                              AlarmLampinitAlarmLamp   
                                                                               execAlarmLamp   
                                                                               requestAlarmLampPattern   
                                                                               getCurrentAlarmLampPattern   
                                                                               execAlarmLampTestsetCPLDLampGreen10 DEC 2019 6:03:03 PMPASS 4 / 4
                                                                                setCPLDLampRed10 DEC 2019 6:03:03 PMPASS 2 / 2
                                                                               setAlarmLampToPatternStep   
                                                                               testSetCurrentLampPatternOverride   
                                                                               testResetCurrentLampPatternOverride   
                                                                              TOTALS82 PASS 2 / 2
                                                                              ButtonsinitButtons   
                                                                               execButtonsgetCPLDOffAndStopButtons10 DEC 2019 6:03:03 PMPASS 2 / 2
                                                                               isStopButtonPressed   
                                                                               getOffButtonState   
                                                                               getStopButtonState   
                                                                               execStuckButtonTest   
                                                                               userConfirmOffButton   
                                                                               isCurrentOpModeOkToTurnOff   
                                                                               handleOffButtonProcessingtoggleCPLDOffRequest10 DEC 2019 6:03:03 PMPASS 4 / 4
                                                                               handleStopButtonProcessing   
                                                                               testSetOffButtonStateOverride   
                                                                               testResetOffButtonStateOverride   
                                                                               testSetStopButtonStateOverride   
                                                                               testResetStopButtonStateOverride   
                                                                              TOTALS142 PASS 2 / 2
                                                                              CPLDinitCPLD   
                                                                               toggleCPLDWatchdog   
                                                                               getCPLDWatchdogExpired   
                                                                               setCPLDLampGreen   
                                                                               setCPLDLampBlue   
                                                                               setCPLDLampRed   
                                                                               toggleCPLDOffRequest   
                                                                               getCPLDOffButton   
                                                                               getCPLDStopButton   
                                                                              TOTALS9   
                                                                              WatchdogMgmtinitWatchdogMgmt   
                                                                               execWatchdogMgmtgetCPLDWatchdogExpired10 DEC 2019 6:03:03 PMPASS 1 / 1
                                                                               checkInWithWatchdogMgmt   
                                                                               execWatchdogTest   
                                                                               resetWDTaskCheckIns   
                                                                               haveAllTasksCheckedIn   
                                                                               hasTaskGeneralCheckedIn   
                                                                               petWatchdogtoggleCPLDWatchdog10 DEC 2019 6:03:03 PMPASS 1 / 1
                                                                               testSetWatchdogTaskCheckInOverride   
                                                                               testResetWatchdogTaskCheckInOverride   
                                                                              TOTALS102 PASS 2 / 2
                                                                              sys_mainmain   
                                                                               initProcessor   
                                                                               initSoftwareinitCPLD10 DEC 2019 6:03:03 PMPASS 5 / 5
                                                                               initHardware   
                                                                               initTasks   
                                                                              TOTALS51 PASS 1 / 1
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Metrics

                                                                              +
                                                                              + +
                                                                              +

                                                                              Function

                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              UnitSubprogramComplexityFunctions
                                                                              AlarmLampinitAlarmLamp11 / 1 (100%)
                                                                               execAlarmLamp50 / 1 (0%)
                                                                               requestAlarmLampPattern20 / 1 (0%)
                                                                               getCurrentAlarmLampPattern20 / 1 (0%)
                                                                               execAlarmLampTest91 / 1 (100%)
                                                                               setAlarmLampToPatternStep40 / 1 (0%)
                                                                               testSetCurrentLampPatternOverride20 / 1 (0%)
                                                                               testResetCurrentLampPatternOverride20 / 1 (0%)
                                                                              TOTALS8272 / 8 (25%)
                                                                              ButtonsinitButtons11 / 1 (100%)
                                                                               execButtons31 / 1 (100%)
                                                                               isStopButtonPressed10 / 1 (0%)
                                                                               getOffButtonState21 / 1 (100%)
                                                                               getStopButtonState21 / 1 (100%)
                                                                               execStuckButtonTest70 / 1 (0%)
                                                                               userConfirmOffButton80 / 1 (0%)
                                                                               isCurrentOpModeOkToTurnOff21 / 1 (100%)
                                                                               handleOffButtonProcessing91 / 1 (100%)
                                                                               handleStopButtonProcessing51 / 1 (100%)
                                                                               testSetOffButtonStateOverride20 / 1 (0%)
                                                                               testResetOffButtonStateOverride20 / 1 (0%)
                                                                               testSetStopButtonStateOverride20 / 1 (0%)
                                                                               testResetStopButtonStateOverride20 / 1 (0%)
                                                                              TOTALS14487 / 14 (50%)
                                                                              CPLDinitCPLD11 / 1 (100%)
                                                                               toggleCPLDWatchdog11 / 1 (100%)
                                                                               getCPLDWatchdogExpired11 / 1 (100%)
                                                                               setCPLDLampGreen21 / 1 (100%)
                                                                               setCPLDLampBlue20 / 1 (0%)
                                                                               setCPLDLampRed21 / 1 (100%)
                                                                               toggleCPLDOffRequest11 / 1 (100%)
                                                                               getCPLDOffButton11 / 1 (100%)
                                                                               getCPLDStopButton11 / 1 (100%)
                                                                              TOTALS9128 / 9 (88%)
                                                                              WatchdogMgmtinitWatchdogMgmt21 / 1 (100%)
                                                                               execWatchdogMgmt31 / 1 (100%)
                                                                               checkInWithWatchdogMgmt21 / 1 (100%)
                                                                               execWatchdogTest60 / 1 (0%)
                                                                               resetWDTaskCheckIns20 / 1 (0%)
                                                                               haveAllTasksCheckedIn31 / 1 (100%)
                                                                               hasTaskGeneralCheckedIn31 / 1 (100%)
                                                                               petWatchdog11 / 1 (100%)
                                                                               testSetWatchdogTaskCheckInOverride30 / 1 (0%)
                                                                               testResetWatchdogTaskCheckInOverride30 / 1 (0%)
                                                                              TOTALS10286 / 10 (60%)
                                                                              sys_mainmain10 / 1 (0%)
                                                                               initProcessor10 / 1 (0%)
                                                                               initSoftware11 / 1 (100%)
                                                                               initHardware10 / 1 (0%)
                                                                               initTasks10 / 1 (0%)
                                                                              TOTALS551 / 5 (20%)
                                                                              GRAND TOTALS4612024 / 46 (52%)
                                                                              +
                                                                              + +
                                                                              + + \ No newline at end of file Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_FPGA
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:44 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:44 PM
                                                                              @@ -240,7 +240,7 @@ TOTALS     ModeInitPOSTinitInitAndPOSTMode     transitionToInitAndPOSTMode    -  execInitAndPOSTModeexecFPGATest06 DEC 2019 6:10:53 PMPASS 5 / 5 +  execInitAndPOSTModeexecFPGATest10 DEC 2019 6:03:29 PMPASS 5 / 5  isPOSTCompleted     isPOSTPassed     handlePOSTStatus    @@ -276,14 +276,14 @@  canMessageNotification     canErrorNotification     sciNotification    -  dmaGroupANotificationsignalFPGAReceiptCompleted06 DEC 2019 6:10:53 PMPASS 3 / 3 -   signalFPGATransmitCompleted06 DEC 2019 6:10:53 PMPASS 1 / 1 +  dmaGroupANotificationsignalFPGAReceiptCompleted10 DEC 2019 6:03:29 PMPASS 3 / 3 +   signalFPGATransmitCompleted10 DEC 2019 6:03:29 PMPASS 1 / 1 TOTALS52 PASS 2 / 2 - TaskPrioritytaskPriorityexecFPGAInAndOut06 DEC 2019 6:10:53 PMPASS 1 / 1 + TaskPrioritytaskPriorityexecFPGAInAndOut10 DEC 2019 6:03:29 PMPASS 1 / 1 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitFPGA06 DEC 2019 6:10:53 PMPASS 23 / 23 +  initSoftwareinitFPGA10 DEC 2019 6:03:29 PMPASS 23 / 23  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_MSGQUEUES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:45 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:46 PM
                                                                              @@ -271,14 +271,14 @@  findNextHighestPriorityCANPacketToTransmit     transmitNextCANPacket     transmitNextUARTPacket    -  processIncomingDataaddToMsgQueue06 DEC 2019 6:11:18 PMPASS 9 / 9 +  processIncomingDataaddToMsgQueue10 DEC 2019 6:03:53 PMPASS 9 / 9  consumeBufferPaddingBeforeSync     parseMessageFromBuffer    -  processReceivedMessagesgetFromMsgQueue06 DEC 2019 6:11:18 PMPASS 3 / 3 +  processReceivedMessagesgetFromMsgQueue10 DEC 2019 6:03:53 PMPASS 3 / 3  processReceivedMessage    TOTALS222 PASS 2 / 2 SystemCommMessagesserializeMessage    -  sendOffButtonMsgToUIblankMessage06 DEC 2019 6:11:18 PMPASS 10 / 10 +  sendOffButtonMsgToUIblankMessage10 DEC 2019 6:03:53 PMPASS 10 / 10  handleOffButtonConfirmMsgFromUI     broadcastAlarmStatus     broadcastAlarmTriggered    @@ -306,7 +306,7 @@ TOTALS261 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitMsgQueues06 DEC 2019 6:11:18 PMPASS 3 / 3 +  initSoftwareinitMsgQueues10 DEC 2019 6:03:53 PMPASS 3 / 3  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_OPERATIONMODES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:46 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:47 PM
                                                                              @@ -244,7 +244,7 @@  getOffButtonState     getStopButtonState     execStuckButtonTest    -  userConfirmOffButtongetCurrentOperationMode06 DEC 2019 6:11:41 PMPASS 1 / 1 +  userConfirmOffButtongetCurrentOperationMode10 DEC 2019 6:04:18 PMPASS 1 / 1  isCurrentOpModeOkToTurnOff     handleOffButtonProcessing     handleStopButtonProcessing    @@ -255,7 +255,7 @@ TOTALS141 PASS 1 / 1 ModeInitPOSTinitInitAndPOSTMode     transitionToInitAndPOSTMode    -  execInitAndPOSTModerequestNewOperationMode06 DEC 2019 6:11:41 PMPASS 4 / 4 +  execInitAndPOSTModerequestNewOperationMode10 DEC 2019 6:04:18 PMPASS 4 / 4  isPOSTCompleted     isPOSTPassed     handlePOSTStatus    @@ -267,11 +267,11 @@  arbitrateModeRequest     transitionToNewOperationMode    TOTALS6    - TaskGeneraltaskGeneralexecOperationModes06 DEC 2019 6:11:41 PMPASS 1 / 1 + TaskGeneraltaskGeneralexecOperationModes10 DEC 2019 6:04:18 PMPASS 1 / 1 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitOperationModes06 DEC 2019 6:11:41 PMPASS 4 / 4 +  initSoftwareinitOperationModes10 DEC 2019 6:04:18 PMPASS 4 / 4  initHardware     initTasks    TOTALS51 PASS 1 / 1 @@ -313,7 +313,7 @@  execStuckButtonTest70 / 1 (0%) -  userConfirmOffButton41 / 1 (100%) +  userConfirmOffButton81 / 1 (100%)  isCurrentOpModeOkToTurnOff21 / 1 (100%) @@ -337,7 +337,7 @@  testResetStopButtonStateOverride20 / 1 (0%) - TOTALS14443 / 14 (21%) + TOTALS14483 / 14 (21%) ModeInitPOSTinitInitAndPOSTMode11 / 1 (100%) @@ -406,7 +406,7 @@ TOTALS551 / 5 (20%) - GRAND TOTALS329814 / 32 (43%) + GRAND TOTALS3210214 / 32 (43%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html =================================================================== diff -u --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html (revision 0) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -0,0 +1,305 @@ + + + + + Testcase Management Report + + + + +
                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              Testcase Management Report
                                                                              + +
                                                                              +

                                                                              Configuration Data

                                                                              + + + + +
                                                                              Environment NameINT_SAFETYSHUTDOWN
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:49 PM
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Overall Results

                                                                              +
                                                                              + +
                                                                              + + + + + + + + + + + + + + +
                                                                              Testcases1 / 1 PASS
                                                                              Expecteds2 / 2 PASS
                                                                              Function Coverage2 / 7 (28%)
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Testcase Management

                                                                              +
                                                                              + +
                                                                              + + + + + + + + + + + + + + + + + + + + + +
                                                                              UnitSubprogramTest CasesExecution Date and TimePass/Fail
                                                                              <<COMPOUND>>    
                                                                              TOTALS    
                                                                              <<INIT>>    
                                                                              TOTALS    
                                                                              SafetyShutdowninitSafetyShutdown   
                                                                               activateSafetyShutdown   
                                                                              TOTALS2   
                                                                              sys_mainmain   
                                                                               initProcessor   
                                                                               initSoftwareinitSafetyShutdown10 DEC 2019 6:04:34 PMPASS 2 / 2
                                                                               initHardware   
                                                                               initTasks   
                                                                              TOTALS51 PASS 1 / 1
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +

                                                                              Metrics

                                                                              +
                                                                              + +
                                                                              +

                                                                              Function

                                                                              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                              UnitSubprogramComplexityFunctions
                                                                              SafetyShutdowninitSafetyShutdown11 / 1 (100%)
                                                                               activateSafetyShutdown10 / 1 (0%)
                                                                              TOTALS221 / 2 (50%)
                                                                              sys_mainmain10 / 1 (0%)
                                                                               initProcessor10 / 1 (0%)
                                                                               initSoftware11 / 1 (100%)
                                                                               initHardware10 / 1 (0%)
                                                                               initTasks10 / 1 (0%)
                                                                              TOTALS551 / 5 (20%)
                                                                              GRAND TOTALS772 / 7 (28%)
                                                                              +
                                                                              + +
                                                                              + + \ No newline at end of file Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_SYSTEMCOMMMESSAGES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:50 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:52 PM
                                                                              @@ -246,9 +246,9 @@  execStuckButtonTest     userConfirmOffButton     isCurrentOpModeOkToTurnOff    -  handleOffButtonProcessingsendOffButtonMsgToUI06 DEC 2019 6:12:35 PMPASS 11 / 11 +  handleOffButtonProcessingsendOffButtonMsgToUI10 DEC 2019 6:05:30 PMPASS 11 / 11  handleStopButtonProcessing    -  testSetOffButtonStateOverrideisTestingActivated06 DEC 2019 6:12:35 PMPASS 1 / 1 +  testSetOffButtonStateOverrideisTestingActivated10 DEC 2019 6:05:30 PMPASS 1 / 1  testResetOffButtonStateOverride     testSetStopButtonStateOverride     testResetStopButtonStateOverride    @@ -290,13 +290,13 @@  consumeBufferPaddingBeforeSync     parseMessageFromBuffer     processReceivedMessages    -  processReceivedMessagehandleOffButtonConfirmMsgFromUI06 DEC 2019 6:12:35 PMPASS 1 / 1 -   handleTestAlarmLampPatternOverrideRequest06 DEC 2019 6:12:35 PMPASS 1 / 1 -   handleTestHDMessageRequest06 DEC 2019 6:12:35 PMPASS 7 / 7 -   handleTestOffButtonStateOverrideRequest06 DEC 2019 6:12:36 PMPASS 3 / 3 -   handleTestStopButtonStateOverrideRequest06 DEC 2019 6:12:36 PMPASS 3 / 3 -   handleTestWatchdogCheckInStateOverrideRequest06 DEC 2019 6:12:36 PMPASS 2 / 2 -   handleTesterLogInRequest06 DEC 2019 6:12:36 PMPASS 1 / 1 +  processReceivedMessagehandleOffButtonConfirmMsgFromUI10 DEC 2019 6:05:30 PMPASS 1 / 1 +   handleTestAlarmLampPatternOverrideRequest10 DEC 2019 6:05:30 PMPASS 1 / 1 +   handleTestHDMessageRequest10 DEC 2019 6:05:30 PMPASS 7 / 7 +   handleTestOffButtonStateOverrideRequest10 DEC 2019 6:05:30 PMPASS 3 / 3 +   handleTestStopButtonStateOverrideRequest10 DEC 2019 6:05:30 PMPASS 3 / 3 +   handleTestWatchdogCheckInStateOverrideRequest10 DEC 2019 6:05:30 PMPASS 2 / 2 +   handleTesterLogInRequest10 DEC 2019 6:05:30 PMPASS 1 / 1 TOTALS227 PASS 7 / 7 SystemCommMessagesserializeMessage     sendOffButtonMsgToUI    @@ -363,7 +363,7 @@  execStuckButtonTest70 / 1 (0%) -  userConfirmOffButton41 / 1 (100%) +  userConfirmOffButton81 / 1 (100%)  isCurrentOpModeOkToTurnOff21 / 1 (100%) @@ -387,7 +387,7 @@  testResetStopButtonStateOverride20 / 1 (0%) - TOTALS14446 / 14 (42%) + TOTALS14486 / 14 (42%) CommBuffersinitCommBuffers40 / 1 (0%) @@ -588,7 +588,7 @@ TOTALS265311 / 26 (42%) - GRAND TOTALS7621722 / 76 (28%) + GRAND TOTALS7622122 / 76 (28%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_SYSTEMCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:48 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:50 PM
                                                                              @@ -247,11 +247,11 @@  getDataFromInactiveBuffer    TOTALS7    InterruptsphantomInterrupt    -  canMessageNotificationhandleCANMsgInterrupt06 DEC 2019 6:12:11 PMPASS 12 / 12 +  canMessageNotificationhandleCANMsgInterrupt10 DEC 2019 6:05:05 PMPASS 12 / 12  canErrorNotification     sciNotification    -  dmaGroupANotificationhandleUARTMsgRecvPacketInterrupt06 DEC 2019 6:12:11 PMPASS 10 / 10 -   handleUARTMsgXmitPacketInterrupt06 DEC 2019 6:12:11 PMPASS 6 / 6 +  dmaGroupANotificationhandleUARTMsgRecvPacketInterrupt10 DEC 2019 6:05:05 PMPASS 10 / 10 +   handleUARTMsgXmitPacketInterrupt10 DEC 2019 6:05:05 PMPASS 6 / 6 TOTALS53 PASS 3 / 3 MsgQueuesinitMsgQueues     addToMsgQueue    @@ -311,11 +311,11 @@  handleTestBloodPumpMeasuredCurrentOverrideRequest     handleTestBloodFlowBroadcastIntervalOverrideRequest    TOTALS26    - TaskGeneraltaskGeneralexecSystemCommRxAndTx06 DEC 2019 6:12:11 PMPASS 6 / 6 + TaskGeneraltaskGeneralexecSystemCommRxAndTx10 DEC 2019 6:05:05 PMPASS 6 / 6 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitSystemComm06 DEC 2019 6:12:11 PMPASS 14 / 14 +  initSoftwareinitSystemComm10 DEC 2019 6:05:05 PMPASS 14 / 14  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_TIMERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:51 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:53 PM
                                                                              @@ -245,7 +245,7 @@  calcTimeSince    TOTALS5    WatchdogMgmtinitWatchdogMgmt    -  execWatchdogMgmtdidTimeout06 DEC 2019 6:12:57 PMPASS 5 / 5 +  execWatchdogMgmtdidTimeout10 DEC 2019 6:05:52 PMPASS 5 / 5  checkInWithWatchdogMgmt     execWatchdogTest     resetWDTaskCheckIns    @@ -255,11 +255,11 @@  testSetWatchdogTaskCheckInOverride     testResetWatchdogTaskCheckInOverride    TOTALS101 PASS 1 / 1 - TaskTimertaskTimerincMSTimerCount06 DEC 2019 6:12:57 PMPASS 1 / 1 + TaskTimertaskTimerincMSTimerCount10 DEC 2019 6:05:52 PMPASS 1 / 1 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitTimers06 DEC 2019 6:12:57 PMPASS 1 / 1 +  initSoftwareinitTimers10 DEC 2019 6:05:52 PMPASS 1 / 1  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_UTILITIES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:53 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:55 PM
                                                                              @@ -244,7 +244,7 @@  signalFPGATransmitCompleted     execFPGAIn     execFPGAOut    -  handleFPGAReadHeaderStatecrc1606 DEC 2019 6:13:11 PMPASS 7 / 7 +  handleFPGAReadHeaderStatecrc1610 DEC 2019 6:06:08 PMPASS 7 / 7  handleFPGAReceiveHeaderState     handleFPGAWriteAllActuatorsState     handleFPGAReceiveAllSensorsState    Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameINT_WATCHDOGMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:54 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:56 PM
                                                                              @@ -240,7 +240,7 @@ TOTALS     ModeInitPOSTinitInitAndPOSTMode     transitionToInitAndPOSTMode    -  execInitAndPOSTModeexecWatchdogTest06 DEC 2019 6:13:36 PMPASS 4 / 4 +  execInitAndPOSTModeexecWatchdogTest10 DEC 2019 6:06:36 PMPASS 4 / 4  isPOSTCompleted     isPOSTPassed     handlePOSTStatus    @@ -262,8 +262,8 @@  handleTestOffButtonStateOverrideRequest     handleTestStopButtonStateOverrideRequest     handleTestAlarmLampPatternOverrideRequest    -  handleTestWatchdogCheckInStateOverrideRequesttestResetWatchdogTaskCheckInOverride06 DEC 2019 6:13:36 PMPASS 4 / 4 -   testSetWatchdogTaskCheckInOverride06 DEC 2019 6:13:36 PMPASS 4 / 4 +  handleTestWatchdogCheckInStateOverrideRequesttestResetWatchdogTaskCheckInOverride10 DEC 2019 6:06:36 PMPASS 4 / 4 +   testSetWatchdogTaskCheckInOverride10 DEC 2019 6:06:36 PMPASS 4 / 4  handleTestAlarmStateOverrideRequest     handleTestAlarmTimeOverrideRequest     handleTestAlarmStatusBroadcastIntervalOverrideRequest    @@ -284,13 +284,13 @@  testSetWatchdogTaskCheckInOverride     testResetWatchdogTaskCheckInOverride    TOTALS10    - TaskBGtaskBackgroundexecWatchdogMgmt06 DEC 2019 6:13:36 PMPASS 7 / 7 + TaskBGtaskBackgroundexecWatchdogMgmt10 DEC 2019 6:06:36 PMPASS 7 / 7 TOTALS11 PASS 1 / 1 - TaskTimertaskTimercheckInWithWatchdogMgmt06 DEC 2019 6:13:36 PMPASS 1 / 1 + TaskTimertaskTimercheckInWithWatchdogMgmt10 DEC 2019 6:06:36 PMPASS 1 / 1 TOTALS11 PASS 1 / 1 sys_mainmain     initProcessor    -  initSoftwareinitWatchdogMgmt06 DEC 2019 6:13:36 PMPASS 19 / 19 +  initSoftwareinitWatchdogMgmt10 DEC 2019 6:06:36 PMPASS 19 / 19  initHardware     initTasks    TOTALS51 PASS 1 / 1 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameMSGQUEUES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:56 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:58 PM
                                                                              @@ -248,23 +248,23 @@ TOTALS     <<INIT>>     TOTALS     - MsgQueuesinitMsgQueuesNominalPath06 DEC 2019 6:13:47 PMPASS 4 / 4 -  addToMsgQueueInvalidQueue06 DEC 2019 6:13:47 PMPASS 4 / 4 -   QueueFull06 DEC 2019 6:13:47 PMPASS 4 / 4 -   SuccessfulAdd06 DEC 2019 6:13:47 PMPASS 7 / 7 -   SuccessfulAddWithWrap06 DEC 2019 6:13:47 PMPASS 7 / 7 -  getFromMsgQueueInvalidQueue06 DEC 2019 6:13:47 PMPASS 4 / 4 -   QueueEmpty06 DEC 2019 6:13:47 PMPASS 4 / 4 -   SuccessfulGet06 DEC 2019 6:13:47 PMPASS 4 / 4 -   SuccessfulGetWithWrap06 DEC 2019 6:13:47 PMPASS 4 / 4 -  isMsgQueueEmptyInvalidQueue06 DEC 2019 6:13:47 PMPASS 1 / 1 -   QueueEmpty06 DEC 2019 6:13:47 PMPASS 2 / 2 -   QueueNotEmpty06 DEC 2019 6:13:47 PMPASS 2 / 2 -  isMsgQueueFullInvalidQueue06 DEC 2019 6:13:47 PMPASS 1 / 1 -   QueueFull06 DEC 2019 6:13:47 PMPASS 2 / 2 -   QueueNotFull06 DEC 2019 6:13:47 PMPASS 2 / 2 -  blankMessageNominalPath06 DEC 2019 6:13:47 PMPASS 1 / 1 -  blankMessageInWrapperNominalPath06 DEC 2019 6:13:47 PMPASS 1 / 1 + MsgQueuesinitMsgQueuesNominalPath10 DEC 2019 6:06:49 PMPASS 4 / 4 +  addToMsgQueueInvalidQueue10 DEC 2019 6:06:49 PMPASS 4 / 4 +   QueueFull10 DEC 2019 6:06:49 PMPASS 4 / 4 +   SuccessfulAdd10 DEC 2019 6:06:49 PMPASS 7 / 7 +   SuccessfulAddWithWrap10 DEC 2019 6:06:49 PMPASS 7 / 7 +  getFromMsgQueueInvalidQueue10 DEC 2019 6:06:49 PMPASS 4 / 4 +   QueueEmpty10 DEC 2019 6:06:49 PMPASS 4 / 4 +   SuccessfulGet10 DEC 2019 6:06:49 PMPASS 4 / 4 +   SuccessfulGetWithWrap10 DEC 2019 6:06:49 PMPASS 4 / 4 +  isMsgQueueEmptyInvalidQueue10 DEC 2019 6:06:49 PMPASS 1 / 1 +   QueueEmpty10 DEC 2019 6:06:49 PMPASS 2 / 2 +   QueueNotEmpty10 DEC 2019 6:06:49 PMPASS 2 / 2 +  isMsgQueueFullInvalidQueue10 DEC 2019 6:06:49 PMPASS 1 / 1 +   QueueFull10 DEC 2019 6:06:49 PMPASS 2 / 2 +   QueueNotFull10 DEC 2019 6:06:49 PMPASS 2 / 2 +  blankMessageNominalPath10 DEC 2019 6:06:49 PMPASS 1 / 1 +  blankMessageInWrapperNominalPath10 DEC 2019 6:06:49 PMPASS 1 / 1 TOTALS717 PASS 17 / 17 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameOPERATIONMODES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:57 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:08:59 PM
                                                                              @@ -215,7 +215,7 @@ Statement Coverage - 112 / 112 (100%) + 114 / 114 (100%) @@ -248,32 +248,32 @@ TOTALS     <<INIT>>     TOTALS     - OperationModesinitOperationModesNominalPath06 DEC 2019 6:13:59 PMPASS 10 / 10 -  execOperationModesInitPOSTToStandbyMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   InvalidMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   InvalidModeChange06 DEC 2019 6:13:59 PMPASS 1 / 1 -   OpParamsToPreTreatMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   PreTreatToTreatmentMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   PrescriptionToOpParamsMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   StandbyToPrescriptionMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   StandbyToServiceMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   TreatmentToFaultMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -   TreatmentToPostTreatMode06 DEC 2019 6:13:59 PMPASS 1 / 1 -  requestNewOperationModeInvalidModeRequested06 DEC 2019 6:13:59 PMPASS 1 / 1 -   ValidModeRequested06 DEC 2019 6:13:59 PMPASS 2 / 2 -  getCurrentOperationModeNominalPath06 DEC 2019 6:13:59 PMPASS 1 / 1 -  arbitrateModeRequestNoRequestPending06 DEC 2019 6:13:59 PMPASS 10 / 10 -   RequestPending06 DEC 2019 6:13:59 PMPASS 10 / 10 -  transitionToNewOperationModeFaultMode06 DEC 2019 6:13:59 PMPASS -   InitPOSTMode06 DEC 2019 6:13:59 PMPASS -   InvalidMode06 DEC 2019 6:13:59 PMPASS -   OpParamsMode06 DEC 2019 6:13:59 PMPASS -   PostTreatmentMode06 DEC 2019 6:13:59 PMPASS -   PreTreatmentMode06 DEC 2019 6:13:59 PMPASS -   PrescriptionMode06 DEC 2019 6:13:59 PMPASS -   ServiceMode06 DEC 2019 6:13:59 PMPASS -   StandbyMode06 DEC 2019 6:13:59 PMPASS -   TreatmentMode06 DEC 2019 6:13:59 PMPASS + OperationModesinitOperationModesNominalPath10 DEC 2019 6:07:02 PMPASS 10 / 10 +  execOperationModesInitPOSTToStandbyMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   InvalidMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   InvalidModeChange10 DEC 2019 6:07:02 PMPASS 1 / 1 +   OpParamsToPreTreatMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   PreTreatToTreatmentMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   PrescriptionToOpParamsMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   StandbyToPrescriptionMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   StandbyToServiceMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   TreatmentToFaultMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +   TreatmentToPostTreatMode10 DEC 2019 6:07:02 PMPASS 1 / 1 +  requestNewOperationModeInvalidModeRequested10 DEC 2019 6:07:02 PMPASS 1 / 1 +   ValidModeRequested10 DEC 2019 6:07:02 PMPASS 2 / 2 +  getCurrentOperationModeNominalPath10 DEC 2019 6:07:02 PMPASS 1 / 1 +  arbitrateModeRequestNoRequestPending10 DEC 2019 6:07:02 PMPASS 10 / 10 +   RequestPending10 DEC 2019 6:07:02 PMPASS 10 / 10 +  transitionToNewOperationModeFaultMode10 DEC 2019 6:07:02 PMPASS +   InitPOSTMode10 DEC 2019 6:07:02 PMPASS +   InvalidMode10 DEC 2019 6:07:02 PMPASS +   OpParamsMode10 DEC 2019 6:07:02 PMPASS +   PostTreatmentMode10 DEC 2019 6:07:02 PMPASS +   PreTreatmentMode10 DEC 2019 6:07:02 PMPASS +   PrescriptionMode10 DEC 2019 6:07:02 PMPASS +   ServiceMode10 DEC 2019 6:07:02 PMPASS +   StandbyMode10 DEC 2019 6:07:02 PMPASS +   TreatmentMode10 DEC 2019 6:07:02 PMPASS TOTALS626 PASS 26 / 26 @@ -307,16 +307,16 @@  getCurrentOperationMode11 / 1 (100%)1 / 1 (100%) -  arbitrateModeRequest48 / 8 (100%)13 / 13 (100%)3 / 3 (100%) +  arbitrateModeRequest410 / 10 (100%)13 / 13 (100%)3 / 3 (100%)  transitionToNewOperationMode1035 / 35 (100%)11 / 11 (100%) - TOTALS631112 / 112 (100%)54 / 54 (100%)7 / 7 (100%) + TOTALS631114 / 114 (100%)54 / 54 (100%)7 / 7 (100%) - GRAND TOTALS631112 / 112 (100%)54 / 54 (100%)7 / 7 (100%) + GRAND TOTALS631114 / 114 (100%)54 / 54 (100%)7 / 7 (100%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSAFETYSHUTDOWN
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:15:59 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:01 PM
                                                                              @@ -248,8 +248,8 @@ TOTALS     <<INIT>>     TOTALS     - SafetyShutdowninitSafetyShutdowninitSafetyShutdown_NominalPath06 DEC 2019 6:14:10 PMPASS 2 / 2 -  activateSafetyShutdownactivateSafetyShutdown_NominalPath06 DEC 2019 6:14:10 PMPASS 2 / 2 + SafetyShutdowninitSafetyShutdowninitSafetyShutdown_NominalPath10 DEC 2019 6:07:15 PMPASS 2 / 2 +  activateSafetyShutdownactivateSafetyShutdown_NominalPath10 DEC 2019 6:07:15 PMPASS 2 / 2 TOTALS22 PASS 2 / 2 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSYSTEMCOMMMESSAGES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:02 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:04 PM
                                                                              @@ -210,7 +210,7 @@ Expecteds - 324 / 324 PASS + 333 / 333 PASS Control Flow @@ -219,7 +219,7 @@ Statement Coverage - 173 / 173 (100%) + 177 / 177 (100%) @@ -252,61 +252,61 @@ TOTALS     <<INIT>>     TOTALS     - SystemCommMessagesserializeMessageserializeMessage_MessageNeedsPadding06 DEC 2019 6:14:38 PMPASS 1 / 1 -   serializeMessage_NominalPath06 DEC 2019 6:14:38 PMPASS 1 / 1 -  sendOffButtonMsgToUIsendOffButtonMsgToUI_NominalPath06 DEC 2019 6:14:38 PMPASS 3 / 3 -  handleOffButtonConfirmMsgFromUIhandleOffButtonConfirmMsgFromUI_NominalPath06 DEC 2019 6:14:38 PMPASS 1 / 1 -  broadcastAlarmStatusbroadcastAlarmStatus_NominalPath06 DEC 2019 6:14:38 PMPASS 63 / 63 -  broadcastAlarmTriggeredbroadcastAlarmTriggered_NominalPath06 DEC 2019 6:14:38 PMPASS 27 / 27 -  broadcastAlarmClearedbroadcastAlarmCleared_NominalPath06 DEC 2019 6:14:39 PMPASS 11 / 11 -  broadcastBloodFlowDatabroadcastBloodFlowData_NominalPath06 DEC 2019 6:14:39 PMPASS 23 / 23 -  handleDGCheckInhandleDGCheckIn_NominalPath06 DEC 2019 6:14:39 PMPASS -  handleUICheckInhandleUICheckIn_NominalPath06 DEC 2019 6:14:39 PMPASS -  sendDebugDatasendDebugData_NominalPath06 DEC 2019 6:14:39 PMPASS 11 / 11 -  isTestingActivatedNominalPath06 DEC 2019 6:14:39 PMPASS 1 / 1 -  sendTestAckResponseMsgsendTestAckResponseMsg_NominalPath06 DEC 2019 6:14:39 PMPASS 12 / 12 -  handleTesterLogInRequesthandleTesterLogInRequest_LoginSuccessful06 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong006 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong106 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong206 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength06 DEC 2019 6:14:39 PMPASS 1 / 1 -  handleTestHDMessageRequesthandleTestHDMessageRequest_NominalPath06 DEC 2019 6:14:39 PMPASS 3 / 3 -  handleTestOffButtonStateOverrideRequesthandleTestOffButtonStateOverrideRequest_InvalidPayloadLength06 DEC 2019 6:14:39 PMPASS -   handleTestOffButtonStateOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTestOffButtonStateOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS -  handleTestStopButtonStateOverrideRequesthandleTestStopButtonStateOverrideRequest_InvalidPayloadLength06 DEC 2019 6:14:39 PMPASS -   handleTestStopButtonStateOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTestStopButtonStateOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS -  handleTestAlarmLampPatternOverrideRequesthandleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength06 DEC 2019 6:14:39 PMPASS -   handleTestAlarmLampPatternOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 1 / 1 -   handleTestAlarmLampPatternOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS -  handleTestWatchdogCheckInStateOverrideRequesthandleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength06 DEC 2019 6:14:39 PMPASS -   handleTestWatchdogCheckInStateOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 2 / 2 -   handleTestWatchdogCheckInStateOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 1 / 1 -  handleTestAlarmStateOverrideRequesthandleTestAlarmStateOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestAlarmStateOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 8 / 8 -   handleTestAlarmStateOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 7 / 7 -  handleTestAlarmTimeOverrideRequesthandleTestAlarmTimeOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestAlarmTimeOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 8 / 8 -   handleTestAlarmTimeOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 7 / 7 -  handleTestAlarmStatusBroadcastIntervalOverrideRequesthandleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 7 / 7 -   handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 6 / 6 -  handleTestBloodFlowSetPointOverrideRequesthandleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestBloodFlowSetPointOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 7 / 7 -   handleTestBloodFlowSetPointOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 6 / 6 -  handleTestBloodFlowMeasuredOverrideRequesthandleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestBloodFlowMeasuredOverrideRequest_Override06 DEC 2019 6:14:39 PMPASS 7 / 7 -   handleTestBloodFlowMeasuredOverrideRequest_Reset06 DEC 2019 6:14:39 PMPASS 6 / 6 -  handleTestBloodPumpMeasuredSpeedOverrideRequesthandleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:39 PMPASS 6 / 6 -   handleTestBloodPumpMeasuredSpeedOverrideRequest_Override06 DEC 2019 6:14:40 PMPASS 7 / 7 -   handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset06 DEC 2019 6:14:40 PMPASS 6 / 6 -  handleTestBloodPumpMeasuredCurrentOverrideRequesthandleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:40 PMPASS 6 / 6 -   handleTestBloodPumpMeasuredCurrentOverrideRequest_Override06 DEC 2019 6:14:40 PMPASS 7 / 7 -   handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset06 DEC 2019 6:14:40 PMPASS 6 / 6 -  handleTestBloodFlowBroadcastIntervalOverrideRequesthandleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen06 DEC 2019 6:14:40 PMPASS 6 / 6 -   handleTestBloodFlowBroadcastIntervalOverrideRequest_Override06 DEC 2019 6:14:40 PMPASS 7 / 7 -   handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset06 DEC 2019 6:14:40 PMPASS 6 / 6 + SystemCommMessagesserializeMessageserializeMessage_MessageNeedsPadding10 DEC 2019 6:07:38 PMPASS 1 / 1 +   serializeMessage_NominalPath10 DEC 2019 6:07:38 PMPASS 1 / 1 +  sendOffButtonMsgToUIsendOffButtonMsgToUI_NominalPath10 DEC 2019 6:07:38 PMPASS 3 / 3 +  handleOffButtonConfirmMsgFromUIhandleOffButtonConfirmMsgFromUI_NominalPath10 DEC 2019 6:07:38 PMPASS 1 / 1 +  broadcastAlarmStatusbroadcastAlarmStatus_NominalPath10 DEC 2019 6:07:38 PMPASS 63 / 63 +  broadcastAlarmTriggeredbroadcastAlarmTriggered_NominalPath10 DEC 2019 6:07:38 PMPASS 27 / 27 +  broadcastAlarmClearedbroadcastAlarmCleared_NominalPath10 DEC 2019 6:07:38 PMPASS 11 / 11 +  broadcastBloodFlowDatabroadcastBloodFlowData_NominalPath10 DEC 2019 6:07:38 PMPASS 31 / 31 +  handleDGCheckInhandleDGCheckIn_NominalPath10 DEC 2019 6:07:38 PMPASS +  handleUICheckInhandleUICheckIn_NominalPath10 DEC 2019 6:07:38 PMPASS +  sendDebugDatasendDebugData_NominalPath10 DEC 2019 6:07:38 PMPASS 11 / 11 +  isTestingActivatedNominalPath10 DEC 2019 6:07:38 PMPASS 1 / 1 +  sendTestAckResponseMsgsendTestAckResponseMsg_NominalPath10 DEC 2019 6:07:38 PMPASS 12 / 12 +  handleTesterLogInRequesthandleTesterLogInRequest_LoginSuccessful10 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong010 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong110 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong210 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength10 DEC 2019 6:07:38 PMPASS 1 / 1 +  handleTestHDMessageRequesthandleTestHDMessageRequest_NominalPath10 DEC 2019 6:07:38 PMPASS 3 / 3 +  handleTestOffButtonStateOverrideRequesthandleTestOffButtonStateOverrideRequest_InvalidPayloadLength10 DEC 2019 6:07:38 PMPASS +   handleTestOffButtonStateOverrideRequest_Override10 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTestOffButtonStateOverrideRequest_Reset10 DEC 2019 6:07:38 PMPASS +  handleTestStopButtonStateOverrideRequesthandleTestStopButtonStateOverrideRequest_InvalidPayloadLength10 DEC 2019 6:07:38 PMPASS +   handleTestStopButtonStateOverrideRequest_Override10 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTestStopButtonStateOverrideRequest_Reset10 DEC 2019 6:07:38 PMPASS +  handleTestAlarmLampPatternOverrideRequesthandleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength10 DEC 2019 6:07:38 PMPASS +   handleTestAlarmLampPatternOverrideRequest_Override10 DEC 2019 6:07:38 PMPASS 1 / 1 +   handleTestAlarmLampPatternOverrideRequest_Reset10 DEC 2019 6:07:38 PMPASS +  handleTestWatchdogCheckInStateOverrideRequesthandleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength10 DEC 2019 6:07:38 PMPASS +   handleTestWatchdogCheckInStateOverrideRequest_Override10 DEC 2019 6:07:38 PMPASS 2 / 2 +   handleTestWatchdogCheckInStateOverrideRequest_Reset10 DEC 2019 6:07:38 PMPASS 1 / 1 +  handleTestAlarmStateOverrideRequesthandleTestAlarmStateOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:38 PMPASS 6 / 6 +   handleTestAlarmStateOverrideRequest_Override10 DEC 2019 6:07:38 PMPASS 8 / 8 +   handleTestAlarmStateOverrideRequest_Reset10 DEC 2019 6:07:38 PMPASS 7 / 7 +  handleTestAlarmTimeOverrideRequesthandleTestAlarmTimeOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:38 PMPASS 6 / 6 +   handleTestAlarmTimeOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 8 / 8 +   handleTestAlarmTimeOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 7 / 7 +  handleTestAlarmStatusBroadcastIntervalOverrideRequesthandleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 7 / 7 +   handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 +  handleTestBloodFlowSetPointOverrideRequesthandleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestBloodFlowSetPointOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 7 / 7 +   handleTestBloodFlowSetPointOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 +  handleTestBloodFlowMeasuredOverrideRequesthandleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestBloodFlowMeasuredOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 7 / 7 +   handleTestBloodFlowMeasuredOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 +  handleTestBloodPumpMeasuredSpeedOverrideRequesthandleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestBloodPumpMeasuredSpeedOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 8 / 8 +   handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 +  handleTestBloodPumpMeasuredCurrentOverrideRequesthandleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestBloodPumpMeasuredCurrentOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 7 / 7 +   handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 +  handleTestBloodFlowBroadcastIntervalOverrideRequesthandleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen10 DEC 2019 6:07:39 PMPASS 6 / 6 +   handleTestBloodFlowBroadcastIntervalOverrideRequest_Override10 DEC 2019 6:07:39 PMPASS 7 / 7 +   handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset10 DEC 2019 6:07:39 PMPASS 6 / 6 TOTALS2655 PASS 55 / 55 @@ -346,7 +346,7 @@  broadcastAlarmCleared18 / 8 (100%)1 / 1 (100%) -  broadcastBloodFlowData114 / 14 (100%)1 / 1 (100%) +  broadcastBloodFlowData118 / 18 (100%)1 / 1 (100%)  handleDGCheckIn11 / 1 (100%)1 / 1 (100%) @@ -406,10 +406,10 @@  handleTestBloodFlowBroadcastIntervalOverrideRequest37 / 7 (100%)9 / 9 (100%)2 / 2 (100%) - TOTALS2653173 / 173 (100%)140 / 140 (100%)30 / 30 (100%) + TOTALS2653177 / 177 (100%)140 / 140 (100%)30 / 30 (100%) - GRAND TOTALS2653173 / 173 (100%)140 / 140 (100%)30 / 30 (100%) + GRAND TOTALS2653177 / 177 (100%)140 / 140 (100%)30 / 30 (100%) Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameSYSTEMCOMM
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:00 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:03 PM
                                                                              @@ -214,7 +214,7 @@ Control Flow - 22 / 22 PASS + 38 / 38 PASS @@ -252,69 +252,69 @@ TOTALS     <<INIT>>     TOTALS     - SystemComminitSystemCommNominalPath06 DEC 2019 6:14:23 PMPASS 2 / 2 -  checkInFromDGcheckInFromDG_NominalPath06 DEC 2019 6:14:23 PMPASS 1 / 1 -  checkInFromUIcheckInFromUI_NominalPath06 DEC 2019 6:14:23 PMPASS 1 / 1 -  isDGCommunicatingisDGCommunicating_NominalPath06 DEC 2019 6:14:23 PMPASS 1 / 1 -  isUICommunicatingisUICommunicating_NominalPath06 DEC 2019 6:14:23 PMPASS 1 / 1 -  uiCommunicateduiCommunicated_NominalPath06 DEC 2019 6:14:23 PMPASS 1 / 1 -  execSystemCommRxOneMessageToProcessInBuffers06 DEC 2019 6:14:23 PMPASS 27 / 27 -  execSystemCommTxCAN1TransmitterBusy06 DEC 2019 6:14:23 PMPASS -   SCI1TransmitterBusy06 DEC 2019 6:14:23 PMPASS -   execSystemCommTx_NominalPath06 DEC 2019 6:14:23 PMPASS 2 / 2 -  handleCANMsgInterruptInvalidCANBox06 DEC 2019 6:14:23 PMPASS -   NoPacket06 DEC 2019 6:14:23 PMPASS 1 / 1 -   ReceiveCANBox06 DEC 2019 6:14:23 PMPASS 4 / 4 -   TransmitCANBox06 DEC 2019 6:14:23 PMPASS 4 / 4 -   handleCANMsgInterrupt_NoMoreMessagesToXmit06 DEC 2019 6:14:23 PMPASS -  handleUARTMsgRecvPacketInterruptNominalPath06 DEC 2019 6:14:23 PMPASS 4 / 4 -  handleUARTMsgXmitPacketInterruptNominalPath06 DEC 2019 6:14:23 PMPASS 10 / 10 -   handleUARTMsgXmitPacketInterrupt_NoMoreMessages06 DEC 2019 6:14:23 PMPASS -  initUARTAndDMANominalPath06 DEC 2019 6:14:24 PMPASS 45 / 45 -  isCANBoxForXmitNotTransmitCANBox06 DEC 2019 6:14:24 PMPASS 1 / 1 -   TransmitCANBox06 DEC 2019 6:14:24 PMPASS 1 / 1 -  isCANBoxForRecvNotReceiveCANBox06 DEC 2019 6:14:24 PMPASS 1 / 1 -   ReceiveCANBox06 DEC 2019 6:14:24 PMPASS 1 / 1 -  findNextHighestPriorityCANPacketToTransmitBufferFound06 DEC 2019 6:14:24 PMPASS 2 / 2 -   NoBufferFound06 DEC 2019 6:14:24 PMPASS 6 / 6 -  transmitNextCANPacketNoPendingCANPackets06 DEC 2019 6:14:24 PMPASS 5 / 5 -   PendingCANPacketFound06 DEC 2019 6:14:24 PMPASS 6 / 6 -   PendingCANPacketIsPartial06 DEC 2019 6:14:24 PMPASS 5 / 5 -  transmitNextUARTPacketGetPacketFail06 DEC 2019 6:14:24 PMPASS 3 / 3 -   NoPacketFound06 DEC 2019 6:14:24 PMPASS 1 / 1 -   PacketFound06 DEC 2019 6:14:24 PMPASS 5 / 5 -  processIncomingDataMoreDataInBufferThanMaxMsgSize06 DEC 2019 6:14:24 PMPASS 4 / 4 -   MsgFoundButIncompleteMsgRetrieved06 DEC 2019 6:14:24 PMPASS 4 / 4 -   NoMsgFound06 DEC 2019 6:14:24 PMPASS 2 / 2 -  consumeBufferPaddingBeforeSyncBufferEmpty06 DEC 2019 6:14:24 PMPASS 1 / 1 -   RemoveSomePadding06 DEC 2019 6:14:24 PMPASS 8 / 8 -  parseMessageFromBufferFullMessageFound06 DEC 2019 6:14:24 PMPASS 1 / 1 -   NoMessageCouldBeParsed06 DEC 2019 6:14:24 PMPASS 1 / 1 -   NoSyncFound06 DEC 2019 6:14:24 PMPASS 1 / 1 -   NotEnoughDataForMinMessage06 DEC 2019 6:14:24 PMPASS 1 / 1 -  processReceivedMessagesNoMessagesReceived06 DEC 2019 6:14:24 PMPASS 1 / 1 -   OneMessageReceived06 DEC 2019 6:14:24 PMPASS 2 / 2 -  processReceivedMessage0001_OffButtonPress06 DEC 2019 6:14:24 PMPASS 1 / 1 -   0006_DGCheckIn06 DEC 2019 6:14:24 PMPASS 1 / 1 -   0007_UICheckIn06 DEC 2019 6:14:24 PMPASS 1 / 1 -   8000_TestLogin06 DEC 2019 6:14:24 PMPASS 3 / 3 -   8001_HDMessage06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8002_OffButtonOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8003_StopButtonOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8004_AlarmLampPatternOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8005_WatchdogTaskCheckInOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8006_AlarmStateOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8007_AlarmTimeOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8008_BloodFlowSetPtOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   8009_BloodFlowMeasuredOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   800A_BloodPumpMCMeasuredSpeedOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   800B_BloodPumpMCMeasuredCurrentOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   800C_BloodFlowDataPublishIntervalOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   800D_AlarmStatusPublishIntervalOverride06 DEC 2019 6:14:24 PMPASS 2 / 2 -   InvalidMessageID06 DEC 2019 6:14:24 PMPASS -   InvalidTestMessageID06 DEC 2019 6:14:24 PMPASS -   InvalidTestMessageIDInRange06 DEC 2019 6:14:24 PMPASS -   TestWithoutLogin06 DEC 2019 6:14:24 PMPASS + SystemComminitSystemCommNominalPath10 DEC 2019 6:07:26 PMPASS 2 / 2 +  checkInFromDGcheckInFromDG_NominalPath10 DEC 2019 6:07:26 PMPASS 1 / 1 +  checkInFromUIcheckInFromUI_NominalPath10 DEC 2019 6:07:26 PMPASS 1 / 1 +  isDGCommunicatingisDGCommunicating_NominalPath10 DEC 2019 6:07:26 PMPASS 1 / 1 +  isUICommunicatingisUICommunicating_NominalPath10 DEC 2019 6:07:26 PMPASS 1 / 1 +  uiCommunicateduiCommunicated_NominalPath10 DEC 2019 6:07:26 PMPASS 1 / 1 +  execSystemCommRxOneMessageToProcessInBuffers10 DEC 2019 6:07:26 PMPASS 27 / 27 +  execSystemCommTxCAN1TransmitterBusy10 DEC 2019 6:07:26 PMPASS +   SCI1TransmitterBusy10 DEC 2019 6:07:26 PMPASS +   execSystemCommTx_NominalPath10 DEC 2019 6:07:26 PMPASS 2 / 2 +  handleCANMsgInterruptInvalidCANBox10 DEC 2019 6:07:26 PMPASS +   NoPacket10 DEC 2019 6:07:26 PMPASS 1 / 1 +   ReceiveCANBox10 DEC 2019 6:07:26 PMPASS 4 / 4 +   TransmitCANBox10 DEC 2019 6:07:26 PMPASS 4 / 4 +   handleCANMsgInterrupt_NoMoreMessagesToXmit10 DEC 2019 6:07:26 PMPASS +  handleUARTMsgRecvPacketInterruptNominalPath10 DEC 2019 6:07:26 PMPASS 4 / 4 +  handleUARTMsgXmitPacketInterruptNominalPath10 DEC 2019 6:07:26 PMPASS 10 / 10 +   handleUARTMsgXmitPacketInterrupt_NoMoreMessages10 DEC 2019 6:07:26 PMPASS +  initUARTAndDMANominalPath10 DEC 2019 6:07:26 PMPASS 45 / 45 +  isCANBoxForXmitNotTransmitCANBox10 DEC 2019 6:07:26 PMPASS 1 / 1 +   TransmitCANBox10 DEC 2019 6:07:26 PMPASS 1 / 1 +  isCANBoxForRecvNotReceiveCANBox10 DEC 2019 6:07:26 PMPASS 1 / 1 +   ReceiveCANBox10 DEC 2019 6:07:26 PMPASS 1 / 1 +  findNextHighestPriorityCANPacketToTransmitBufferFound10 DEC 2019 6:07:26 PMPASS 2 / 2 +   NoBufferFound10 DEC 2019 6:07:26 PMPASS 6 / 6 +  transmitNextCANPacketNoPendingCANPackets10 DEC 2019 6:07:26 PMPASS 5 / 5 +   PendingCANPacketFound10 DEC 2019 6:07:26 PMPASS 6 / 6 +   PendingCANPacketIsPartial10 DEC 2019 6:07:26 PMPASS 5 / 5 +  transmitNextUARTPacketGetPacketFail10 DEC 2019 6:07:27 PMPASS 3 / 3 +   NoPacketFound10 DEC 2019 6:07:27 PMPASS 1 / 1 +   PacketFound10 DEC 2019 6:07:27 PMPASS 5 / 5 +  processIncomingDataMoreDataInBufferThanMaxMsgSize10 DEC 2019 6:07:27 PMPASS 4 / 4 +   MsgFoundButIncompleteMsgRetrieved10 DEC 2019 6:07:27 PMPASS 4 / 4 +   NoMsgFound10 DEC 2019 6:07:27 PMPASS 2 / 2 +  consumeBufferPaddingBeforeSyncBufferEmpty10 DEC 2019 6:07:27 PMPASS 1 / 1 +   RemoveSomePadding10 DEC 2019 6:07:27 PMPASS 8 / 8 +  parseMessageFromBufferFullMessageFound10 DEC 2019 6:07:27 PMPASS 1 / 1 +   NoMessageCouldBeParsed10 DEC 2019 6:07:27 PMPASS 1 / 1 +   NoSyncFound10 DEC 2019 6:07:27 PMPASS 1 / 1 +   NotEnoughDataForMinMessage10 DEC 2019 6:07:27 PMPASS 1 / 1 +  processReceivedMessagesNoMessagesReceived10 DEC 2019 6:07:27 PMPASS 1 / 1 +   OneMessageReceived10 DEC 2019 6:07:27 PMPASS 2 / 2 +  processReceivedMessage0001_OffButtonPress10 DEC 2019 6:07:27 PMPASS 1 / 1 +   0006_DGCheckIn10 DEC 2019 6:07:27 PMPASS 1 / 1 +   0007_UICheckIn10 DEC 2019 6:07:27 PMPASS 1 / 1 +   8000_TestLogin10 DEC 2019 6:07:27 PMPASS 3 / 3 +   8001_HDMessage10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8002_OffButtonOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8003_StopButtonOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8004_AlarmLampPatternOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8005_WatchdogTaskCheckInOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8006_AlarmStateOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8007_AlarmTimeOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8008_BloodFlowSetPtOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   8009_BloodFlowMeasuredOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   800A_BloodPumpMCMeasuredSpeedOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   800B_BloodPumpMCMeasuredCurrentOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   800C_BloodFlowDataPublishIntervalOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   800D_AlarmStatusPublishIntervalOverride10 DEC 2019 6:07:27 PMPASS 2 / 2 +   InvalidMessageID10 DEC 2019 6:07:27 PMPASS +   InvalidTestMessageID10 DEC 2019 6:07:27 PMPASS +   InvalidTestMessageIDInRange10 DEC 2019 6:07:27 PMPASS +   TestWithoutLogin10 DEC 2019 6:07:27 PMPASS TOTALS2263 PASS 63 / 63 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameTIMERS
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:03 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:06 PM
                                                                              @@ -248,15 +248,15 @@ TOTALS     <<INIT>>     TOTALS     - TimersinitTimersNominalPath06 DEC 2019 6:14:51 PMPASS 1 / 1 -  incMSTimerCountNominalPath06 DEC 2019 6:14:51 PMPASS 1 / 1 -  getMSTimerCountNominalPath06 DEC 2019 6:14:51 PMPASS 1 / 1 -  didTimeoutNoTimeoutNoWrap06 DEC 2019 6:14:51 PMPASS 1 / 1 -   NoTimeoutWrap06 DEC 2019 6:14:51 PMPASS 1 / 1 -   TimeoutNoWrap06 DEC 2019 6:14:51 PMPASS 1 / 1 -   TimeoutWrap06 DEC 2019 6:14:51 PMPASS 1 / 1 -  calcTimeSincecalcTimeSince_NominalPath06 DEC 2019 6:14:51 PMPASS 1 / 1 -   calcTimeSince_Wrap06 DEC 2019 6:14:51 PMPASS 1 / 1 + TimersinitTimersNominalPath10 DEC 2019 6:07:50 PMPASS 1 / 1 +  incMSTimerCountNominalPath10 DEC 2019 6:07:50 PMPASS 1 / 1 +  getMSTimerCountNominalPath10 DEC 2019 6:07:50 PMPASS 1 / 1 +  didTimeoutNoTimeoutNoWrap10 DEC 2019 6:07:50 PMPASS 1 / 1 +   NoTimeoutWrap10 DEC 2019 6:07:50 PMPASS 1 / 1 +   TimeoutNoWrap10 DEC 2019 6:07:50 PMPASS 1 / 1 +   TimeoutWrap10 DEC 2019 6:07:50 PMPASS 1 / 1 +  calcTimeSincecalcTimeSince_NominalPath10 DEC 2019 6:07:50 PMPASS 1 / 1 +   calcTimeSince_Wrap10 DEC 2019 6:07:50 PMPASS 1 / 1 TOTALS59 PASS 9 / 9 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameUTILITIES
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:04 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:07 PM
                                                                              @@ -248,9 +248,9 @@ TOTALS     <<INIT>>     TOTALS     - Utilitiescrc16NominalPath06 DEC 2019 6:15:03 PMPASS 1 / 1 -   ZeroLength06 DEC 2019 6:15:03 PMPASS 1 / 1 -  crc8NominalPath06 DEC 2019 6:15:03 PMPASS 1 / 1 + Utilitiescrc16NominalPath10 DEC 2019 6:08:01 PMPASS 1 / 1 +   ZeroLength10 DEC 2019 6:08:01 PMPASS 1 / 1 +  crc8NominalPath10 DEC 2019 6:08:01 PMPASS 1 / 1 TOTALS23 PASS 3 / 3 Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html =================================================================== diff -u -r38f2656089e6138606e0b55201efff65a88f7371 -r1bbf9da32e622975efed00b1a7589387a9829440 --- results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html) (revision 38f2656089e6138606e0b55201efff65a88f7371) +++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440) @@ -191,8 +191,8 @@

                                                                              Configuration Data

                                                                              - - + +
                                                                              Environment NameWATCHDOGMGMT
                                                                              Date of Report Creation06 DEC 2019
                                                                              Time of Report Creation6:16:06 PM
                                                                              Date of Report Creation10 DEC 2019
                                                                              Time of Report Creation6:09:09 PM
                                                                              @@ -212,6 +212,10 @@ Expecteds 82 / 82 PASS + + Control Flow + 6 / 6 PASS + Statement Coverage @@ -248,31 +252,31 @@ TOTALS     <<INIT>>     TOTALS     - WatchdogMgmtinitWatchdogMgmtNominalPath06 DEC 2019 6:15:15 PMPASS 18 / 18 -  execWatchdogMgmtAllTasksCheckedInAndMinTimeReached06 DEC 2019 6:15:15 PMPASS 2 / 2 -   AllTasksCheckedInAndNotTime06 DEC 2019 6:15:15 PMPASS 2 / 2 -   OneTaskNotCheckedIn06 DEC 2019 6:15:15 PMPASS -   WDExpired06 DEC 2019 6:15:15 PMPASS -  checkInWithWatchdogMgmtInvalidTask06 DEC 2019 6:15:15 PMPASS 4 / 4 -   NominalPath06 DEC 2019 6:15:15 PMPASS 1 / 1 -  execWatchdogTestCompleted06 DEC 2019 6:15:15 PMPASS 2 / 2 -   InvalidState06 DEC 2019 6:15:15 PMPASS 1 / 1 -   StartInProgress06 DEC 2019 6:15:15 PMPASS 6 / 6 -   TestFailure06 DEC 2019 6:15:15 PMPASS 7 / 7 -   TestPasses06 DEC 2019 6:15:15 PMPASS 7 / 7 -  resetWDTaskCheckInsNominalPath06 DEC 2019 6:15:15 PMPASS 4 / 4 -  haveAllTasksCheckedInAllTasksCheckedIn06 DEC 2019 6:15:15 PMPASS 1 / 1 -   OneTaskNotCheckedIn06 DEC 2019 6:15:15 PMPASS 1 / 1 -  hasTaskGeneralCheckedInInvalidTask06 DEC 2019 6:15:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:15:15 PMPASS 1 / 1 -   OverridePath06 DEC 2019 6:15:15 PMPASS 1 / 1 -  petWatchdogNominalPath06 DEC 2019 6:15:15 PMPASS 1 / 1 -  testSetWatchdogTaskCheckInOverrideInvalidTask06 DEC 2019 6:15:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:15:15 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:15:15 PMPASS 5 / 5 -  testResetWatchdogTaskCheckInOverrideInvalidTask06 DEC 2019 6:15:15 PMPASS 1 / 1 -   NominalPath06 DEC 2019 6:15:15 PMPASS 5 / 5 -   TestingInactive06 DEC 2019 6:15:15 PMPASS 5 / 5 + WatchdogMgmtinitWatchdogMgmtNominalPath10 DEC 2019 6:08:13 PMPASS 18 / 18 +  execWatchdogMgmtAllTasksCheckedInAndMinTimeReached10 DEC 2019 6:08:13 PMPASS 2 / 2 +   AllTasksCheckedInAndNotTime10 DEC 2019 6:08:14 PMPASS 2 / 2 +   OneTaskNotCheckedIn10 DEC 2019 6:08:14 PMPASS +   WDExpired10 DEC 2019 6:08:14 PMPASS +  checkInWithWatchdogMgmtInvalidTask10 DEC 2019 6:08:14 PMPASS 4 / 4 +   NominalPath10 DEC 2019 6:08:14 PMPASS 1 / 1 +  execWatchdogTestCompleted10 DEC 2019 6:08:14 PMPASS 2 / 2 +   InvalidState10 DEC 2019 6:08:14 PMPASS 1 / 1 +   StartInProgress10 DEC 2019 6:08:14 PMPASS 6 / 6 +   TestFailure10 DEC 2019 6:08:14 PMPASS 7 / 7 +   TestPasses10 DEC 2019 6:08:14 PMPASS 7 / 7 +  resetWDTaskCheckInsNominalPath10 DEC 2019 6:08:14 PMPASS 4 / 4 +  haveAllTasksCheckedInAllTasksCheckedIn10 DEC 2019 6:08:14 PMPASS 1 / 1 +   OneTaskNotCheckedIn10 DEC 2019 6:08:14 PMPASS 1 / 1 +  hasTaskGeneralCheckedInInvalidTask10 DEC 2019 6:08:14 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:08:14 PMPASS 1 / 1 +   OverridePath10 DEC 2019 6:08:14 PMPASS 1 / 1 +  petWatchdogNominalPath10 DEC 2019 6:08:14 PMPASS 1 / 1 +  testSetWatchdogTaskCheckInOverrideInvalidTask10 DEC 2019 6:08:14 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:08:14 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 6:08:14 PMPASS 5 / 5 +  testResetWatchdogTaskCheckInOverrideInvalidTask10 DEC 2019 6:08:14 PMPASS 1 / 1 +   NominalPath10 DEC 2019 6:08:14 PMPASS 5 / 5 +   TestingInactive10 DEC 2019 6:08:14 PMPASS 5 / 5 TOTALS1025 PASS 25 / 25