Index: firmware/App/Common.h
===================================================================
diff -u -r941afbaab7fc86f40fa49f9d110d481f65b44b68 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- firmware/App/Common.h (.../Common.h) (revision 941afbaab7fc86f40fa49f9d110d481f65b44b68)
+++ firmware/App/Common.h (.../Common.h) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -84,6 +84,7 @@
#define MASK_OFF_LSW 0xFFFF0000
#define SHIFT_8_BITS_FOR_BYTE_SHIFT 8
#define SHIFT_16_BITS_FOR_WORD_SHIFT 16
+#define FLOAT_TO_INT_ROUNDUP_OFFSET 0.5
#define ML_PER_LITER 1000
// **** Common Macros ****
Index: firmware/App/Controllers/BloodFlow.c
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -321,7 +321,7 @@
{
// set initial PWM duty cycle
bloodPumpPWMDutyCyclePctSet = MAX_BLOOD_PUMP_PWM_STEP_CHANGE;
- etpwmSetCmpA( etpwmREG1, (U32)(bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD)) );
+ etpwmSetCmpA( etpwmREG1, (U32)( bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD) + FLOAT_TO_INT_ROUNDUP_OFFSET ) );
// allow blood pump to run in requested direction
setBloodPumpDirection( bloodPumpDirection );
releaseBloodPumpStop();
@@ -353,7 +353,7 @@
{
// start ramp down to stop
bloodPumpPWMDutyCyclePctSet -= MAX_BLOOD_PUMP_PWM_STEP_CHANGE;
- etpwmSetCmpA( etpwmREG1, (U32)(bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD)) );
+ etpwmSetCmpA( etpwmREG1, (U32)( bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD) + FLOAT_TO_INT_ROUNDUP_OFFSET ) );
result = BLOOD_PUMP_RAMPING_DOWN_STATE;
}
// have we reached end of ramp up?
@@ -365,7 +365,7 @@
else
{
bloodPumpPWMDutyCyclePctSet += MAX_BLOOD_PUMP_PWM_STEP_CHANGE;
- etpwmSetCmpA( etpwmREG1, (U32)(bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD)) );
+ etpwmSetCmpA( etpwmREG1, (U32)( bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD) + FLOAT_TO_INT_ROUNDUP_OFFSET ) );
}
return result;
@@ -400,7 +400,7 @@
else
{
bloodPumpPWMDutyCyclePctSet -= MAX_BLOOD_PUMP_PWM_STEP_CHANGE;
- etpwmSetCmpA( etpwmREG1, (U32)(bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD)) );
+ etpwmSetCmpA( etpwmREG1, (U32)( bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD) + FLOAT_TO_INT_ROUNDUP_OFFSET ) );
}
return result;
@@ -446,7 +446,7 @@
newPWM = bloodPumpPWMDutyCyclePctSet + pTerm + iTerm;
newPWM = RANGE( newPWM, MIN_BLOOD_PUMP_PWM_DUTY_CYCLE, MAX_BLOOD_PUMP_PWM_DUTY_CYCLE );
bloodPumpPWMDutyCyclePctSet = newPWM;
- etpwmSetCmpA( etpwmREG1, (U32)(bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD)) );
+ etpwmSetCmpA( etpwmREG1, (U32)( bloodPumpPWMDutyCyclePctSet * (F32)(etpwmREG1->TBPRD) + FLOAT_TO_INT_ROUNDUP_OFFSET ) );
bpControlTimerCounter = 0;
}
Index: firmware/App/Services/AlarmMgmt.c
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ firmware/App/Services/AlarmMgmt.c (.../AlarmMgmt.c) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -384,7 +384,7 @@
// update alarm to display per highest priority FIFO
alarmStatus.alarmsState = highestPriority;
- alarmStatus.alarmTop = alarmPriorityFIFO[highestPriority];
+ alarmStatus.alarmTop = alarmPriorityFIFO[ highestPriority ];
alarmStatus.systemFault = faultsActive;
}
Index: results/VectorCAST.log
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/VectorCAST.log (.../VectorCAST.log) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/VectorCAST.log (.../VectorCAST.log) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -1,8 +1,8 @@
-COMMAND: /opt/release/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009
-TIME: 2019-12-10 17:58:23
+TIME: 2019-12-11 09:45:13
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env"
Initializing search list
@@ -33,12 +33,12 @@
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
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009
-TIME: 2019-12-10 17:58:30
+TIME: 2019-12-11 09:45:18
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -50,9 +50,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 150
Processing script line 400
@@ -61,7 +58,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: NoPatternChangeManual
(S) @LINE: 36
@@ -164,32 +161,17 @@
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009
-TIME: 2019-12-10 17:58:33
+TIME: 2019-12-11 09:45:20
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- 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-10 17:58:34
-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
@@ -374,11 +356,11 @@
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
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791
-TIME: 2019-12-10 17:58:36
+TIME: 2019-12-11 09:45:21
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env"
Initializing search list
@@ -409,12 +391,12 @@
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
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791
-TIME: 2019-12-10 17:58:43
+TIME: 2019-12-11 09:45:26
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -426,9 +408,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 250
Processing script line 350
Processing script line 400
@@ -444,7 +423,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: activateAlarm_AlreadyActive
(S) @LINE: 31
@@ -675,32 +654,17 @@
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791
-TIME: 2019-12-10 17:58:47
+TIME: 2019-12-11 09:45:28
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- 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-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
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all AlarmMgmt.initAlarmMgmt test cases
Running: initAlarmMgmt_NominalPath
Preparing Test Data
@@ -1121,11 +1085,11 @@
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/2470114643/BLOODFLOW.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643
-TIME: 2019-12-10 17:58:51
+TIME: 2019-12-11 09:45:31
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env"
Initializing search list
@@ -1157,12 +1121,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643
-TIME: 2019-12-10 17:58:59
+TIME: 2019-12-11 09:45:36
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -1174,9 +1138,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 250
Processing script line 300
Processing script line 350
@@ -1200,7 +1161,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: checkBloodPumpDirection_Fail
(S) @LINE: 33
@@ -1583,32 +1544,17 @@
>>> Processed Test Case: testSetTargetBloodFlowRateOverride_NotLoggedIn
(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
+COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643
-TIME: 2019-12-10 17:59:04
+TIME: 2019-12-11 09:45:39
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 17:59:06
-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
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all BloodFlow.initBloodFlow test cases
Running: initBloodFlow_NominalPath
Preparing Test Data
@@ -2311,11 +2257,11 @@
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/2437222415/BUTTONS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415
-TIME: 2019-12-10 17:59:10
+TIME: 2019-12-11 09:45:43
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env"
Initializing search list
@@ -2346,12 +2292,12 @@
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
+COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415
-TIME: 2019-12-10 17:59:17
+TIME: 2019-12-11 09:45:48
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -2363,9 +2309,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 300
Processing script line 350
@@ -2380,7 +2323,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: ButtonsPressed
(S) @LINE: 43
@@ -2583,12 +2526,12 @@
>>> Processed Test Case: userConfirmOffButton_NoRejectExpected
(S) @LINE: 787
>>> Script processing completed
-COMMAND: /opt/release/clicast -e BUTTONS -l C execute batch --update_coverage_data
+COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415
-TIME: 2019-12-10 17:59:20
+TIME: 2019-12-11 09:45:50
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
@@ -2952,11 +2895,11 @@
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/2974704408/COMM.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408
-TIME: 2019-12-10 17:59:23
+TIME: 2019-12-11 09:45:53
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env"
Initializing search list
@@ -2988,12 +2931,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408
-TIME: 2019-12-10 17:59:30
+TIME: 2019-12-11 09:45:57
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -3005,16 +2948,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: clearSCI1DMAReceiveInterrupt
(S) @LINE: 28
@@ -3109,32 +3049,17 @@
>>> Processed Test Case: signalSCI1XmitsInitiated_NominalPath
(S) @LINE: 291
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408
-TIME: 2019-12-10 17:59:34
+TIME: 2019-12-11 09:45:59
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 17:59: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/2974704408/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Comm.signalCANXmitsInitiated test cases
Running: signalCANXmitsInitiated_NominalPath
Preparing Test Data
@@ -3312,11 +3237,11 @@
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/4019558491/COMMBUFFERS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491
-TIME: 2019-12-10 17:59:37
+TIME: 2019-12-11 09:46:01
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env"
Initializing search list
@@ -3347,12 +3272,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491
-TIME: 2019-12-10 17:59:44
+TIME: 2019-12-11 09:46:05
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -3364,9 +3289,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 100
Processing script line 150
@@ -3379,7 +3301,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: InsufficientSpaceForAdd
(S) @LINE: 31
@@ -3462,32 +3384,17 @@
>>> Processed Test Case: Switch1To0
(S) @LINE: 513
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491
-TIME: 2019-12-10 17:59:47
+TIME: 2019-12-11 09:46:07
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 17:59: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/4019558491/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all CommBuffers.initCommBuffers test cases
Running: NominalPath
Preparing Test Data
@@ -3636,11 +3543,11 @@
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/3337817776/CPLD.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776
-TIME: 2019-12-10 17:59:50
+TIME: 2019-12-11 09:46:08
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env"
Initializing search list
@@ -3672,12 +3579,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776
-TIME: 2019-12-10 17:59:57
+TIME: 2019-12-11 09:46:13
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -3689,17 +3596,14 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 100
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: getCPLDOffButton_NominalPath
(S) @LINE: 28
@@ -3750,32 +3654,17 @@
>>> Processed Test Case: toggleCPLDWatchdog_NominalPath
(S) @LINE: 158
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776
-TIME: 2019-12-10 18:00:00
+TIME: 2019-12-11 09:46:14
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:00: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/3337817776/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all CPLD.initCPLD test cases
Running: initCPLD_NominalPath
Preparing Test Data
@@ -3870,11 +3759,11 @@
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/1655952326/FPGA.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326
-TIME: 2019-12-10 18:00:03
+TIME: 2019-12-11 09:46:16
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env"
Initializing search list
@@ -3905,12 +3794,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
Environment built Successfully
-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
+COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326
-TIME: 2019-12-10 18:00:10
+TIME: 2019-12-11 09:46:20
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -3951,7 +3840,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: DataBytePending
(S) @LINE: 33
@@ -4437,12 +4326,12 @@
>>> Processed Test Case: NominalPath
(S) @LINE: 1877
>>> Script processing completed
-COMMAND: /opt/release/clicast -e FPGA -l C execute batch --update_coverage_data
+COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326
-TIME: 2019-12-10 18:00:13
+TIME: 2019-12-11 09:46:22
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
@@ -4839,11 +4728,11 @@
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/3499035493/INTERRUPTS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493
-TIME: 2019-12-10 18:00:16
+TIME: 2019-12-11 09:46:25
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env"
Initializing search list
@@ -4875,12 +4764,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493
-TIME: 2019-12-10 18:00:23
+TIME: 2019-12-11 09:46:30
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -4892,9 +4781,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 200
Processing script line 250
@@ -4903,7 +4789,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: canErrorNotification_BusOff
(S) @LINE: 34
@@ -4986,32 +4872,17 @@
>>> Processed Test Case: OverrunError_SCI2
(S) @LINE: 309
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493
-TIME: 2019-12-10 18:00:26
+TIME: 2019-12-11 09:46:31
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:00:28
-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/3499035493/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Interrupts.phantomInterrupt test cases
Running: NominalPath
Preparing Test Data
@@ -5158,11 +5029,11 @@
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/124385112/INT_ALARMLAMP.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112
-TIME: 2019-12-10 18:00:29
+TIME: 2019-12-11 09:46:33
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env"
Initializing search list
@@ -5175,14 +5046,14 @@
File: AlarmLamp.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/
- File: ModeFault.c (using cached data)
- File: ModeInitPOST.c (using cached data)
+ File: ModeFault.c
+ File: ModeInitPOST.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/
- File: SystemCommMessages.c (using cached data)
+ File: SystemCommMessages.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/
- File: TaskGeneral.c (using cached data)
+ File: TaskGeneral.c
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
Parsing
@@ -5249,12 +5120,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112
-TIME: 2019-12-10 18:00:52
+TIME: 2019-12-11 09:46:48
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -5266,15 +5137,12 @@
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/124385112/INT_ALARMLAMP.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: requestAlarmLampPattern
(S) @LINE: 29
@@ -5301,32 +5169,17 @@
>>> Processed Test Case: initAlarmLamp
(S) @LINE: 139
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112
-TIME: 2019-12-10 18:00:55
+TIME: 2019-12-11 09:46:50
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:01: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/124385112/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all ModeFault.transitionToFaultMode test cases
Running: requestAlarmLampPattern
Preparing Test Data
@@ -5375,11 +5228,11 @@
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/3157600406/INT_ALARMMGMT.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406
-TIME: 2019-12-10 18:01:02
+TIME: 2019-12-11 09:46:51
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env"
Initializing search list
@@ -5447,12 +5300,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406
-TIME: 2019-12-10 18:01:19
+TIME: 2019-12-11 09:47:03
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -5464,16 +5317,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 100
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: activateAlarm2Data
(S) @LINE: 32
@@ -5492,32 +5342,17 @@
>>> Processed Test Case: initAlarmMgmt
(S) @LINE: 106
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406
-TIME: 2019-12-10 18:01:23
+TIME: 2019-12-11 09:47:04
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:01:24
-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/3157600406/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all BloodFlow.execBloodFlowMonitor test cases
Running: activateAlarm1Data
Preparing Test Data
@@ -5551,11 +5386,11 @@
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/397690850/INT_BLOODFLOW.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850
-TIME: 2019-12-10 18:01:26
+TIME: 2019-12-11 09:47:05
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env"
Initializing search list
@@ -5569,7 +5404,7 @@
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/
File: TaskGeneral.c (using cached data)
- File: TaskPriority.c (using cached data)
+ File: TaskPriority.c
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
Parsing
@@ -5621,12 +5456,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850
-TIME: 2019-12-10 18:01:42
+TIME: 2019-12-11 09:47:14
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -5638,16 +5473,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: execBloodFlowController
(S) @LINE: 32
@@ -5662,32 +5494,17 @@
>>> Processed Test Case: initBloodFlow
(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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850
-TIME: 2019-12-10 18:01:45
+TIME: 2019-12-11 09:47:16
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:01:46
-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/397690850/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all TaskGeneral.taskGeneral test cases
Running: execBloodFlowController
Preparing Test Data
@@ -5713,11 +5530,11 @@
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/3621120736/INT_BUTTONS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736
-TIME: 2019-12-10 18:01:48
+TIME: 2019-12-11 09:47:17
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env"
Initializing search list
@@ -5727,7 +5544,7 @@
File: sys_main.c (using cached data)
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Controllers/
- File: Buttons.c (using cached data)
+ File: Buttons.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Modes/
File: ModeInitPOST.c (using cached data)
@@ -5795,12 +5612,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736
-TIME: 2019-12-10 18:02:07
+TIME: 2019-12-11 09:47:30
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -5812,9 +5629,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
@@ -5823,7 +5637,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: execStuckButtonTest
(S) @LINE: 31
@@ -5858,32 +5672,17 @@
>>> Processed Test Case: initButtons
(S) @LINE: 211
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736
-TIME: 2019-12-10 18:02:10
+TIME: 2019-12-11 09:47:31
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:02:12
-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/3621120736/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all ModeInitPOST.execInitAndPOSTMode test cases
Running: execStuckButtonTest
Preparing Test Data
@@ -5947,11 +5746,11 @@
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/925127052/INT_COMMBUFFERS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052
-TIME: 2019-12-10 18:02:13
+TIME: 2019-12-11 09:47:33
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env"
Initializing search list
@@ -5961,9 +5760,9 @@
File: sys_main.c (using cached data)
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/
- File: CommBuffers.c (using cached data)
- File: MsgQueues.c (using cached data)
- File: SystemComm.c (using cached data)
+ File: CommBuffers.c
+ File: MsgQueues.c
+ File: SystemComm.c
File: SystemCommMessages.c (using cached data)
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
@@ -6023,12 +5822,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052
-TIME: 2019-12-10 18:02:31
+TIME: 2019-12-11 09:47:44
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6040,9 +5839,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 100
Processing script line 150
@@ -6052,7 +5848,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: peekAndgetFromAndNumberOfBytesInCommBuffer
(S) @LINE: 56
@@ -6067,32 +5863,17 @@
>>> Processed Test Case: initCommBuffers
(S) @LINE: 202
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052
-TIME: 2019-12-10 18:02:35
+TIME: 2019-12-11 09:47:45
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:02: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/925127052/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all SystemComm.consumeBufferPaddingBeforeSync test cases
Running: peekAndgetFromAndNumberOfBytesInCommBuffer
Preparing Test Data
@@ -6118,11 +5899,11 @@
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
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026
-TIME: 2019-12-10 18:02:38
+TIME: 2019-12-11 09:47:46
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env"
Initializing search list
@@ -6136,7 +5917,7 @@
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)
+ File: CPLD.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/
File: WatchdogMgmt.c
@@ -6199,12 +5980,12 @@
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026
-TIME: 2019-12-10 18:02:57
+TIME: 2019-12-11 09:48:00
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6216,15 +5997,12 @@
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
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: setCPLDLampGreen
(S) @LINE: 34
@@ -6255,32 +6033,17 @@
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026
-TIME: 2019-12-10 18:03:00
+TIME: 2019-12-11 09:48:01
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- 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
@@ -6337,11 +6100,11 @@
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
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524
-TIME: 2019-12-10 18:03:03
+TIME: 2019-12-11 09:48:02
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env"
Initializing search list
@@ -6355,7 +6118,7 @@
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/
File: FPGA.c
- File: Interrupts.c (using cached data)
+ File: Interrupts.c
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/
File: TaskPriority.c (using cached data)
@@ -6417,12 +6180,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524
-TIME: 2019-12-10 18:03:23
+TIME: 2019-12-11 09:48:15
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6434,16 +6197,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 100
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: signalFPGAReceiptCompleted
(S) @LINE: 33
@@ -6466,32 +6226,17 @@
>>> Processed Test Case: initFPGA
(S) @LINE: 134
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524
-TIME: 2019-12-10 18:03:27
+TIME: 2019-12-11 09:48:16
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:03:28
-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/1233794524/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all ModeInitPOST.execInitAndPOSTMode test cases
Running: execFPGATest
Preparing Test Data
@@ -6532,11 +6277,11 @@
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/3336905608/INT_MSGQUEUES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608
-TIME: 2019-12-10 18:03:30
+TIME: 2019-12-11 09:48:17
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env"
Initializing search list
@@ -6608,12 +6353,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608
-TIME: 2019-12-10 18:03:47
+TIME: 2019-12-11 09:48:27
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6625,17 +6370,14 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 100
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: addToMsgQueue
(S) @LINE: 51
@@ -6654,32 +6396,17 @@
>>> Processed Test Case: initMsgQueues
(S) @LINE: 118
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608
-TIME: 2019-12-10 18:03:51
+TIME: 2019-12-11 09:48:29
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:03:52
-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/3336905608/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all SystemComm.processIncomingData test cases
Running: addToMsgQueue
Preparing Test Data
@@ -6713,11 +6440,11 @@
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/553544110/INT_OPERATIONMODES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110
-TIME: 2019-12-10 18:03:54
+TIME: 2019-12-11 09:48:30
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env"
Initializing search list
@@ -6793,12 +6520,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110
-TIME: 2019-12-10 18:04:12
+TIME: 2019-12-11 09:48:41
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6810,16 +6537,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: getCurrentOperationMode
(S) @LINE: 30
@@ -6838,32 +6562,17 @@
>>> Processed Test Case: initOperationModes
(S) @LINE: 84
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110
-TIME: 2019-12-10 18:04:16
+TIME: 2019-12-11 09:48:43
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:04:17
-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/553544110/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Buttons.userConfirmOffButton test cases
Running: getCurrentOperationMode
Preparing Test Data
@@ -6897,11 +6606,11 @@
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
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471
-TIME: 2019-12-10 18:04:18
+TIME: 2019-12-11 09:48:45
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env"
Initializing search list
@@ -6911,7 +6620,7 @@
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)
+ File: SafetyShutdown.c
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
Parsing
@@ -6946,12 +6655,12 @@
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471
-TIME: 2019-12-10 18:04:29
+TIME: 2019-12-11 09:48:53
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -6963,47 +6672,29 @@
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
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: initSafetyShutdown
(S) @LINE: 27
>>> Processed Test Case: initSafetyShutdown
(S) @LINE: 27
>>> Script processing completed
-COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471
-TIME: 2019-12-10 18:04:31
+TIME: 2019-12-11 09:48:54
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/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
@@ -7013,11 +6704,11 @@
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
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618
-TIME: 2019-12-10 18:04:34
+TIME: 2019-12-11 09:48:55
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env"
Initializing search list
@@ -7110,12 +6801,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618
-TIME: 2019-12-10 18:04:58
+TIME: 2019-12-11 09:49:08
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -7127,9 +6818,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 150
Processing script line 200
@@ -7138,7 +6826,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: handleCANMsgInterrupt
(S) @LINE: 59
@@ -7161,32 +6849,17 @@
>>> Processed Test Case: initSystemComm
(S) @LINE: 212
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618
-TIME: 2019-12-10 18:05:02
+TIME: 2019-12-11 09:49:09
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:05:04
-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/2689133618/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Interrupts.canMessageNotification test cases
Running: handleCANMsgInterrupt
Preparing Test Data
@@ -7227,11 +6900,11 @@
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/2381647150/INT_SYSTEMCOMMMESSAGES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150
-TIME: 2019-12-10 18:05:05
+TIME: 2019-12-11 09:49:11
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env"
Initializing search list
@@ -7303,12 +6976,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150
-TIME: 2019-12-10 18:05:24
+TIME: 2019-12-11 09:49:22
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -7320,9 +6993,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
@@ -7331,7 +7001,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: sendOffButtonMsgToUI
(S) @LINE: 49
@@ -7370,32 +7040,17 @@
>>> Processed Test Case: handleTesterLogInRequest
(S) @LINE: 220
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150
-TIME: 2019-12-10 18:05:28
+TIME: 2019-12-11 09:49:24
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:05: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/2381647150/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Buttons.handleOffButtonProcessing test cases
Running: sendOffButtonMsgToUI
Preparing Test Data
@@ -7463,11 +7118,11 @@
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/189936646/INT_TIMERS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646
-TIME: 2019-12-10 18:05:31
+TIME: 2019-12-11 09:49:25
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env"
Initializing search list
@@ -7477,11 +7132,11 @@
File: sys_main.c (using cached data)
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Services/
- File: Timers.c (using cached data)
+ File: Timers.c
File: WatchdogMgmt.c (using cached data)
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/
- File: TaskTimer.c (using cached data)
+ File: TaskTimer.c
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
Parsing
@@ -7532,12 +7187,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646
-TIME: 2019-12-10 18:05:47
+TIME: 2019-12-11 09:49:34
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -7549,15 +7204,12 @@
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/189936646/INT_TIMERS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: incMSTimerCount
(S) @LINE: 27
@@ -7572,32 +7224,17 @@
>>> Processed Test Case: initTimers
(S) @LINE: 62
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646
-TIME: 2019-12-10 18:05:50
+TIME: 2019-12-11 09:49:36
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:05: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/189936646/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all WatchdogMgmt.execWatchdogMgmt test cases
Running: didTimeout
Preparing Test Data
@@ -7623,11 +7260,11 @@
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/1824960653/INT_UTILITIES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653
-TIME: 2019-12-10 18:05:52
+TIME: 2019-12-11 09:49:37
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env"
Initializing search list
@@ -7670,12 +7307,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653
-TIME: 2019-12-10 18:06:03
+TIME: 2019-12-11 09:49:43
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -7687,47 +7324,29 @@
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/1824960653/INT_UTILITIES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: crc16
(S) @LINE: 38
>>> Processed Test Case: crc16
(S) @LINE: 38
>>> Script processing completed
-COMMAND: /opt/release/clicast -e INT_UTILITIES test script create /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653
-TIME: 2019-12-10 18:06:06
+TIME: 2019-12-11 09:49:44
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:06:07
-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/1824960653/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all FPGA.handleFPGAReadHeaderState test cases
Running: crc16
Preparing Test Data
@@ -7737,11 +7356,11 @@
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/1429379182/INT_WATCHDOGMGMT.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182
-TIME: 2019-12-10 18:06:08
+TIME: 2019-12-11 09:49:45
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env"
Initializing search list
@@ -7758,7 +7377,7 @@
File: WatchdogMgmt.c (using cached data)
QuickParse Utility Completed
Calling QuickParse Utility for /home/fw/ws_HD/hdfirmware/firmware/App/Tasks/
- File: TaskBG.c (using cached data)
+ File: TaskBG.c
File: TaskTimer.c (using cached data)
QuickParse Utility Completed
Unit 8 (not-stubbed): User Defined Globals
@@ -7826,12 +7445,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182
-TIME: 2019-12-10 18:06:30
+TIME: 2019-12-11 09:49:57
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -7843,17 +7462,14 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 150
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: execWatchdogTest
(S) @LINE: 33
@@ -7880,32 +7496,17 @@
>>> Processed Test Case: initWatchdogMgmt
(S) @LINE: 188
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182
-TIME: 2019-12-10 18:06:33
+TIME: 2019-12-11 09:49:59
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 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/1429379182/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all ModeInitPOST.execInitAndPOSTMode test cases
Running: execWatchdogTest
Preparing Test Data
@@ -7954,11 +7555,11 @@
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/1114345785/MSGQUEUES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785
-TIME: 2019-12-10 18:06:37
+TIME: 2019-12-11 09:50:00
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env"
Initializing search list
@@ -7989,12 +7590,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785
-TIME: 2019-12-10 18:06:44
+TIME: 2019-12-11 09:50:04
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -8006,9 +7607,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Processing script line 100
Processing script line 150
@@ -8019,7 +7617,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: InvalidQueue
(S) @LINE: 37
@@ -8090,32 +7688,17 @@
>>> Processed Test Case: QueueNotFull
(S) @LINE: 318
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785
-TIME: 2019-12-10 18:06:46
+TIME: 2019-12-11 09:50:05
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:06: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/1114345785/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all MsgQueues.initMsgQueues test cases
Running: NominalPath
Preparing Test Data
@@ -8243,11 +7826,11 @@
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/241608158/OPERATIONMODES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158
-TIME: 2019-12-10 18:06:49
+TIME: 2019-12-11 09:50:07
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env"
Initializing search list
@@ -8278,12 +7861,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158
-TIME: 2019-12-10 18:06:56
+TIME: 2019-12-11 09:50:11
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -8295,9 +7878,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 250
@@ -8306,7 +7886,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: NoRequestPending
(S) @LINE: 30
@@ -8413,32 +7993,17 @@
>>> Processed Test Case: TreatmentMode
(S) @LINE: 292
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158
-TIME: 2019-12-10 18:06:59
+TIME: 2019-12-11 09:50:12
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:07: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/241608158/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all OperationModes.initOperationModes test cases
Running: NominalPath
Preparing Test Data
@@ -8628,11 +8193,11 @@
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/129022383/SAFETYSHUTDOWN.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383
-TIME: 2019-12-10 18:07:03
+TIME: 2019-12-11 09:50:14
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env"
Initializing search list
@@ -8663,12 +8228,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383
-TIME: 2019-12-10 18:07:10
+TIME: 2019-12-11 09:50:17
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -8680,15 +8245,12 @@
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/129022383/SAFETYSHUTDOWN.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: activateSafetyShutdown_NominalPath
(S) @LINE: 27
@@ -8699,32 +8261,17 @@
>>> Processed Test Case: initSafetyShutdown_NominalPath
(S) @LINE: 38
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383
-TIME: 2019-12-10 18:07:13
+TIME: 2019-12-11 09:50:19
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:07:14
-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/129022383/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all SafetyShutdown.initSafetyShutdown test cases
Running: initSafetyShutdown_NominalPath
Preparing Test Data
@@ -8742,11 +8289,11 @@
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/480960922/SYSTEMCOMM.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922
-TIME: 2019-12-10 18:07:16
+TIME: 2019-12-11 09:50:20
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env"
Initializing search list
@@ -8777,12 +8324,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
Environment built Successfully
-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
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922
-TIME: 2019-12-10 18:07:23
+TIME: 2019-12-11 09:50:25
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -8812,7 +8359,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: checkInFromDG_NominalPath
(S) @LINE: 27
@@ -9106,12 +8653,12 @@
>>> Processed Test Case: uiCommunicated_NominalPath
(S) @LINE: 1032
>>> Script processing completed
-COMMAND: /opt/release/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922
-TIME: 2019-12-10 18:07:25
+TIME: 2019-12-11 09:50:26
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
@@ -9581,11 +9128,11 @@
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/456249163/SYSTEMCOMMMESSAGES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163
-TIME: 2019-12-10 18:07:28
+TIME: 2019-12-11 09:50:29
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env"
Initializing search list
@@ -9616,12 +9163,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
Environment built Successfully
-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
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163
-TIME: 2019-12-10 18:07:34
+TIME: 2019-12-11 09:50:33
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -9657,7 +9204,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: broadcastAlarmCleared_NominalPath
(S) @LINE: 38
@@ -9883,12 +9430,12 @@
>>> Processed Test Case: serializeMessage_NominalPath
(S) @LINE: 1305
>>> Script processing completed
-COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163
-TIME: 2019-12-10 18:07:37
+TIME: 2019-12-11 09:50:35
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
@@ -10306,11 +9853,11 @@
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/4061569705/TIMERS.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705
-TIME: 2019-12-10 18:07:39
+TIME: 2019-12-11 09:50:38
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env"
Initializing search list
@@ -10341,12 +9888,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705
-TIME: 2019-12-10 18:07:46
+TIME: 2019-12-11 09:50:43
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -10358,16 +9905,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: calcTimeSince_NominalPath
(S) @LINE: 28
@@ -10406,32 +9950,17 @@
>>> Processed Test Case: NominalPath
(S) @LINE: 118
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705
-TIME: 2019-12-10 18:07:48
+TIME: 2019-12-11 09:50:44
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:07:49
-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/4061569705/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Timers.initTimers test cases
Running: NominalPath
Preparing Test Data
@@ -10501,11 +10030,11 @@
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/3897033276/UTILITIES.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276
-TIME: 2019-12-10 18:07:50
+TIME: 2019-12-11 09:50:46
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env"
Initializing search list
@@ -10536,12 +10065,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276
-TIME: 2019-12-10 18:07:57
+TIME: 2019-12-11 09:50:50
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -10553,16 +10082,13 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 50
Script Creation Completed
--------------------------------------------------------------------------------
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: NominalPath
(S) @LINE: 37
@@ -10577,32 +10103,17 @@
>>> Processed Test Case: NominalPath
(S) @LINE: 65
>>> 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
+COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276
-TIME: 2019-12-10 18:07:59
+TIME: 2019-12-11 09:50:51
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- Script processing completed
-COMMAND: /opt/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-10 18:08: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/3897033276/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all Utilities.crc16 test cases
Running: NominalPath
Preparing Test Data
@@ -10627,11 +10138,11 @@
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/1297968848/WATCHDOGMGMT.env
+COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848
-TIME: 2019-12-10 18:08:01
+TIME: 2019-12-11 09:50:53
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
-**Environment Builder Version 19 revision c2818cf (09/24/19)
+**Environment Builder Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG
Reading environment script "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env"
Initializing search list
@@ -10662,12 +10173,12 @@
Coverage Initialized
Writing VectorCAST Database Files to Disk
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
+COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script run /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848
-TIME: 2019-12-10 18:08:08
+TIME: 2019-12-11 09:50:57
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG
Opening Environment
Determining Size/Range Information
@@ -10679,9 +10190,6 @@
Opening Types File
Environment is Open
Processing Script File
- Test Script Maintenance Started
- Test Script Maintenance Complete (0)
- Translated 0 script lines
Processing script line 200
Processing script line 250
Processing script line 300
@@ -10691,7 +10199,7 @@
Test Script Log
--------------------------------------------------------------------------------
(I) @LINE: 1
- >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst
+ >>> Opening script file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp
(I) @LINE: 24
>>> Processing Test Case: InvalidTask
(S) @LINE: 34
@@ -10794,32 +10302,17 @@
>>> Processed Test Case: TestingInactive
(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
+COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848
-TIME: 2019-12-10 18:08:11
+TIME: 2019-12-11 09:50:58
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
- Creating Script File
- Building Test Case Script
- Test Case Script Created
- 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-10 18:08:12
-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/1297968848/CCAST_.CFG
- Opening Environment
- Opening Parameter/Global File
- Opening Types File
- Environment is Open
Running all WatchdogMgmt.initWatchdogMgmt test cases
Running: NominalPath
Preparing Test Data
@@ -11010,791 +10503,791 @@
processing coverage results...
combining results...
Generate VectorCAST reports
-Calling /opt/release/manage --project=Hercules_RM46_HD_Project.vcm --release-locks ...
+Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --release-locks ...
-/opt/release/manage --project=Hercules_RM46_HD_Project.vcm --release-locks
+/opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --release-locks
Exit Code: 0
Command is done running!
Generating Management Reports
-Calling /opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management ...
-COMMAND: /opt/release/clicast -e ALARMLAMP report custom management
+Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management ...
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009
-TIME: 2019-12-10 18:08:19
+TIME: 2019-12-11 09:51:04
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_management_report.html".
-COMMAND: /opt/release/clicast -e ALARMMGMT report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791
-TIME: 2019-12-10 18:08:21
+TIME: 2019-12-11 09:51:06
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_management_report.html".
-COMMAND: /opt/release/clicast -e BLOODFLOW report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643
-TIME: 2019-12-10 18:08:22
+TIME: 2019-12-11 09:51:07
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_management_report.html".
-COMMAND: /opt/release/clicast -e BUTTONS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415
-TIME: 2019-12-10 18:08:24
+TIME: 2019-12-11 09:51:09
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_management_report.html".
-COMMAND: /opt/release/clicast -e COMM report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408
-TIME: 2019-12-10 18:08:26
+TIME: 2019-12-11 09:51:10
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_management_report.html".
-COMMAND: /opt/release/clicast -e COMMBUFFERS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491
-TIME: 2019-12-10 18:08:27
+TIME: 2019-12-11 09:51:11
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_management_report.html".
-COMMAND: /opt/release/clicast -e CPLD report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776
-TIME: 2019-12-10 18:08:29
+TIME: 2019-12-11 09:51:13
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_management_report.html".
-COMMAND: /opt/release/clicast -e FPGA report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326
-TIME: 2019-12-10 18:08:30
+TIME: 2019-12-11 09:51:14
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_management_report.html".
-COMMAND: /opt/release/clicast -e INTERRUPTS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493
-TIME: 2019-12-10 18:08:32
+TIME: 2019-12-11 09:51:15
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_management_report.html".
-COMMAND: /opt/release/clicast -e INT_ALARMLAMP report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112
-TIME: 2019-12-10 18:08:33
+TIME: 2019-12-11 09:51:17
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_management_report.html".
-COMMAND: /opt/release/clicast -e INT_ALARMMGMT report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406
-TIME: 2019-12-10 18:08:35
+TIME: 2019-12-11 09:51:18
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_management_report.html".
-COMMAND: /opt/release/clicast -e INT_BLOODFLOW report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850
-TIME: 2019-12-10 18:08:36
+TIME: 2019-12-11 09:51:19
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_management_report.html".
-COMMAND: /opt/release/clicast -e INT_BUTTONS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736
-TIME: 2019-12-10 18:08:38
+TIME: 2019-12-11 09:51:21
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_management_report.html".
-COMMAND: /opt/release/clicast -e INT_COMMBUFFERS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052
-TIME: 2019-12-10 18:08:40
+TIME: 2019-12-11 09:51:22
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_management_report.html".
-COMMAND: /opt/release/clicast -e INT_CPLD report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026
-TIME: 2019-12-10 18:08:41
+TIME: 2019-12-11 09:51:23
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_management_report.html".
-COMMAND: /opt/release/clicast -e INT_FPGA report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524
-TIME: 2019-12-10 18:08:43
+TIME: 2019-12-11 09:51:24
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_management_report.html".
-COMMAND: /opt/release/clicast -e INT_MSGQUEUES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608
-TIME: 2019-12-10 18:08:44
+TIME: 2019-12-11 09:51:26
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_management_report.html".
-COMMAND: /opt/release/clicast -e INT_OPERATIONMODES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110
-TIME: 2019-12-10 18:08:46
+TIME: 2019-12-11 09:51:27
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_management_report.html".
-COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471
-TIME: 2019-12-10 18:08:47
+TIME: 2019-12-11 09:51:28
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618
-TIME: 2019-12-10 18:08:49
+TIME: 2019-12-11 09:51:30
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html".
-COMMAND: /opt/release/clicast -e INT_SYSTEMCOMMMESSAGES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150
-TIME: 2019-12-10 18:08:51
+TIME: 2019-12-11 09:51:31
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html".
-COMMAND: /opt/release/clicast -e INT_TIMERS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646
-TIME: 2019-12-10 18:08:52
+TIME: 2019-12-11 09:51:32
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_management_report.html".
-COMMAND: /opt/release/clicast -e INT_UTILITIES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653
-TIME: 2019-12-10 18:08:54
+TIME: 2019-12-11 09:51:33
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_management_report.html".
-COMMAND: /opt/release/clicast -e INT_WATCHDOGMGMT report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182
-TIME: 2019-12-10 18:08:55
+TIME: 2019-12-11 09:51:35
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html".
-COMMAND: /opt/release/clicast -e MSGQUEUES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785
-TIME: 2019-12-10 18:08:57
+TIME: 2019-12-11 09:51:36
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_management_report.html".
-COMMAND: /opt/release/clicast -e OPERATIONMODES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158
-TIME: 2019-12-10 18:08:58
+TIME: 2019-12-11 09:51:37
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_management_report.html".
-COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383
-TIME: 2019-12-10 18:09:00
+TIME: 2019-12-11 09:51:38
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_management_report.html".
-COMMAND: /opt/release/clicast -e SYSTEMCOMM report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922
-TIME: 2019-12-10 18:09:01
+TIME: 2019-12-11 09:51:40
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_management_report.html".
-COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163
-TIME: 2019-12-10 18:09:03
+TIME: 2019-12-11 09:51:41
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html".
-COMMAND: /opt/release/clicast -e TIMERS report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705
-TIME: 2019-12-10 18:09:05
+TIME: 2019-12-11 09:51:43
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_management_report.html".
-COMMAND: /opt/release/clicast -e UTILITIES report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276
-TIME: 2019-12-10 18:09:06
+TIME: 2019-12-11 09:51:45
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_management_report.html".
-COMMAND: /opt/release/clicast -e WATCHDOGMGMT report custom management
+COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848
-TIME: 2019-12-10 18:09:08
+TIME: 2019-12-11 09:51:46
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT_management_report.html".
-/opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management
+/opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management
Exit Code: 0
Command is done running!
Generating Test Case Execution Reports
-Calling /opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual ...
-COMMAND: /opt/release/clicast -e ALARMLAMP report custom actual
+Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual ...
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009
-TIME: 2019-12-10 18:09:10
+TIME: 2019-12-11 09:51:49
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_execution_results_report.html".
-COMMAND: /opt/release/clicast -e ALARMMGMT report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791
-TIME: 2019-12-10 18:09:12
+TIME: 2019-12-11 09:51:51
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_execution_results_report.html".
-COMMAND: /opt/release/clicast -e BLOODFLOW report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643
-TIME: 2019-12-10 18:09:14
+TIME: 2019-12-11 09:51:53
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_execution_results_report.html".
-COMMAND: /opt/release/clicast -e BUTTONS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415
-TIME: 2019-12-10 18:09:16
+TIME: 2019-12-11 09:51:55
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e COMM report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408
-TIME: 2019-12-10 18:09:18
+TIME: 2019-12-11 09:51:56
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_execution_results_report.html".
-COMMAND: /opt/release/clicast -e COMMBUFFERS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491
-TIME: 2019-12-10 18:09:20
+TIME: 2019-12-11 09:51:58
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e CPLD report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776
-TIME: 2019-12-10 18:09:22
+TIME: 2019-12-11 09:51:59
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_execution_results_report.html".
-COMMAND: /opt/release/clicast -e FPGA report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326
-TIME: 2019-12-10 18:09:23
+TIME: 2019-12-11 09:52:01
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INTERRUPTS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493
-TIME: 2019-12-10 18:09:25
+TIME: 2019-12-11 09:52:03
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_ALARMLAMP report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112
-TIME: 2019-12-10 18:09:27
+TIME: 2019-12-11 09:52:05
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_ALARMMGMT report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406
-TIME: 2019-12-10 18:09:28
+TIME: 2019-12-11 09:52:06
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_BLOODFLOW report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850
-TIME: 2019-12-10 18:09:30
+TIME: 2019-12-11 09:52:07
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_BUTTONS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736
-TIME: 2019-12-10 18:09:32
+TIME: 2019-12-11 09:52:09
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_COMMBUFFERS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052
-TIME: 2019-12-10 18:09:33
+TIME: 2019-12-11 09:52:10
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_CPLD report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026
-TIME: 2019-12-10 18:09:35
+TIME: 2019-12-11 09:52:12
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_FPGA report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524
-TIME: 2019-12-10 18:09:36
+TIME: 2019-12-11 09:52:13
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_MSGQUEUES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608
-TIME: 2019-12-10 18:09:38
+TIME: 2019-12-11 09:52:15
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_OPERATIONMODES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110
-TIME: 2019-12-10 18:09:39
+TIME: 2019-12-11 09:52:16
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_SAFETYSHUTDOWN report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471
-TIME: 2019-12-10 18:09:41
+TIME: 2019-12-11 09:52:17
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/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
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618
-TIME: 2019-12-10 18:09:42
+TIME: 2019-12-11 09:52:18
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150
-TIME: 2019-12-10 18:09:44
+TIME: 2019-12-11 09:52:20
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_TIMERS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646
-TIME: 2019-12-10 18:09:46
+TIME: 2019-12-11 09:52:21
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_UTILITIES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653
-TIME: 2019-12-10 18:09:47
+TIME: 2019-12-11 09:52:23
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e INT_WATCHDOGMGMT report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182
-TIME: 2019-12-10 18:09:49
+TIME: 2019-12-11 09:52:24
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html".
-COMMAND: /opt/release/clicast -e MSGQUEUES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785
-TIME: 2019-12-10 18:09:50
+TIME: 2019-12-11 09:52:25
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e OPERATIONMODES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158
-TIME: 2019-12-10 18:09:52
+TIME: 2019-12-11 09:52:27
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e SAFETYSHUTDOWN report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383
-TIME: 2019-12-10 18:09:53
+TIME: 2019-12-11 09:52:28
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html".
-COMMAND: /opt/release/clicast -e SYSTEMCOMM report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922
-TIME: 2019-12-10 18:09:55
+TIME: 2019-12-11 09:52:29
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_execution_results_report.html".
-COMMAND: /opt/release/clicast -e SYSTEMCOMMMESSAGES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163
-TIME: 2019-12-10 18:09:57
+TIME: 2019-12-11 09:52:31
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e TIMERS report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705
-TIME: 2019-12-10 18:09:59
+TIME: 2019-12-11 09:52:33
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_execution_results_report.html".
-COMMAND: /opt/release/clicast -e UTILITIES report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276
-TIME: 2019-12-10 18:10:01
+TIME: 2019-12-11 09:52:34
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_execution_results_report.html".
-COMMAND: /opt/release/clicast -e WATCHDOGMGMT report custom actual
+COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual
DIRECTORY: /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848
-TIME: 2019-12-10 18:10:02
+TIME: 2019-12-11 09:52:35
TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite
VectorCAST Copyright (C) 1993 - 2019
-**Version 19 revision c2818cf (09/24/19)
+**Version 19.sp3 (11/13/19)
Processing options file /home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG
Opening Environment
Opening Parameter/Global File
Opening Types File
Environment is Open
The HTML report was saved to "/home/fw/ws_HD/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT_execution_results_report.html".
-/opt/release/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual
+/opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual
Exit Code: 0
Command is done running!
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -395,8 +396,8 @@
Configuration Data
| Environment Name | ALARMLAMP |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:11 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:50 AM |
@@ -412,8 +413,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | initAlarmLamp |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -540,8 +541,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLamp |
| Test Case Name | NoPatternChangeManual |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -668,8 +669,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLamp |
| Test Case Name | NoPatternChangeStep0To1 |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -886,8 +887,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLamp |
| Test Case Name | NoPatternChangeStep1To0 |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1104,8 +1105,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLamp |
| Test Case Name | NominalPatternChange |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1262,8 +1263,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | requestAlarmLampPattern |
| Test Case Name | InvalidLampPatternGiven |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1502,8 +1503,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | requestAlarmLampPattern |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1658,8 +1659,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | getCurrentAlarmLampPattern |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1826,8 +1827,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | getCurrentAlarmLampPattern |
| Test Case Name | Override |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -1994,8 +1995,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | CompleteToStart |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -2138,8 +2139,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | GreenOn |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -2330,8 +2331,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | GreenToOff |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -2552,8 +2553,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | InvalidState |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -2792,8 +2793,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | RedOn |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -2984,8 +2985,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | RedToYellow |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -3236,8 +3237,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | StartTest |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -3446,8 +3447,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | YellowOn |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -3638,8 +3639,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | YellowToGreen |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:19 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -3890,8 +3891,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | setAlarmLampToPatternStep |
| Test Case Name | AlarmHigh_Red |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -4088,8 +4089,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | setAlarmLampToPatternStep |
| Test Case Name | AlarmMedium_Yellow |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -4306,8 +4307,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | setAlarmLampToPatternStep |
| Test Case Name | OK_Green |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -4504,8 +4505,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | testSetCurrentLampPatternOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -4714,8 +4715,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | testSetCurrentLampPatternOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -4924,8 +4925,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | testResetCurrentLampPatternOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
@@ -5122,8 +5123,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | testResetCurrentLampPatternOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:58:32 PM |
- | Date of Execution | 10 DEC 2019 5:58:35 PM |
+ | Date of Creation | 11 DEC 2019 9:45:20 AM |
+ | Date of Execution | 11 DEC 2019 9:45:21 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -651,8 +652,8 @@
Configuration Data
| Environment Name | ALARMMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:13 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:52 AM |
@@ -668,8 +669,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | initAlarmMgmt |
| Test Case Name | initAlarmMgmt_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -958,8 +959,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | execAlarmMgmt |
| Test Case Name | execAlarmMgmt_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -1160,8 +1161,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | execAlarmMgmt |
| Test Case Name | execAlarmMgmt_TimeToPublishStatus |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -1434,8 +1435,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm |
| Test Case Name | activateAlarm_AlreadyActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -1608,8 +1609,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm |
| Test Case Name | activateAlarm_Fault |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -1842,8 +1843,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm |
| Test Case Name | activateAlarm_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -2066,8 +2067,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm |
| Test Case Name | activateAlarm_NoAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -2290,8 +2291,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm |
| Test Case Name | activateAlarm_NotAFault |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -2494,8 +2495,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarmNoData |
| Test Case Name | activateAlarmNoData_AlreadyActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -2650,8 +2651,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarmNoData |
| Test Case Name | activateAlarmNoData_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -2880,8 +2881,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm1Data |
| Test Case Name | activateAlarm1Data_AlreadyActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:49 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -3096,8 +3097,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm1Data |
| Test Case Name | activateAlarm1Data_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -3404,8 +3405,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm2Data |
| Test Case Name | activateAlarm2Data_AlreadyActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -3680,8 +3681,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | activateAlarm2Data |
| Test Case Name | activateAlarm2Data_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -4066,8 +4067,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_ClearNotAllowed |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -4222,8 +4223,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -4408,8 +4409,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_NoAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -4594,8 +4595,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:29 AM |
@@ -4816,8 +4817,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_NotActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -4972,8 +4973,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | clearAlarm |
| Test Case Name | clearAlarm_NotInFIFO |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:27 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -5206,8 +5207,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | isAlarmActive |
| Test Case Name | isAlarmActive_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -5374,8 +5375,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmActive |
| Test Case Name | getAlarmActive_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -5572,8 +5573,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmActive |
| Test Case Name | getAlarmActive_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -5740,8 +5741,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmActive |
| Test Case Name | getAlarmActive_Override |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -5920,8 +5921,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmStartTime |
| Test Case Name | getAlarmStartTime_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6074,8 +6075,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmStartTime |
| Test Case Name | getAlarmStartTime_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6242,8 +6243,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getAlarmStartTime |
| Test Case Name | getAlarmStartTime_Override |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6422,8 +6423,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | updateAlarmsState |
| Test Case Name | updateAlarmsState_NoAlarmsActive |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6568,8 +6569,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | updateAlarmsState |
| Test Case Name | updateAlarmsState_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:47 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6756,8 +6757,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_High |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -6906,8 +6907,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_HighFault |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7062,8 +7063,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_InvalidAlarmState |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7230,8 +7231,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_Low |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7380,8 +7381,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_Manual |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7538,8 +7539,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_Medium |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7688,8 +7689,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | setAlarmLampAndAudio |
| Test Case Name | setAlarmLampAndAudio_NoAlarms |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -7838,8 +7839,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | resetAlarmPriorityFIFO |
| Test Case Name | resetAlarmPriorityFIFO_InvalidPriority |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8054,8 +8055,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | resetAlarmPriorityFIFO |
| Test Case Name | resetAlarmPriorityFIFO_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8204,8 +8205,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getPublishAlarmStatusInterval |
| Test Case Name | getPublishAlarmStatusInterval_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8366,8 +8367,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | getPublishAlarmStatusInterval |
| Test Case Name | getPublishAlarmStatusInterval_Override |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8528,8 +8529,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStatusPublishIntervalOverride |
| Test Case Name | testSetAlarmStatusPublishIntervalOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8738,8 +8739,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStatusPublishIntervalOverride |
| Test Case Name | testSetAlarmStatusPublishIntervalOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -8948,8 +8949,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStatusPublishIntervalOverride |
| Test Case Name | testResetAlarmStatusPublishIntervalOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -9146,8 +9147,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStatusPublishIntervalOverride |
| Test Case Name | testResetAlarmStatusPublishIntervalOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -9344,8 +9345,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStateOverride |
| Test Case Name | testSetAlarmStateOverride_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -9542,8 +9543,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStateOverride |
| Test Case Name | testSetAlarmStateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -9770,8 +9771,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStateOverride |
| Test Case Name | testSetAlarmStateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -9998,8 +9999,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStateOverride |
| Test Case Name | testResetAlarmStateOverride_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -10184,8 +10185,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStateOverride |
| Test Case Name | testResetAlarmStateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -10400,8 +10401,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStateOverride |
| Test Case Name | testResetAlarmStateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -10616,8 +10617,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStartOverride |
| Test Case Name | testSetAlarmStartOverride_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -10752,8 +10753,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStartOverride |
| Test Case Name | testSetAlarmStartOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -11010,8 +11011,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStartOverride |
| Test Case Name | testSetAlarmStartOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -11238,8 +11239,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testSetAlarmStartOverride |
| Test Case Name | testSetAlarmStartOverride_ValueTooLarge |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -11496,8 +11497,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStartOverride |
| Test Case Name | testResetAlarmStartOverride_InvalidAlarm |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -11682,8 +11683,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStartOverride |
| Test Case Name | testResetAlarmStartOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
@@ -11898,8 +11899,8 @@
| Unit Under Test | AlarmMgmt |
| Subprogram | testResetAlarmStartOverride |
| Test Case Name | testResetAlarmStartOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:58:46 PM |
- | Date of Execution | 10 DEC 2019 5:58:50 PM |
+ | Date of Creation | 11 DEC 2019 9:45:28 AM |
+ | Date of Execution | 11 DEC 2019 9:45:30 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -955,8 +956,8 @@
Configuration Data
| Environment Name | BLOODFLOW |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:15 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:54 AM |
@@ -972,8 +973,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | initBloodFlow |
| Test Case Name | initBloodFlow_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -1230,8 +1231,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -1416,8 +1417,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_FlowTooHigh |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -1662,8 +1663,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_OffToRateFwd |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -1878,8 +1879,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_OffToRateRev |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -2094,8 +2095,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateDecrease |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -2316,8 +2317,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -2538,8 +2539,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -2760,8 +2761,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateIncrease |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -2982,8 +2983,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -3204,8 +3205,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -3426,8 +3427,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpTargetFlowRate |
| Test Case Name | setBloodPumpTargetFlowRate_ZeroRate |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -3648,8 +3649,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowMonitor |
| Test Case Name | execBloodFlowMonitor_InitMode_WrapFlowBuffer |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -3998,8 +3999,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowMonitor |
| Test Case Name | execBloodFlowMonitor_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:40 AM |
@@ -4348,8 +4349,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | execBloodFlowController_ControlToTargetState |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -4486,8 +4487,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | execBloodFlowController_InvalidState |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -4662,8 +4663,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | execBloodFlowController_OffState |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -4798,8 +4799,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | execBloodFlowController_RampDown |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -4926,8 +4927,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | execBloodFlowController_RampUpState |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -5054,8 +5055,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpOffState |
| Test Case Name | handleBloodPumpOffState_NewRateSet |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -5310,8 +5311,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpOffState |
| Test Case Name | handleBloodPumpOffState_NoChange |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -5466,8 +5467,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingUpState |
| Test Case Name | handleBloodPumpRampingUpState_RampComplete |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -5628,8 +5629,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingUpState |
| Test Case Name | handleBloodPumpRampingUpState_StillRamping |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -5838,8 +5839,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingUpState |
| Test Case Name | handleBloodPumpRampingUpState_StopRequested |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6042,8 +6043,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingDownState |
| Test Case Name | handleBloodPumpRampingDownState_ |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6204,8 +6205,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingDownState |
| Test Case Name | handleBloodPumpRampingDownState_RampComplete |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6404,8 +6405,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpRampingDownState |
| Test Case Name | handleBloodPumpRampingDownState_StillRamping |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6614,8 +6615,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:07 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6854,8 +6855,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_NotControlInterval |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -6998,8 +6999,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_PWM_Max |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -7238,8 +7239,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_PWM_Min |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -7478,8 +7479,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_Reverse |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -7718,8 +7719,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_TermsMaxRange |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -7958,8 +7959,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | handleBloodPumpControlToTargetState |
| Test Case Name | handleBloodPumpControlToTargetState_TermsMaxRange2 |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -8198,8 +8199,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | stopBloodPump |
| Test Case Name | stopBloodPump_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -8366,8 +8367,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | releaseBloodPumpStop |
| Test Case Name | releaseBloodPumpStop_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -8482,8 +8483,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpDirection |
| Test Case Name | setBloodPumpDirection_FWD |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -8644,8 +8645,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpDirection |
| Test Case Name | setBloodPumpDirection_InvalidDirection |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -8878,8 +8879,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | setBloodPumpDirection |
| Test Case Name | setBloodPumpDirection_REV |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9040,8 +9041,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getPublishBloodFlowDataInterval |
| Test Case Name | getPublishBloodFlowDataInterval_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9208,8 +9209,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getPublishBloodFlowDataInterval |
| Test Case Name | getPublishBloodFlowDataInterval_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9376,8 +9377,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getTargetBloodFlowRate |
| Test Case Name | getTargetBloodFlowRate_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9544,8 +9545,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getTargetBloodFlowRate |
| Test Case Name | getTargetBloodFlowRate_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9712,8 +9713,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodFlowRate |
| Test Case Name | getMeasuredBloodFlowRate_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -9880,8 +9881,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodFlowRate |
| Test Case Name | getMeasuredBloodFlowRate_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10048,8 +10049,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpRotorSpeed |
| Test Case Name | getMeasuredBloodPumpRotorSpeed_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10198,8 +10199,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpRotorSpeed |
| Test Case Name | getMeasuredBloodPumpRotorSpeed_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10366,8 +10367,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpSpeed |
| Test Case Name | getMeasuredBloodPumpSpeed_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10534,8 +10535,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpSpeed |
| Test Case Name | getMeasuredBloodPumpSpeed_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10702,8 +10703,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpMCSpeed |
| Test Case Name | getMeasuredBloodPumpMCSpeed_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -10852,8 +10853,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpMCSpeed |
| Test Case Name | getMeasuredBloodPumpMCSpeed_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11020,8 +11021,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpMCCurrent |
| Test Case Name | getMeasuredBloodPumpCurrent_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11188,8 +11189,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | getMeasuredBloodPumpMCCurrent |
| Test Case Name | getMeasuredBloodPumpCurrent_Override |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11356,8 +11357,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | publishBloodFlowData |
| Test Case Name | publishBloodFlowData_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11568,8 +11569,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | publishBloodFlowData |
| Test Case Name | publishBloodFlowData_NotIntervalTime |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11732,8 +11733,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpDirection |
| Test Case Name | checkBloodPumpDirection_Fail |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -11944,8 +11945,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpDirection |
| Test Case Name | checkBloodPumpDirection_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12086,8 +12087,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpDirection |
| Test Case Name | checkBloodPumpDirection_NotControlling |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12210,8 +12211,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_OFFOk |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12332,8 +12333,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_OFFTooHighAlarm |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12514,8 +12515,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_OFFTooHighShortTime |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12636,8 +12637,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_RunningOk |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12758,8 +12759,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_RunningTooHighAlarm |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -12940,8 +12941,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_RunningTooHighShortTime |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -13062,8 +13063,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_RunningTooLowAlarm |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:41 AM |
@@ -13244,8 +13245,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | checkBloodPumpMCCurrent |
| Test Case Name | checkBloodPumpMCCurrent_RunningTooLowShortTime |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -13366,8 +13367,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowTest |
| Test Case Name | execBloodFlowTest_InvalidState |
- | Date of Creation | 10 DEC 2019 5:59:03 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:38 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -13510,8 +13511,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetBloodFlowDataPublishIntervalOverride |
| Test Case Name | testSetBloodFlowDataPublishIntervalOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -13720,8 +13721,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetBloodFlowDataPublishIntervalOverride |
| Test Case Name | testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -13930,8 +13931,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetBloodFlowDataPublishIntervalOverride |
| Test Case Name | testResetBloodFlowDataPublishIntervalOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -14128,8 +14129,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetBloodFlowDataPublishIntervalOverride |
| Test Case Name | testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -14326,8 +14327,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetTargetBloodFlowRateOverride |
| Test Case Name | testSetTargetBloodFlowRateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -14536,8 +14537,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetTargetBloodFlowRateOverride |
| Test Case Name | testSetTargetBloodFlowRateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -14746,8 +14747,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetTargetBloodFlowRateOverride |
| Test Case Name | testResetTargetBloodFlowRateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:08 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -14944,8 +14945,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetTargetBloodFlowRateOverride |
| Test Case Name | testResetTargetBloodFlowRateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -15142,8 +15143,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodFlowRateOverride |
| Test Case Name | testSetMeasuredBloodFlowRateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -15352,8 +15353,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodFlowRateOverride |
| Test Case Name | testSetMeasuredBloodFlowRateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -15562,8 +15563,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodFlowRateOverride |
| Test Case Name | testResetMeasuredBloodFlowRateOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -15760,8 +15761,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodFlowRateOverride |
| Test Case Name | testResetMeasuredBloodFlowRateOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -15958,8 +15959,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpRotorSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -16168,8 +16169,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpRotorSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -16378,8 +16379,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpRotorSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -16576,8 +16577,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpRotorSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -16774,8 +16775,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -16984,8 +16985,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -17194,8 +17195,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -17392,8 +17393,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -17590,8 +17591,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpMCSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpMCSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -17800,8 +17801,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpMCSpeedOverride |
| Test Case Name | testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -18010,8 +18011,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpMCSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpMCSpeedOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -18208,8 +18209,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpMCSpeedOverride |
| Test Case Name | testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -18406,8 +18407,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpMCCurrentOverride |
| Test Case Name | testSetMeasuredBloodPumpCurrentOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -18616,8 +18617,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testSetMeasuredBloodPumpMCCurrentOverride |
| Test Case Name | testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -18826,8 +18827,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpMCCurrentOverride |
| Test Case Name | testResetMeasuredBloodPumpCurrentOverride_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
@@ -19024,8 +19025,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | testResetMeasuredBloodPumpMCCurrentOverride |
| Test Case Name | testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn |
- | Date of Creation | 10 DEC 2019 5:59:04 PM |
- | Date of Execution | 10 DEC 2019 5:59:09 PM |
+ | Date of Creation | 11 DEC 2019 9:45:39 AM |
+ | Date of Execution | 11 DEC 2019 9:45:42 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -587,8 +588,8 @@
Configuration Data
| Environment Name | BUTTONS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:17 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:56 AM |
@@ -604,8 +605,8 @@
| Unit Under Test | Buttons |
| Subprogram | initButtons |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:21 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -756,8 +757,8 @@
| Unit Under Test | Buttons |
| Subprogram | execButtons |
| Test Case Name | ButtonsPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:21 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1014,8 +1015,8 @@
| Unit Under Test | Buttons |
| Subprogram | execButtons |
| Test Case Name | NoButtonsPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:21 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1232,8 +1233,8 @@
| Unit Under Test | Buttons |
| Subprogram | isStopButtonPressed |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:21 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1376,8 +1377,8 @@
| Unit Under Test | Buttons |
| Subprogram | getOffButtonState |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:21 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1544,8 +1545,8 @@
| Unit Under Test | Buttons |
| Subprogram | getOffButtonState |
| Test Case Name | Override |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1712,8 +1713,8 @@
| Unit Under Test | Buttons |
| Subprogram | getStopButtonState |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -1880,8 +1881,8 @@
| Unit Under Test | Buttons |
| Subprogram | getStopButtonState |
| Test Case Name | Override |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:51 AM |
@@ -2048,8 +2049,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | Completed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -2222,8 +2223,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | InProgressStuckButtonReleased |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -2396,8 +2397,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | InProgressStuckButtonTimeout_OffPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -2672,8 +2673,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | InProgressStuckButtonTimeout_StopPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -2948,8 +2949,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | InvalidState |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -3152,8 +3153,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | StartTestNoButtonsPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -3356,8 +3357,8 @@
| Unit Under Test | Buttons |
| Subprogram | execStuckButtonTest |
| Test Case Name | StartTestStuckButton |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -3602,8 +3603,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | InvalidCmdFromUI |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -3752,8 +3753,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | InvalidModeToTurnOff |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -3932,8 +3933,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | OffButtonRejected |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4082,8 +4083,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | OffDuringFaultMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4262,8 +4263,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | OffDuringServiceMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4442,8 +4443,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | OffDuringStandbyMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4622,8 +4623,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | userConfirmOffButton_NoConfirmExpected |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4784,8 +4785,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | userConfirmOffButton_NoRejectExpected |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -4946,8 +4947,8 @@
| Unit Under Test | Buttons |
| Subprogram | isCurrentOpModeOkToTurnOff |
| Test Case Name | FaultMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5088,8 +5089,8 @@
| Unit Under Test | Buttons |
| Subprogram | isCurrentOpModeOkToTurnOff |
| Test Case Name | InvalidMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5230,8 +5231,8 @@
| Unit Under Test | Buttons |
| Subprogram | isCurrentOpModeOkToTurnOff |
| Test Case Name | ServiceMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5372,8 +5373,8 @@
| Unit Under Test | Buttons |
| Subprogram | isCurrentOpModeOkToTurnOff |
| Test Case Name | StandbyMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5514,8 +5515,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | NoChangeNoPending |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5636,8 +5637,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | PressedToReleasedOffPendingFirstPulse |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:49 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5780,8 +5781,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | PressedToReleasedOffPendingIntermediate |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -5914,8 +5915,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | PressedToReleasedOffPendingLastPulse |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6058,8 +6059,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | ReleasedToPressedFaultMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6220,8 +6221,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | ReleasedToPressedInvalidMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6372,8 +6373,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | ReleasedToPressedServiceMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6534,8 +6535,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | ReleasedToPressedStandbyMode |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6696,8 +6697,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | handleOffButtonProcessing_OffRequestPending |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6806,8 +6807,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | handleOffButtonProcessing_OffRequestPendingExpired |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -6946,8 +6947,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleStopButtonProcessing |
| Test Case Name | NoChange |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7068,8 +7069,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleStopButtonProcessing |
| Test Case Name | PressTimedOut |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7248,8 +7249,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleStopButtonProcessing |
| Test Case Name | PressedToReleased |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7370,8 +7371,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleStopButtonProcessing |
| Test Case Name | ReleasedToPressed |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7570,8 +7571,8 @@
| Unit Under Test | Buttons |
| Subprogram | testSetOffButtonStateOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7780,8 +7781,8 @@
| Unit Under Test | Buttons |
| Subprogram | testSetOffButtonStateOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -7990,8 +7991,8 @@
| Unit Under Test | Buttons |
| Subprogram | testResetOffButtonStateOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -8188,8 +8189,8 @@
| Unit Under Test | Buttons |
| Subprogram | testResetOffButtonStateOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -8386,8 +8387,8 @@
| Unit Under Test | Buttons |
| Subprogram | testSetStopButtonStateOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -8596,8 +8597,8 @@
| Unit Under Test | Buttons |
| Subprogram | testSetStopButtonStateOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -8806,8 +8807,8 @@
| Unit Under Test | Buttons |
| Subprogram | testResetStopButtonStateOverride |
| Test Case Name | TestingActive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
@@ -9004,8 +9005,8 @@
| Unit Under Test | Buttons |
| Subprogram | testResetStopButtonStateOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 5:59:20 PM |
- | Date of Execution | 10 DEC 2019 5:59:22 PM |
+ | Date of Creation | 11 DEC 2019 9:45:50 AM |
+ | Date of Execution | 11 DEC 2019 9:45:52 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -355,8 +356,8 @@
Configuration Data
| Environment Name | COMMBUFFERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:21 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:59 AM |
@@ -372,8 +373,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | initCommBuffers |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -806,8 +807,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | addToCommBuffer |
| Test Case Name | InsufficientSpaceForAdd |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -1014,8 +1015,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | addToCommBuffer |
| Test Case Name | InvalidBuffer |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -1160,8 +1161,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | addToCommBuffer |
| Test Case Name | SuccessfulAdd |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -1622,8 +1623,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getFromCommBuffer |
| Test Case Name | InvalidBuffer |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -1768,8 +1769,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getFromCommBuffer |
| Test Case Name | LengthLargerThanBuffer |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -1976,8 +1977,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getFromCommBuffer |
| Test Case Name | LengthLargerThanContents |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -2184,8 +2185,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getFromCommBuffer |
| Test Case Name | SuccessfulGetFromBothBuffers |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -2478,8 +2479,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getFromCommBuffer |
| Test Case Name | SuccessfulGetFromInactiveBufferOnly |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -2772,8 +2773,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | peekFromCommBuffer |
| Test Case Name | InvalidBuffer |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -2918,8 +2919,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | peekFromCommBuffer |
| Test Case Name | LengthLargerThanBuffer |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -3126,8 +3127,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | peekFromCommBuffer |
| Test Case Name | LengthLargerThanContents |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -3334,8 +3335,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | peekFromCommBuffer |
| Test Case Name | SuccessfulPeekFromBothBuffers |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:49 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -3628,8 +3629,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | peekFromCommBuffer |
| Test Case Name | SuccessfulPeekFromInactiveBufferOnly |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -3916,8 +3917,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | numberOfBytesInCommBuffer |
| Test Case Name | InvalidBuffer |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -4050,8 +4051,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | numberOfBytesInCommBuffer |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -4224,8 +4225,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | switchDoubleBuffer |
| Test Case Name | Switch0To1 |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -4398,8 +4399,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | switchDoubleBuffer |
| Test Case Name | Switch1To0 |
- | Date of Creation | 10 DEC 2019 5:59:47 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:07 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -4572,8 +4573,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getDataFromInactiveBuffer |
| Test Case Name | ConsumeAllDataInInactiveBuffer |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
@@ -4836,8 +4837,8 @@
| Unit Under Test | CommBuffers |
| Subprogram | getDataFromInactiveBuffer |
| Test Case Name | ConsumePortionOfDataInInactiveBuffer |
- | Date of Creation | 10 DEC 2019 5:59:46 PM |
- | Date of Execution | 10 DEC 2019 5:59:50 PM |
+ | Date of Creation | 11 DEC 2019 9:46:06 AM |
+ | Date of Execution | 11 DEC 2019 9:46:08 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -379,8 +380,8 @@
Configuration Data
| Environment Name | COMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:19 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:57 AM |
@@ -396,8 +397,8 @@
| Unit Under Test | Comm |
| Subprogram | signalCANXmitsInitiated |
| Test Case Name | signalCANXmitsInitiated_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:34 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -500,8 +501,8 @@
| Unit Under Test | Comm |
| Subprogram | signalCANXmitsCompleted |
| Test Case Name | signalCANXmitsCompleted_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:34 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -604,8 +605,8 @@
| Unit Under Test | Comm |
| Subprogram | signalSCI1XmitsInitiated |
| Test Case Name | signalSCI1XmitsInitiated_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:34 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -708,8 +709,8 @@
| Unit Under Test | Comm |
| Subprogram | signalSCI1XmitsCompleted |
| Test Case Name | signalSCI1XmitsCompleted_NominalPath |
- | Date of Creation | 10 DEC 2019 5:59:34 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -812,8 +813,8 @@
| Unit Under Test | Comm |
| Subprogram | setSCI1DMAReceiveInterrupt |
| Test Case Name | setSCI1DMAReceiveInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -928,8 +929,8 @@
| Unit Under Test | Comm |
| Subprogram | setSCI1DMATransmitInterrupt |
| Test Case Name | setSCI1DMATransmitInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1044,8 +1045,8 @@
| Unit Under Test | Comm |
| Subprogram | clearSCI1DMAReceiveInterrupt |
| Test Case Name | clearSCI1DMAReceiveInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1160,8 +1161,8 @@
| Unit Under Test | Comm |
| Subprogram | clearSCI1DMATransmitInterrupt |
| Test Case Name | clearSCI1DMATransmitInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1276,8 +1277,8 @@
| Unit Under Test | Comm |
| Subprogram | setSCI2DMAReceiveInterrupt |
| Test Case Name | setSCI2DMAReceiveInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1392,8 +1393,8 @@
| Unit Under Test | Comm |
| Subprogram | setSCI2DMATransmitInterrupt |
| Test Case Name | setSCI2DMATransmitInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1508,8 +1509,8 @@
| Unit Under Test | Comm |
| Subprogram | clearSCI2DMAReceiveInterrupt |
| Test Case Name | clearSCI2DMAReceiveInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1624,8 +1625,8 @@
| Unit Under Test | Comm |
| Subprogram | clearSCI2DMATransmitInterrupt |
| Test Case Name | clearSCI2DMATransmitInterrupt |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1740,8 +1741,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI1DMATransmitInProgress |
| Test Case Name | isSCI1DMATransmitInProgress_DMABusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -1914,8 +1915,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI1DMATransmitInProgress |
| Test Case Name | isSCI1DMATransmitInProgress_InProgress |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2094,8 +2095,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI1DMATransmitInProgress |
| Test Case Name | isSCI1DMATransmitInProgress_NotBusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2268,8 +2269,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI1DMATransmitInProgress |
| Test Case Name | isSCI1DMATransmitInProgress_TransmitterBusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2442,8 +2443,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI2DMATransmitInProgress |
| Test Case Name | isSCI2DMATransmitInProgress_DMABusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2616,8 +2617,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI2DMATransmitInProgress |
| Test Case Name | isSCI2DMATransmitInProgress_NotBusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2790,8 +2791,8 @@
| Unit Under Test | Comm |
| Subprogram | isSCI2DMATransmitInProgress |
| Test Case Name | isSCI2DMATransmitInProgress_TransmitterBusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -2964,8 +2965,8 @@
| Unit Under Test | Comm |
| Subprogram | isCAN1TransmitInProgress |
| Test Case Name | isCAN1TransmitInProgress_Ch1_8_Busy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -3132,8 +3133,8 @@
| Unit Under Test | Comm |
| Subprogram | isCAN1TransmitInProgress |
| Test Case Name | isCAN1TransmitInProgress_Ch9_16_Busy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -3300,8 +3301,8 @@
| Unit Under Test | Comm |
| Subprogram | isCAN1TransmitInProgress |
| Test Case Name | isCAN1TransmitInProgress_InProgress |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
@@ -3474,8 +3475,8 @@
| Unit Under Test | Comm |
| Subprogram | isCAN1TransmitInProgress |
| Test Case Name | isCAN1TransmitInProgress_NotBusy |
- | Date of Creation | 10 DEC 2019 5:59:33 PM |
- | Date of Execution | 10 DEC 2019 5:59:36 PM |
+ | Date of Creation | 11 DEC 2019 9:45:59 AM |
+ | Date of Execution | 11 DEC 2019 9:46:00 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -291,8 +292,8 @@
Configuration Data
| Environment Name | CPLD |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:23 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:01 AM |
@@ -308,8 +309,8 @@
| Unit Under Test | CPLD |
| Subprogram | initCPLD |
| Test Case Name | initCPLD_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -496,8 +497,8 @@
| Unit Under Test | CPLD |
| Subprogram | toggleCPLDWatchdog |
| Test Case Name | toggleCPLDWatchdog_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -598,8 +599,8 @@
| Unit Under Test | CPLD |
| Subprogram | getCPLDWatchdogExpired |
| Test Case Name | getCPLDWatchdogExpired_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -746,8 +747,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampGreen |
| Test Case Name | setCPLDLampGreen_Off |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -902,8 +903,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampGreen |
| Test Case Name | setCPLDLampGreen_On |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1058,8 +1059,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampBlue |
| Test Case Name | setCPLDLampBlue_Off |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1214,8 +1215,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampBlue |
| Test Case Name | setCPLDLampBlue_On |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1370,8 +1371,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampRed |
| Test Case Name | setCPLDLampRed_Off |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1526,8 +1527,8 @@
| Unit Under Test | CPLD |
| Subprogram | setCPLDLampRed |
| Test Case Name | setCPLDLampRed_On |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1682,8 +1683,8 @@
| Unit Under Test | CPLD |
| Subprogram | toggleCPLDOffRequest |
| Test Case Name | toggleCPLDOffRequest_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1784,8 +1785,8 @@
| Unit Under Test | CPLD |
| Subprogram | getCPLDOffButton |
| Test Case Name | getCPLDOffButton_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
@@ -1932,8 +1933,8 @@
| Unit Under Test | CPLD |
| Subprogram | getCPLDStopButton |
| Test Case Name | getCPLDStopButton_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:00 PM |
- | Date of Execution | 10 DEC 2019 6:00:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:14 AM |
+ | Date of Execution | 11 DEC 2019 9:46:16 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -611,8 +612,8 @@
Configuration Data
| Environment Name | FPGA |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:24 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:02 AM |
@@ -628,8 +629,8 @@
| Unit Under Test | FPGA |
| Subprogram | initFPGA |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -1105,7 +1106,7 @@
| SADD |
unsigned int |
- 532289984 |
+ 1562163648 |
|
@@ -1213,7 +1214,7 @@
| DADD |
unsigned int |
- 532290256 |
+ 1562163920 |
|
@@ -1309,7 +1310,7 @@
| SADD |
unsigned int |
- 532290248 |
+ 1562163912 |
|
@@ -1417,7 +1418,7 @@
| DADD |
unsigned int |
- 532290272 |
+ 1562163936 |
|
@@ -1700,8 +1701,8 @@
| Unit Under Test | FPGA |
| Subprogram | resetFPGACommFlags |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -1840,8 +1841,8 @@
| Unit Under Test | FPGA |
| Subprogram | signalFPGAReceiptCompleted |
| Test Case Name | BulkWriteAndReadInProgressAfterWrite |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2120,8 +2121,8 @@
| Unit Under Test | FPGA |
| Subprogram | signalFPGAReceiptCompleted |
| Test Case Name | NothingInProgress |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2260,8 +2261,8 @@
| Unit Under Test | FPGA |
| Subprogram | signalFPGAReceiptCompleted |
| Test Case Name | ReadCmdInProgress |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2400,8 +2401,8 @@
| Unit Under Test | FPGA |
| Subprogram | signalFPGAReceiptCompleted |
| Test Case Name | WriteCmdInProgress |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2540,8 +2541,8 @@
| Unit Under Test | FPGA |
| Subprogram | signalFPGATransmitCompleted |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2680,8 +2681,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | CommErrorTooManyRetries |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2852,8 +2853,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | FailedState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -2998,8 +2999,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | InvalidState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -3174,8 +3175,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | OutgoingState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -3320,8 +3321,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | RcvAllSensorsState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -3924,8 +3925,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | RcvHeaderState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -4234,8 +4235,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAIn |
| Test Case Name | StartState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -4380,8 +4381,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAOut |
| Test Case Name | FailedState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -4484,8 +4485,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAOut |
| Test Case Name | IncomingState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -4588,8 +4589,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAOut |
| Test Case Name | InvalidState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -4722,8 +4723,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAOut |
| Test Case Name | ReadHeaderState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -5042,8 +5043,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGAOut |
| Test Case Name | WriteAllActuatorsState |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:14 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -5404,8 +5405,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReadHeaderState |
| Test Case Name | NominalCase |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -5722,8 +5723,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveHeaderState |
| Test Case Name | BadCRC |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -6036,8 +6037,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveHeaderState |
| Test Case Name | NAKResponse |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -6314,8 +6315,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveHeaderState |
| Test Case Name | NoResponseReceived |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -6592,8 +6593,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveHeaderState |
| Test Case Name | NominalCase |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -6906,8 +6907,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAWriteAllActuatorsState |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -7400,8 +7401,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveAllSensorsState |
| Test Case Name | BadCRC |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -8002,8 +8003,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveAllSensorsState |
| Test Case Name | NAKResponse |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -8208,8 +8209,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveAllSensorsState |
| Test Case Name | NoResponseReceived |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -8402,8 +8403,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveAllSensorsState |
| Test Case Name | NoWriteResponseReceived |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -8596,8 +8597,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReceiveAllSensorsState |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -9174,8 +9175,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGATest |
| Test Case Name | TestFailed |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:24 AM |
@@ -9384,8 +9385,8 @@
| Unit Under Test | FPGA |
| Subprogram | execFPGATest |
| Test Case Name | TestPassed |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -9534,8 +9535,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForWriteCmd |
| Test Case Name | LengthTooLarge |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -9694,8 +9695,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForWriteCmd |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -9844,8 +9845,8 @@
| Unit Under Test | FPGA |
| Subprogram | startDMAWriteCmd |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:13 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -10234,8 +10235,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForWriteResp |
| Test Case Name | LengthTooLarge |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -10394,8 +10395,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForWriteResp |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -10544,8 +10545,8 @@
| Unit Under Test | FPGA |
| Subprogram | startDMAReceiptOfWriteResp |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:13 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -10934,8 +10935,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForReadCmd |
| Test Case Name | LengthTooLarge |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -11094,8 +11095,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForReadCmd |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -11244,8 +11245,8 @@
| Unit Under Test | FPGA |
| Subprogram | startDMAReadCmd |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -11634,8 +11635,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForReadResp |
| Test Case Name | LengthTooLarge |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -11794,8 +11795,8 @@
| Unit Under Test | FPGA |
| Subprogram | setupDMAForReadResp |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -11944,8 +11945,8 @@
| Unit Under Test | FPGA |
| Subprogram | startDMAReceiptOfReadResp |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -12334,8 +12335,8 @@
| Unit Under Test | FPGA |
| Subprogram | getFPGAId |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -12484,8 +12485,8 @@
| Unit Under Test | FPGA |
| Subprogram | getFPGARev |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -12634,8 +12635,8 @@
| Unit Under Test | FPGA |
| Subprogram | getFPGAStatus |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -12784,8 +12785,8 @@
| Unit Under Test | FPGA |
| Subprogram | setFPGAControl |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -12934,8 +12935,8 @@
| Unit Under Test | FPGA |
| Subprogram | getFPGABloodFlow |
| Test Case Name | getFPGABloodFlow_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -13084,8 +13085,8 @@
| Unit Under Test | FPGA |
| Subprogram | getFPGADialysateFlow |
| Test Case Name | getFPGADialysateFlow_NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:22 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -13234,8 +13235,8 @@
| Unit Under Test | FPGA |
| Subprogram | consumeUnexpectedData |
| Test Case Name | DataBytePending |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
@@ -13406,8 +13407,8 @@
| Unit Under Test | FPGA |
| Subprogram | consumeUnexpectedData |
| Test Case Name | NoData |
- | Date of Creation | 10 DEC 2019 6:00:12 PM |
- | Date of Execution | 10 DEC 2019 6:00:15 PM |
+ | Date of Creation | 11 DEC 2019 9:46:21 AM |
+ | Date of Execution | 11 DEC 2019 9:46:25 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -355,8 +356,8 @@
Configuration Data
| Environment Name | INTERRUPTS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:26 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:04 AM |
@@ -372,8 +373,8 @@
| Unit Under Test | Interrupts |
| Subprogram | phantomInterrupt |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -464,8 +465,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canMessageNotification |
| Test Case Name | InvalidCANNode |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -596,8 +597,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canMessageNotification |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -738,8 +739,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_BusOff |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -900,8 +901,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_BusPassive |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -1062,8 +1063,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_BusWarning |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -1224,8 +1225,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_InvalidCANNode |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -1346,8 +1347,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_Other |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -1508,8 +1509,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canErrorNotification |
| Test Case Name | canErrorNotification_ParityError |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:32 AM |
@@ -1670,8 +1671,8 @@
| Unit Under Test | Interrupts |
| Subprogram | sciNotification |
| Test Case Name | FramingError_SCI |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -1820,8 +1821,8 @@
| Unit Under Test | Interrupts |
| Subprogram | sciNotification |
| Test Case Name | FramingError_SCI2 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -1970,8 +1971,8 @@
| Unit Under Test | Interrupts |
| Subprogram | sciNotification |
| Test Case Name | InvalidSCI |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2132,8 +2133,8 @@
| Unit Under Test | Interrupts |
| Subprogram | sciNotification |
| Test Case Name | OverrunError_SCI |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2282,8 +2283,8 @@
| Unit Under Test | Interrupts |
| Subprogram | sciNotification |
| Test Case Name | OverrunError_SCI2 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2432,8 +2433,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | DMAChannel0 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2616,8 +2617,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | DMAChannel1 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2800,8 +2801,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | DMAChannel2 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -2984,8 +2985,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | DMAChannel3 |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -3168,8 +3169,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | InvalidChannel |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
@@ -3312,8 +3313,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | UnexpectedInterruptType |
- | Date of Creation | 10 DEC 2019 6:00:26 PM |
- | Date of Execution | 10 DEC 2019 6:00:29 PM |
+ | Date of Creation | 11 DEC 2019 9:46:31 AM |
+ | Date of Execution | 11 DEC 2019 9:46:33 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -243,8 +244,8 @@
Configuration Data
| Environment Name | INT_ALARMLAMP |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:28 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:06 AM |
@@ -260,8 +261,8 @@
| Unit Under Test | ModeFault |
| Subprogram | transitionToFaultMode |
| Test Case Name | requestAlarmLampPattern |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:49 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
@@ -376,8 +377,8 @@
| Unit Under Test | ModeInitPOST |
| Subprogram | execInitAndPOSTMode |
| Test Case Name | execAlarmLampTest |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:49 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
@@ -518,8 +519,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmLampPatternOverrideRequest |
| Test Case Name | testResetCurrentLampPatternOverride |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:50 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
@@ -880,8 +881,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmLampPatternOverrideRequest |
| Test Case Name | testSetCurrentLampPatternOverride |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:50 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
@@ -1236,8 +1237,8 @@
| Unit Under Test | TaskGeneral |
| Subprogram | taskGeneral |
| Test Case Name | execAlarmLamp |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:50 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
@@ -1484,8 +1485,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initAlarmLamp |
- | Date of Creation | 10 DEC 2019 6:00:55 PM |
- | Date of Execution | 10 DEC 2019 6:01:02 PM |
+ | Date of Creation | 11 DEC 2019 9:46:50 AM |
+ | Date of Execution | 11 DEC 2019 9:46:51 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -227,8 +228,8 @@
Configuration Data
| Environment Name | INT_ALARMMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:30 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:07 AM |
@@ -244,8 +245,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowMonitor |
| Test Case Name | activateAlarm1Data |
- | Date of Creation | 10 DEC 2019 6:01:23 PM |
- | Date of Execution | 10 DEC 2019 6:01:25 PM |
+ | Date of Creation | 11 DEC 2019 9:47:04 AM |
+ | Date of Execution | 11 DEC 2019 9:47:05 AM |
@@ -516,8 +517,8 @@
| Unit Under Test | BloodFlow |
| Subprogram | execBloodFlowController |
| Test Case Name | activateAlarm2Data |
- | Date of Creation | 10 DEC 2019 6:01:23 PM |
- | Date of Execution | 10 DEC 2019 6:01:25 PM |
+ | Date of Creation | 11 DEC 2019 9:47:04 AM |
+ | Date of Execution | 11 DEC 2019 9:47:05 AM |
@@ -742,8 +743,8 @@
| Unit Under Test | TaskGeneral |
| Subprogram | taskGeneral |
| Test Case Name | execAlarmMgmt |
- | Date of Creation | 10 DEC 2019 6:01:23 PM |
- | Date of Execution | 10 DEC 2019 6:01:25 PM |
+ | Date of Creation | 11 DEC 2019 9:47:04 AM |
+ | Date of Execution | 11 DEC 2019 9:47:05 AM |
@@ -976,8 +977,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initAlarmMgmt |
- | Date of Creation | 10 DEC 2019 6:01:23 PM |
- | Date of Execution | 10 DEC 2019 6:01:25 PM |
+ | Date of Creation | 11 DEC 2019 9:47:04 AM |
+ | Date of Execution | 11 DEC 2019 9:47:05 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -219,8 +220,8 @@
Configuration Data
| Environment Name | INT_BLOODFLOW |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:31 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:08 AM |
@@ -236,8 +237,8 @@
| Unit Under Test | TaskGeneral |
| Subprogram | taskGeneral |
| Test Case Name | execBloodFlowController |
- | Date of Creation | 10 DEC 2019 6:01:45 PM |
- | Date of Execution | 10 DEC 2019 6:01:47 PM |
+ | Date of Creation | 11 DEC 2019 9:47:16 AM |
+ | Date of Execution | 11 DEC 2019 9:47:17 AM |
@@ -468,8 +469,8 @@
| Unit Under Test | TaskPriority |
| Subprogram | taskPriority |
| Test Case Name | execBloodFlowMonitor |
- | Date of Creation | 10 DEC 2019 6:01:45 PM |
- | Date of Execution | 10 DEC 2019 6:01:47 PM |
+ | Date of Creation | 11 DEC 2019 9:47:16 AM |
+ | Date of Execution | 11 DEC 2019 9:47:17 AM |
@@ -850,8 +851,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initBloodFlow |
- | Date of Creation | 10 DEC 2019 6:01:45 PM |
- | Date of Execution | 10 DEC 2019 6:01:47 PM |
+ | Date of Creation | 11 DEC 2019 9:47:16 AM |
+ | Date of Execution | 11 DEC 2019 9:47:17 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -259,8 +260,8 @@
Configuration Data
| Environment Name | INT_BUTTONS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:33 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:10 AM |
@@ -276,8 +277,8 @@
| Unit Under Test | ModeInitPOST |
| Subprogram | execInitAndPOSTMode |
| Test Case Name | execStuckButtonTest |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -434,8 +435,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleOffButtonConfirmMsgFromUI |
| Test Case Name | userConfirmOffButton |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -666,8 +667,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestOffButtonStateOverrideRequest |
| Test Case Name | testResetOffButtonStateOverride |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -1028,8 +1029,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestOffButtonStateOverrideRequest |
| Test Case Name | testSetOffButtonStateOverride |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -1384,8 +1385,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestStopButtonStateOverrideRequest |
| Test Case Name | testResetStopButtonStateOverride |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -1746,8 +1747,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestStopButtonStateOverrideRequest |
| Test Case Name | testSetStopButtonStateOverride |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:32 AM |
@@ -2102,8 +2103,8 @@
| Unit Under Test | TaskPriority |
| Subprogram | taskPriority |
| Test Case Name | execButtons |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:33 AM |
@@ -2418,8 +2419,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initButtons |
- | Date of Creation | 10 DEC 2019 6:02:10 PM |
- | Date of Execution | 10 DEC 2019 6:02:13 PM |
+ | Date of Creation | 11 DEC 2019 9:47:31 AM |
+ | Date of Execution | 11 DEC 2019 9:47:33 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -219,8 +220,8 @@
Configuration Data
| Environment Name | INT_COMMBUFFERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:34 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:11 AM |
@@ -236,8 +237,8 @@
| Unit Under Test | SystemComm |
| Subprogram | consumeBufferPaddingBeforeSync |
| Test Case Name | peekAndgetFromAndNumberOfBytesInCommBuffer |
- | Date of Creation | 10 DEC 2019 6:02:35 PM |
- | Date of Execution | 10 DEC 2019 6:02:38 PM |
+ | Date of Creation | 11 DEC 2019 9:47:45 AM |
+ | Date of Execution | 11 DEC 2019 9:47:46 AM |
@@ -506,8 +507,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | sendOffButtonMsgToUI |
| Test Case Name | addToCommBuffer |
- | Date of Creation | 10 DEC 2019 6:02:35 PM |
- | Date of Execution | 10 DEC 2019 6:02:38 PM |
+ | Date of Creation | 11 DEC 2019 9:47:45 AM |
+ | Date of Execution | 11 DEC 2019 9:47:46 AM |
@@ -706,8 +707,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initCommBuffers |
- | Date of Creation | 10 DEC 2019 6:02:35 PM |
- | Date of Execution | 10 DEC 2019 6:02:38 PM |
+ | Date of Creation | 11 DEC 2019 9:47:45 AM |
+ | Date of Execution | 11 DEC 2019 9:47:46 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -251,8 +252,8 @@
Configuration Data
| Environment Name | INT_CPLD |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:36 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:13 AM |
@@ -268,8 +269,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | setCPLDLampGreen |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -460,8 +461,8 @@
| Unit Under Test | AlarmLamp |
| Subprogram | execAlarmLampTest |
| Test Case Name | setCPLDLampRed |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -610,8 +611,8 @@
| Unit Under Test | Buttons |
| Subprogram | execButtons |
| Test Case Name | getCPLDOffAndStopButtons |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -794,8 +795,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | toggleCPLDOffRequest |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -940,8 +941,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | getCPLDWatchdogExpired |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -1048,8 +1049,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | petWatchdog |
| Test Case Name | toggleCPLDWatchdog |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
@@ -1160,8 +1161,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initCPLD |
- | Date of Creation | 10 DEC 2019 6:03:00 PM |
- | Date of Execution | 10 DEC 2019 6:03:03 PM |
+ | Date of Creation | 11 DEC 2019 9:48:01 AM |
+ | Date of Execution | 11 DEC 2019 9:48:02 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -235,8 +236,8 @@
Configuration Data
| Environment Name | INT_FPGA |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:37 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:14 AM |
@@ -252,8 +253,8 @@
| Unit Under Test | ModeInitPOST |
| Subprogram | execInitAndPOSTMode |
| Test Case Name | execFPGATest |
- | Date of Creation | 10 DEC 2019 6:03:26 PM |
- | Date of Execution | 10 DEC 2019 6:03:29 PM |
+ | Date of Creation | 11 DEC 2019 9:48:16 AM |
+ | Date of Execution | 11 DEC 2019 9:48:17 AM |
@@ -446,8 +447,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | signalFPGAReceiptCompleted |
- | Date of Creation | 10 DEC 2019 6:03:26 PM |
- | Date of Execution | 10 DEC 2019 6:03:29 PM |
+ | Date of Creation | 11 DEC 2019 9:48:16 AM |
+ | Date of Execution | 11 DEC 2019 9:48:17 AM |
@@ -624,8 +625,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | signalFPGATransmitCompleted |
- | Date of Creation | 10 DEC 2019 6:03:26 PM |
- | Date of Execution | 10 DEC 2019 6:03:29 PM |
+ | Date of Creation | 11 DEC 2019 9:48:16 AM |
+ | Date of Execution | 11 DEC 2019 9:48:17 AM |
@@ -790,8 +791,8 @@
| Unit Under Test | TaskPriority |
| Subprogram | taskPriority |
| Test Case Name | execFPGAInAndOut |
- | Date of Creation | 10 DEC 2019 6:03:26 PM |
- | Date of Execution | 10 DEC 2019 6:03:29 PM |
+ | Date of Creation | 11 DEC 2019 9:48:16 AM |
+ | Date of Execution | 11 DEC 2019 9:48:17 AM |
@@ -1034,8 +1035,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initFPGA |
- | Date of Creation | 10 DEC 2019 6:03:27 PM |
- | Date of Execution | 10 DEC 2019 6:03:29 PM |
+ | Date of Creation | 11 DEC 2019 9:48:16 AM |
+ | Date of Execution | 11 DEC 2019 9:48:17 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -227,8 +228,8 @@
Configuration Data
| Environment Name | INT_MSGQUEUES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:39 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:16 AM |
@@ -244,8 +245,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processIncomingData |
| Test Case Name | addToMsgQueue |
- | Date of Creation | 10 DEC 2019 6:03:51 PM |
- | Date of Execution | 10 DEC 2019 6:03:53 PM |
+ | Date of Creation | 11 DEC 2019 9:48:28 AM |
+ | Date of Execution | 11 DEC 2019 9:48:30 AM |
@@ -546,8 +547,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessages |
| Test Case Name | getFromMsgQueue |
- | Date of Creation | 10 DEC 2019 6:03:51 PM |
- | Date of Execution | 10 DEC 2019 6:03:53 PM |
+ | Date of Creation | 11 DEC 2019 9:48:28 AM |
+ | Date of Execution | 11 DEC 2019 9:48:30 AM |
@@ -750,8 +751,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | sendOffButtonMsgToUI |
| Test Case Name | blankMessage |
- | Date of Creation | 10 DEC 2019 6:03:51 PM |
- | Date of Execution | 10 DEC 2019 6:03:53 PM |
+ | Date of Creation | 11 DEC 2019 9:48:28 AM |
+ | Date of Execution | 11 DEC 2019 9:48:30 AM |
@@ -944,8 +945,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initMsgQueues |
- | Date of Creation | 10 DEC 2019 6:03:51 PM |
- | Date of Execution | 10 DEC 2019 6:03:53 PM |
+ | Date of Creation | 11 DEC 2019 9:48:28 AM |
+ | Date of Execution | 11 DEC 2019 9:48:30 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -227,8 +228,8 @@
Configuration Data
| Environment Name | INT_OPERATIONMODES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:41 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:17 AM |
@@ -244,8 +245,8 @@
| Unit Under Test | Buttons |
| Subprogram | userConfirmOffButton |
| Test Case Name | getCurrentOperationMode |
- | Date of Creation | 10 DEC 2019 6:04:15 PM |
- | Date of Execution | 10 DEC 2019 6:04:18 PM |
+ | Date of Creation | 11 DEC 2019 9:48:42 AM |
+ | Date of Execution | 11 DEC 2019 9:48:44 AM |
@@ -412,8 +413,8 @@
| Unit Under Test | ModeInitPOST |
| Subprogram | execInitAndPOSTMode |
| Test Case Name | requestNewOperationMode |
- | Date of Creation | 10 DEC 2019 6:04:15 PM |
- | Date of Execution | 10 DEC 2019 6:04:18 PM |
+ | Date of Creation | 11 DEC 2019 9:48:43 AM |
+ | Date of Execution | 11 DEC 2019 9:48:44 AM |
@@ -558,8 +559,8 @@
| Unit Under Test | TaskGeneral |
| Subprogram | taskGeneral |
| Test Case Name | execOperationModes |
- | Date of Creation | 10 DEC 2019 6:04:15 PM |
- | Date of Execution | 10 DEC 2019 6:04:18 PM |
+ | Date of Creation | 11 DEC 2019 9:48:43 AM |
+ | Date of Execution | 11 DEC 2019 9:48:44 AM |
@@ -784,8 +785,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initOperationModes |
- | Date of Creation | 10 DEC 2019 6:04:15 PM |
- | Date of Execution | 10 DEC 2019 6:04:18 PM |
+ | Date of Creation | 11 DEC 2019 9:48:43 AM |
+ | Date of Execution | 11 DEC 2019 9:48:44 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -203,8 +204,8 @@
Configuration Data
| Environment Name | INT_SAFETYSHUTDOWN |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:42 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:18 AM |
@@ -220,8 +221,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initSafetyShutdown |
- | Date of Creation | 10 DEC 2019 6:04:31 PM |
- | Date of Execution | 10 DEC 2019 6:04:34 PM |
+ | Date of Creation | 11 DEC 2019 9:48:54 AM |
+ | Date of Execution | 11 DEC 2019 9:48:55 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -267,8 +268,8 @@
Configuration Data
| Environment Name | INT_SYSTEMCOMMMESSAGES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:45 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:21 AM |
@@ -284,8 +285,8 @@
| Unit Under Test | Buttons |
| Subprogram | handleOffButtonProcessing |
| Test Case Name | sendOffButtonMsgToUI |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -538,8 +539,8 @@
| Unit Under Test | Buttons |
| Subprogram | testSetOffButtonStateOverride |
| Test Case Name | isTestingActivated |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -694,8 +695,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleOffButtonConfirmMsgFromUI |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -926,8 +927,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTestAlarmLampPatternOverrideRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -1262,8 +1263,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTestHDMessageRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -1634,8 +1635,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTestOffButtonStateOverrideRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -1970,8 +1971,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTestStopButtonStateOverrideRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -2306,8 +2307,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTestWatchdogCheckInStateOverrideRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
@@ -2696,8 +2697,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | handleTesterLogInRequest |
- | Date of Creation | 10 DEC 2019 6:05:27 PM |
- | Date of Execution | 10 DEC 2019 6:05:30 PM |
+ | Date of Creation | 11 DEC 2019 9:49:24 AM |
+ | Date of Execution | 11 DEC 2019 9:49:25 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -235,8 +236,8 @@
Configuration Data
| Environment Name | INT_SYSTEMCOMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:44 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:19 AM |
@@ -252,8 +253,8 @@
| Unit Under Test | Interrupts |
| Subprogram | canMessageNotification |
| Test Case Name | handleCANMsgInterrupt |
- | Date of Creation | 10 DEC 2019 6:05:02 PM |
- | Date of Execution | 10 DEC 2019 6:05:05 PM |
+ | Date of Creation | 11 DEC 2019 9:49:09 AM |
+ | Date of Execution | 11 DEC 2019 9:49:11 AM |
@@ -618,8 +619,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | handleUARTMsgRecvPacketInterrupt |
- | Date of Creation | 10 DEC 2019 6:05:02 PM |
- | Date of Execution | 10 DEC 2019 6:05:05 PM |
+ | Date of Creation | 11 DEC 2019 9:49:09 AM |
+ | Date of Execution | 11 DEC 2019 9:49:11 AM |
@@ -976,8 +977,8 @@
| Unit Under Test | Interrupts |
| Subprogram | dmaGroupANotification |
| Test Case Name | handleUARTMsgXmitPacketInterrupt |
- | Date of Creation | 10 DEC 2019 6:05:02 PM |
- | Date of Execution | 10 DEC 2019 6:05:05 PM |
+ | Date of Creation | 11 DEC 2019 9:49:09 AM |
+ | Date of Execution | 11 DEC 2019 9:49:11 AM |
@@ -1314,8 +1315,8 @@
| Unit Under Test | TaskGeneral |
| Subprogram | taskGeneral |
| Test Case Name | execSystemCommRxAndTx |
- | Date of Creation | 10 DEC 2019 6:05:02 PM |
- | Date of Execution | 10 DEC 2019 6:05:05 PM |
+ | Date of Creation | 11 DEC 2019 9:49:09 AM |
+ | Date of Execution | 11 DEC 2019 9:49:11 AM |
@@ -1810,8 +1811,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initSystemComm |
- | Date of Creation | 10 DEC 2019 6:05:02 PM |
- | Date of Execution | 10 DEC 2019 6:05:05 PM |
+ | Date of Creation | 11 DEC 2019 9:49:09 AM |
+ | Date of Execution | 11 DEC 2019 9:49:11 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -219,8 +220,8 @@
Configuration Data
| Environment Name | INT_TIMERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:47 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:22 AM |
@@ -236,8 +237,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | didTimeout |
- | Date of Creation | 10 DEC 2019 6:05:50 PM |
- | Date of Execution | 10 DEC 2019 6:05:52 PM |
+ | Date of Creation | 11 DEC 2019 9:49:36 AM |
+ | Date of Execution | 11 DEC 2019 9:49:37 AM |
@@ -432,8 +433,8 @@
| Unit Under Test | TaskTimer |
| Subprogram | taskTimer |
| Test Case Name | incMSTimerCount |
- | Date of Creation | 10 DEC 2019 6:05:49 PM |
- | Date of Execution | 10 DEC 2019 6:05:52 PM |
+ | Date of Creation | 11 DEC 2019 9:49:36 AM |
+ | Date of Execution | 11 DEC 2019 9:49:37 AM |
@@ -536,8 +537,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initTimers |
- | Date of Creation | 10 DEC 2019 6:05:50 PM |
- | Date of Execution | 10 DEC 2019 6:05:52 PM |
+ | Date of Creation | 11 DEC 2019 9:49:36 AM |
+ | Date of Execution | 11 DEC 2019 9:49:37 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -203,8 +204,8 @@
Configuration Data
| Environment Name | INT_UTILITIES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:48 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:23 AM |
@@ -220,8 +221,8 @@
| Unit Under Test | FPGA |
| Subprogram | handleFPGAReadHeaderState |
| Test Case Name | crc16 |
- | Date of Creation | 10 DEC 2019 6:06:06 PM |
- | Date of Execution | 10 DEC 2019 6:06:08 PM |
+ | Date of Creation | 11 DEC 2019 9:49:44 AM |
+ | Date of Execution | 11 DEC 2019 9:49:45 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -243,8 +244,8 @@
Configuration Data
| Environment Name | INT_WATCHDOGMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:50 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:25 AM |
@@ -260,8 +261,8 @@
| Unit Under Test | ModeInitPOST |
| Subprogram | execInitAndPOSTMode |
| Test Case Name | execWatchdogTest |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
@@ -474,8 +475,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestWatchdogCheckInStateOverrideRequest |
| Test Case Name | testResetWatchdogTaskCheckInOverride |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
@@ -890,8 +891,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestWatchdogCheckInStateOverrideRequest |
| Test Case Name | testSetWatchdogTaskCheckInOverride |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
@@ -1306,8 +1307,8 @@
| Unit Under Test | TaskBG |
| Subprogram | taskBackground |
| Test Case Name | execWatchdogMgmt |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:59 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
@@ -1616,8 +1617,8 @@
| Unit Under Test | TaskTimer |
| Subprogram | taskTimer |
| Test Case Name | checkInWithWatchdogMgmt |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:59 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
@@ -1754,8 +1755,8 @@
| Unit Under Test | sys_main |
| Subprogram | initSoftware |
| Test Case Name | initWatchdogMgmt |
- | Date of Creation | 10 DEC 2019 6:06:33 PM |
- | Date of Execution | 10 DEC 2019 6:06:36 PM |
+ | Date of Creation | 11 DEC 2019 9:49:59 AM |
+ | Date of Execution | 11 DEC 2019 9:50:00 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -331,8 +332,8 @@
Configuration Data
| Environment Name | MSGQUEUES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:51 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:26 AM |
@@ -348,8 +349,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | initMsgQueues |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -518,8 +519,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | addToMsgQueue |
| Test Case Name | InvalidQueue |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -798,8 +799,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | addToMsgQueue |
| Test Case Name | QueueFull |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -1126,8 +1127,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | addToMsgQueue |
| Test Case Name | SuccessfulAdd |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -1444,8 +1445,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | addToMsgQueue |
| Test Case Name | SuccessfulAddWithWrap |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -1762,8 +1763,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | getFromMsgQueue |
| Test Case Name | InvalidQueue |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -2090,8 +2091,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | getFromMsgQueue |
| Test Case Name | QueueEmpty |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -2432,8 +2433,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | getFromMsgQueue |
| Test Case Name | SuccessfulGet |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -2774,8 +2775,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | getFromMsgQueue |
| Test Case Name | SuccessfulGetWithWrap |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3092,8 +3093,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueEmpty |
| Test Case Name | InvalidQueue |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3226,8 +3227,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueEmpty |
| Test Case Name | QueueEmpty |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3388,8 +3389,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueEmpty |
| Test Case Name | QueueNotEmpty |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3550,8 +3551,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueFull |
| Test Case Name | InvalidQueue |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3684,8 +3685,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueFull |
| Test Case Name | QueueFull |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -3846,8 +3847,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | isMsgQueueFull |
| Test Case Name | QueueNotFull |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -4008,8 +4009,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | blankMessage |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
@@ -4230,8 +4231,8 @@
| Unit Under Test | MsgQueues |
| Subprogram | blankMessageInWrapper |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:06:46 PM |
- | Date of Execution | 10 DEC 2019 6:06:49 PM |
+ | Date of Creation | 11 DEC 2019 9:50:05 AM |
+ | Date of Execution | 11 DEC 2019 9:50:06 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -403,8 +404,8 @@
Configuration Data
| Environment Name | OPERATIONMODES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:53 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:27 AM |
@@ -420,8 +421,8 @@
| Unit Under Test | OperationModes |
| Subprogram | initOperationModes |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -684,8 +685,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | InitPOSTToStandbyMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -868,8 +869,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | InvalidMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1052,8 +1053,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | InvalidModeChange |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1236,8 +1237,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | OpParamsToPreTreatMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1420,8 +1421,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | PreTreatToTreatmentMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1604,8 +1605,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | PrescriptionToOpParamsMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1788,8 +1789,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | StandbyToPrescriptionMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -1972,8 +1973,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | StandbyToServiceMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2156,8 +2157,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | TreatmentToFaultMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2340,8 +2341,8 @@
| Unit Under Test | OperationModes |
| Subprogram | execOperationModes |
| Test Case Name | TreatmentToPostTreatMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2524,8 +2525,8 @@
| Unit Under Test | OperationModes |
| Subprogram | requestNewOperationMode |
| Test Case Name | InvalidModeRequested |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2678,8 +2679,8 @@
| Unit Under Test | OperationModes |
| Subprogram | requestNewOperationMode |
| Test Case Name | ValidModeRequested |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2834,8 +2835,8 @@
| Unit Under Test | OperationModes |
| Subprogram | getCurrentOperationMode |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -2978,8 +2979,8 @@
| Unit Under Test | OperationModes |
| Subprogram | arbitrateModeRequest |
| Test Case Name | NoRequestPending |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3182,8 +3183,8 @@
| Unit Under Test | OperationModes |
| Subprogram | arbitrateModeRequest |
| Test Case Name | RequestPending |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3386,8 +3387,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | FaultMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3503,8 +3504,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | InitPOSTMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3620,8 +3621,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | InvalidMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3737,8 +3738,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | OpParamsMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3854,8 +3855,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | PostTreatmentMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -3971,8 +3972,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | PreTreatmentMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -4088,8 +4089,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | PrescriptionMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -4205,8 +4206,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | ServiceMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -4322,8 +4323,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | StandbyMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
@@ -4439,8 +4440,8 @@
| Unit Under Test | OperationModes |
| Subprogram | transitionToNewOperationMode |
| Test Case Name | TreatmentMode |
- | Date of Creation | 10 DEC 2019 6:06:59 PM |
- | Date of Execution | 10 DEC 2019 6:07:02 PM |
+ | Date of Creation | 11 DEC 2019 9:50:12 AM |
+ | Date of Execution | 11 DEC 2019 9:50:13 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -211,8 +212,8 @@
Configuration Data
| Environment Name | SAFETYSHUTDOWN |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:55 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:29 AM |
@@ -228,8 +229,8 @@
| Unit Under Test | SafetyShutdown |
| Subprogram | initSafetyShutdown |
| Test Case Name | initSafetyShutdown_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:13 PM |
- | Date of Execution | 10 DEC 2019 6:07:15 PM |
+ | Date of Creation | 11 DEC 2019 9:50:18 AM |
+ | Date of Execution | 11 DEC 2019 9:50:20 AM |
@@ -336,8 +337,8 @@
| Unit Under Test | SafetyShutdown |
| Subprogram | activateSafetyShutdown |
| Test Case Name | activateSafetyShutdown_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:13 PM |
- | Date of Execution | 10 DEC 2019 6:07:15 PM |
+ | Date of Creation | 11 DEC 2019 9:50:18 AM |
+ | Date of Execution | 11 DEC 2019 9:50:20 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -635,8 +636,8 @@
Configuration Data
| Environment Name | SYSTEMCOMMMESSAGES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:58 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:32 AM |
@@ -652,8 +653,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | serializeMessage |
| Test Case Name | serializeMessage_MessageNeedsPadding |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -812,8 +813,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | serializeMessage |
| Test Case Name | serializeMessage_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -972,8 +973,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | sendOffButtonMsgToUI |
| Test Case Name | sendOffButtonMsgToUI_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -1136,8 +1137,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleOffButtonConfirmMsgFromUI |
| Test Case Name | handleOffButtonConfirmMsgFromUI_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -1350,8 +1351,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | broadcastAlarmStatus |
| Test Case Name | broadcastAlarmStatus_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -2060,8 +2061,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | broadcastAlarmTriggered |
| Test Case Name | broadcastAlarmTriggered_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -2506,8 +2507,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | broadcastAlarmCleared |
| Test Case Name | broadcastAlarmCleared_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -2736,8 +2737,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | broadcastBloodFlowData |
| Test Case Name | broadcastBloodFlowData_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -3146,8 +3147,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleDGCheckIn |
| Test Case Name | handleDGCheckIn_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -3258,8 +3259,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleUICheckIn |
| Test Case Name | handleUICheckIn_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -3370,8 +3371,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | sendDebugData |
| Test Case Name | sendDebugData_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -3648,8 +3649,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | isTestingActivated |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -3792,8 +3793,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | sendTestAckResponseMsg |
| Test Case Name | sendTestAckResponseMsg_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -4034,8 +4035,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTesterLogInRequest |
| Test Case Name | handleTesterLogInRequest_LoginSuccessful |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -4294,8 +4295,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTesterLogInRequest |
| Test Case Name | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -4554,8 +4555,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTesterLogInRequest |
| Test Case Name | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -4814,8 +4815,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTesterLogInRequest |
| Test Case Name | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -5074,8 +5075,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTesterLogInRequest |
| Test Case Name | handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -5346,8 +5347,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestHDMessageRequest |
| Test Case Name | handleTestHDMessageRequest_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -5658,8 +5659,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestOffButtonStateOverrideRequest |
| Test Case Name | handleTestOffButtonStateOverrideRequest_InvalidPayloadLength |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -5974,8 +5975,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestOffButtonStateOverrideRequest |
| Test Case Name | handleTestOffButtonStateOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -6298,8 +6299,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestOffButtonStateOverrideRequest |
| Test Case Name | handleTestOffButtonStateOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -6654,8 +6655,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestStopButtonStateOverrideRequest |
| Test Case Name | handleTestStopButtonStateOverrideRequest_InvalidPayloadLength |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -6874,8 +6875,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestStopButtonStateOverrideRequest |
| Test Case Name | handleTestStopButtonStateOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -7090,8 +7091,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestStopButtonStateOverrideRequest |
| Test Case Name | handleTestStopButtonStateOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -7458,8 +7459,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmLampPatternOverrideRequest |
| Test Case Name | handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -7678,8 +7679,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmLampPatternOverrideRequest |
| Test Case Name | handleTestAlarmLampPatternOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -8002,8 +8003,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmLampPatternOverrideRequest |
| Test Case Name | handleTestAlarmLampPatternOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -8370,8 +8371,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestWatchdogCheckInStateOverrideRequest |
| Test Case Name | handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -8590,8 +8591,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestWatchdogCheckInStateOverrideRequest |
| Test Case Name | handleTestWatchdogCheckInStateOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -8968,8 +8969,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestWatchdogCheckInStateOverrideRequest |
| Test Case Name | handleTestWatchdogCheckInStateOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -9340,8 +9341,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStateOverrideRequest |
| Test Case Name | handleTestAlarmStateOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -9576,8 +9577,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStateOverrideRequest |
| Test Case Name | handleTestAlarmStateOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -10010,8 +10011,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStateOverrideRequest |
| Test Case Name | handleTestAlarmStateOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -10438,8 +10439,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmTimeOverrideRequest |
| Test Case Name | handleTestAlarmTimeOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:38 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -10680,8 +10681,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmTimeOverrideRequest |
| Test Case Name | handleTestAlarmTimeOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -11120,8 +11121,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmTimeOverrideRequest |
| Test Case Name | handleTestAlarmTimeOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -11554,8 +11555,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStatusBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -11796,8 +11797,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStatusBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -12182,8 +12183,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestAlarmStatusBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -12562,8 +12563,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowSetPointOverrideRequest |
| Test Case Name | handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:37 AM |
@@ -12804,8 +12805,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowSetPointOverrideRequest |
| Test Case Name | handleTestBloodFlowSetPointOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -13190,8 +13191,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowSetPointOverrideRequest |
| Test Case Name | handleTestBloodFlowSetPointOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -13570,8 +13571,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowMeasuredOverrideRequest |
| Test Case Name | handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -13812,8 +13813,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowMeasuredOverrideRequest |
| Test Case Name | handleTestBloodFlowMeasuredOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -14198,8 +14199,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowMeasuredOverrideRequest |
| Test Case Name | handleTestBloodFlowMeasuredOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -14578,8 +14579,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredSpeedOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -14820,8 +14821,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredSpeedOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredSpeedOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -15212,8 +15213,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredSpeedOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -15592,8 +15593,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredCurrentOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -15834,8 +15835,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredCurrentOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredCurrentOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -16220,8 +16221,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodPumpMeasuredCurrentOverrideRequest |
| Test Case Name | handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -16600,8 +16601,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -16842,8 +16843,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestBloodFlowBroadcastIntervalOverrideRequest_Override |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
@@ -17228,8 +17229,8 @@
| Unit Under Test | SystemCommMessages |
| Subprogram | handleTestBloodFlowBroadcastIntervalOverrideRequest |
| Test Case Name | handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset |
- | Date of Creation | 10 DEC 2019 6:07:36 PM |
- | Date of Execution | 10 DEC 2019 6:07:39 PM |
+ | Date of Creation | 11 DEC 2019 9:50:35 AM |
+ | Date of Execution | 11 DEC 2019 9:50:38 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -699,8 +700,8 @@
Configuration Data
| Environment Name | SYSTEMCOMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:56 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:30 AM |
@@ -716,8 +717,8 @@
| Unit Under Test | SystemComm |
| Subprogram | initSystemComm |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -918,8 +919,8 @@
| Unit Under Test | SystemComm |
| Subprogram | checkInFromDG |
| Test Case Name | checkInFromDG_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -1022,8 +1023,8 @@
| Unit Under Test | SystemComm |
| Subprogram | checkInFromUI |
| Test Case Name | checkInFromUI_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -1126,8 +1127,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isDGCommunicating |
| Test Case Name | isDGCommunicating_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -1270,8 +1271,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isUICommunicating |
| Test Case Name | isUICommunicating_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -1414,8 +1415,8 @@
| Unit Under Test | SystemComm |
| Subprogram | uiCommunicated |
| Test Case Name | uiCommunicated_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:27 AM |
@@ -1558,8 +1559,8 @@
| Unit Under Test | SystemComm |
| Subprogram | execSystemCommRx |
| Test Case Name | OneMessageToProcessInBuffers |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -1943,7 +1944,7 @@
| [0] |
string |
- 0x58 |
+ 0x2A |
|
@@ -2063,25 +2064,25 @@
| [0] |
string |
- 0x50 |
+ 0x40 |
|
| [1] |
string |
- 224 |
+ 40 |
|
| [2] |
string |
- 64 |
+ 240 |
|
| [3] |
string |
- 27 |
+ 23 |
|
@@ -2243,7 +2244,7 @@
| msgID |
unsigned short |
- 0xB10 |
+ 0x6B10 |
|
@@ -2627,7 +2628,7 @@
| msgID |
unsigned short |
- 57468 |
+ 10348 |
|
@@ -2812,8 +2813,8 @@
| Unit Under Test | SystemComm |
| Subprogram | execSystemCommTx |
| Test Case Name | CAN1TransmitterBusy |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -3004,8 +3005,8 @@
| Unit Under Test | SystemComm |
| Subprogram | execSystemCommTx |
| Test Case Name | SCI1TransmitterBusy |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -3276,8 +3277,8 @@
| Unit Under Test | SystemComm |
| Subprogram | execSystemCommTx |
| Test Case Name | execSystemCommTx_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -3600,8 +3601,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleCANMsgInterrupt |
| Test Case Name | InvalidCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -3732,8 +3733,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleCANMsgInterrupt |
| Test Case Name | NoPacket |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -3880,8 +3881,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleCANMsgInterrupt |
| Test Case Name | ReceiveCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -4100,8 +4101,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleCANMsgInterrupt |
| Test Case Name | TransmitCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -4320,8 +4321,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleCANMsgInterrupt |
| Test Case Name | handleCANMsgInterrupt_NoMoreMessagesToXmit |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -4672,8 +4673,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleUARTMsgRecvPacketInterrupt |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -4856,8 +4857,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleUARTMsgXmitPacketInterrupt |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -5168,8 +5169,8 @@
| Unit Under Test | SystemComm |
| Subprogram | handleUARTMsgXmitPacketInterrupt |
| Test Case Name | handleUARTMsgXmitPacketInterrupt_NoMoreMessages |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -5320,8 +5321,8 @@
| Unit Under Test | SystemComm |
| Subprogram | initUARTAndDMA |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -5787,7 +5788,7 @@
| DADD |
unsigned int |
- 4003142048 |
+ 2213378464 |
|
@@ -5920,8 +5921,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isCANBoxForXmit |
| Test Case Name | NotTransmitCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6044,8 +6045,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isCANBoxForXmit |
| Test Case Name | TransmitCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6168,8 +6169,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isCANBoxForRecv |
| Test Case Name | NotReceiveCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6292,8 +6293,8 @@
| Unit Under Test | SystemComm |
| Subprogram | isCANBoxForRecv |
| Test Case Name | ReceiveCANBox |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6416,8 +6417,8 @@
| Unit Under Test | SystemComm |
| Subprogram | findNextHighestPriorityCANPacketToTransmit |
| Test Case Name | BufferFound |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6564,8 +6565,8 @@
| Unit Under Test | SystemComm |
| Subprogram | findNextHighestPriorityCANPacketToTransmit |
| Test Case Name | NoBufferFound |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -6856,8 +6857,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextCANPacket |
| Test Case Name | NoPendingCANPackets |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -7108,8 +7109,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextCANPacket |
| Test Case Name | PendingCANPacketFound |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -7360,8 +7361,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextCANPacket |
| Test Case Name | PendingCANPacketIsPartial |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:26 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -7582,8 +7583,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextUARTPacket |
| Test Case Name | GetPacketFail |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -7732,8 +7733,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextUARTPacket |
| Test Case Name | NoPacketFound |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -7840,8 +7841,8 @@
| Unit Under Test | SystemComm |
| Subprogram | transmitNextUARTPacket |
| Test Case Name | PacketFound |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -8060,8 +8061,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processIncomingData |
| Test Case Name | MoreDataInBufferThanMaxMsgSize |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -8145,7 +8146,7 @@
| [0] |
string |
- 0xF0 |
+ 0x66 |
|
@@ -8890,8 +8891,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processIncomingData |
| Test Case Name | MsgFoundButIncompleteMsgRetrieved |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -8975,7 +8976,7 @@
| [0] |
string |
- 0x5A |
+ 0xA |
|
@@ -9664,8 +9665,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processIncomingData |
| Test Case Name | NoMsgFound |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -9749,7 +9750,7 @@
| [0] |
string |
- 0x77 |
+ 0xBD |
|
@@ -10348,8 +10349,8 @@
| Unit Under Test | SystemComm |
| Subprogram | consumeBufferPaddingBeforeSync |
| Test Case Name | BufferEmpty |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -10496,8 +10497,8 @@
| Unit Under Test | SystemComm |
| Subprogram | consumeBufferPaddingBeforeSync |
| Test Case Name | RemoveSomePadding |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -10613,7 +10614,7 @@
| [0] |
string |
- 0xF1 |
+ 0xF3 |
|
@@ -10830,8 +10831,8 @@
| Unit Under Test | SystemComm |
| Subprogram | parseMessageFromBuffer |
| Test Case Name | FullMessageFound |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11062,8 +11063,8 @@
| Unit Under Test | SystemComm |
| Subprogram | parseMessageFromBuffer |
| Test Case Name | NoMessageCouldBeParsed |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11270,8 +11271,8 @@
| Unit Under Test | SystemComm |
| Subprogram | parseMessageFromBuffer |
| Test Case Name | NoSyncFound |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11454,8 +11455,8 @@
| Unit Under Test | SystemComm |
| Subprogram | parseMessageFromBuffer |
| Test Case Name | NotEnoughDataForMinMessage |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11638,8 +11639,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessages |
| Test Case Name | NoMessagesReceived |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11746,8 +11747,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessages |
| Test Case Name | OneMessageReceived |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -11972,8 +11973,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 0001_OffButtonPress |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -12168,8 +12169,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 0006_DGCheckIn |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -12364,8 +12365,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 0007_UICheckIn |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -12560,8 +12561,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8000_TestLogin |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -12792,8 +12793,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8001_HDMessage |
- | Date of Creation | 10 DEC 2019 6:07:24 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -13036,8 +13037,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8002_OffButtonOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -13280,8 +13281,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8003_StopButtonOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -13524,8 +13525,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8004_AlarmLampPatternOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -13768,8 +13769,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8005_WatchdogTaskCheckInOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -14012,8 +14013,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8006_AlarmStateOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -14256,8 +14257,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8007_AlarmTimeOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -14500,8 +14501,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8008_BloodFlowSetPtOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -14744,8 +14745,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 8009_BloodFlowMeasuredOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:28 AM |
@@ -14988,8 +14989,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 800A_BloodPumpMCMeasuredSpeedOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -15232,8 +15233,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 800B_BloodPumpMCMeasuredCurrentOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -15476,8 +15477,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 800C_BloodFlowDataPublishIntervalOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -15720,8 +15721,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | 800D_AlarmStatusPublishIntervalOverride |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -15964,8 +15965,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | InvalidMessageID |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -16132,8 +16133,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | InvalidTestMessageID |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -16300,8 +16301,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | InvalidTestMessageIDInRange |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
@@ -16508,8 +16509,8 @@
| Unit Under Test | SystemComm |
| Subprogram | processReceivedMessage |
| Test Case Name | TestWithoutLogin |
- | Date of Creation | 10 DEC 2019 6:07:25 PM |
- | Date of Execution | 10 DEC 2019 6:07:27 PM |
+ | Date of Creation | 11 DEC 2019 9:50:26 AM |
+ | Date of Execution | 11 DEC 2019 9:50:29 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -267,8 +268,8 @@
Configuration Data
| Environment Name | TIMERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:10:00 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:34 AM |
@@ -284,8 +285,8 @@
| Unit Under Test | Timers |
| Subprogram | initTimers |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:45 AM |
@@ -388,8 +389,8 @@
| Unit Under Test | Timers |
| Subprogram | incMSTimerCount |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:45 AM |
@@ -492,8 +493,8 @@
| Unit Under Test | Timers |
| Subprogram | getMSTimerCount |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:45 AM |
@@ -636,8 +637,8 @@
| Unit Under Test | Timers |
| Subprogram | didTimeout |
| Test Case Name | NoTimeoutNoWrap |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
@@ -804,8 +805,8 @@
| Unit Under Test | Timers |
| Subprogram | didTimeout |
| Test Case Name | NoTimeoutWrap |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
@@ -972,8 +973,8 @@
| Unit Under Test | Timers |
| Subprogram | didTimeout |
| Test Case Name | TimeoutNoWrap |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
@@ -1140,8 +1141,8 @@
| Unit Under Test | Timers |
| Subprogram | didTimeout |
| Test Case Name | TimeoutWrap |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
@@ -1308,8 +1309,8 @@
| Unit Under Test | Timers |
| Subprogram | calcTimeSince |
| Test Case Name | calcTimeSince_NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
@@ -1464,8 +1465,8 @@
| Unit Under Test | Timers |
| Subprogram | calcTimeSince |
| Test Case Name | calcTimeSince_Wrap |
- | Date of Creation | 10 DEC 2019 6:07:48 PM |
- | Date of Execution | 10 DEC 2019 6:07:50 PM |
+ | Date of Creation | 11 DEC 2019 9:50:44 AM |
+ | Date of Execution | 11 DEC 2019 9:50:46 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -219,8 +220,8 @@
Configuration Data
| Environment Name | UTILITIES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:10:02 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:35 AM |
@@ -236,8 +237,8 @@
| Unit Under Test | Utilities |
| Subprogram | crc16 |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:59 PM |
- | Date of Execution | 10 DEC 2019 6:08:01 PM |
+ | Date of Creation | 11 DEC 2019 9:50:51 AM |
+ | Date of Execution | 11 DEC 2019 9:50:52 AM |
@@ -480,8 +481,8 @@
| Unit Under Test | Utilities |
| Subprogram | crc16 |
| Test Case Name | ZeroLength |
- | Date of Creation | 10 DEC 2019 6:07:59 PM |
- | Date of Execution | 10 DEC 2019 6:08:01 PM |
+ | Date of Creation | 11 DEC 2019 9:50:51 AM |
+ | Date of Execution | 11 DEC 2019 9:50:52 AM |
@@ -664,8 +665,8 @@
| Unit Under Test | Utilities |
| Subprogram | crc8 |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:07:59 PM |
- | Date of Execution | 10 DEC 2019 6:08:01 PM |
+ | Date of Creation | 11 DEC 2019 9:50:51 AM |
+ | Date of Execution | 11 DEC 2019 9:50:52 AM |
Index: results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/execution/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_execution_results_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -395,8 +396,8 @@
Configuration Data
| Environment Name | WATCHDOGMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:10:03 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:52:36 AM |
@@ -412,8 +413,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | initWatchdogMgmt |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:13 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -654,8 +655,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | AllTasksCheckedInAndMinTimeReached |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:13 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -908,8 +909,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | AllTasksCheckedInAndNotTime |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1142,8 +1143,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | OneTaskNotCheckedIn |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1358,8 +1359,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogMgmt |
| Test Case Name | WDExpired |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1490,8 +1491,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | checkInWithWatchdogMgmt |
| Test Case Name | InvalidTask |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1682,8 +1683,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | checkInWithWatchdogMgmt |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1838,8 +1839,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogTest |
| Test Case Name | Completed |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -1982,8 +1983,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogTest |
| Test Case Name | InvalidState |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -2136,8 +2137,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogTest |
| Test Case Name | StartInProgress |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -2400,8 +2401,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogTest |
| Test Case Name | TestFailure |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -2704,8 +2705,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | execWatchdogTest |
| Test Case Name | TestPasses |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -2998,8 +2999,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | resetWDTaskCheckIns |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -3150,8 +3151,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | haveAllTasksCheckedIn |
| Test Case Name | AllTasksCheckedIn |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -3366,8 +3367,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | haveAllTasksCheckedIn |
| Test Case Name | OneTaskNotCheckedIn |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -3582,8 +3583,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | hasTaskGeneralCheckedIn |
| Test Case Name | InvalidTask |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -3716,8 +3717,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | hasTaskGeneralCheckedIn |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -3890,8 +3891,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | hasTaskGeneralCheckedIn |
| Test Case Name | OverridePath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4070,8 +4071,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | petWatchdog |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4214,8 +4215,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testSetWatchdogTaskCheckInOverride |
| Test Case Name | InvalidTask |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4350,8 +4351,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testSetWatchdogTaskCheckInOverride |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4578,8 +4579,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testSetWatchdogTaskCheckInOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4806,8 +4807,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testResetWatchdogTaskCheckInOverride |
| Test Case Name | InvalidTask |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -4930,8 +4931,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testResetWatchdogTaskCheckInOverride |
| Test Case Name | NominalPath |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
@@ -5146,8 +5147,8 @@
| Unit Under Test | WatchdogMgmt |
| Subprogram | testResetWatchdogTaskCheckInOverride |
| Test Case Name | TestingInactive |
- | Date of Creation | 10 DEC 2019 6:08:11 PM |
- | Date of Execution | 10 DEC 2019 6:08:14 PM |
+ | Date of Creation | 11 DEC 2019 9:50:58 AM |
+ | Date of Execution | 11 DEC 2019 9:50:59 AM |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMLAMP_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | ALARMLAMP |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:20 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:05 AM |
@@ -248,31 +249,31 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | AlarmLamp | initAlarmLamp | NominalPath | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
- | | execAlarmLamp | NoPatternChangeManual | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | | NoPatternChangeStep0To1 | 10 DEC 2019 5:58:35 PM | PASS 7 / 7 |
- | | | NoPatternChangeStep1To0 | 10 DEC 2019 5:58:35 PM | PASS 7 / 7 |
- | | | NominalPatternChange | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | requestAlarmLampPattern | InvalidLampPatternGiven | 10 DEC 2019 5:58:35 PM | PASS 6 / 6 |
- | | | NominalPath | 10 DEC 2019 5:58:35 PM | PASS 1 / 1 |
- | | getCurrentAlarmLampPattern | NominalPath | 10 DEC 2019 5:58:35 PM | PASS 2 / 2 |
- | | | Override | 10 DEC 2019 5:58:35 PM | PASS 2 / 2 |
- | | execAlarmLampTest | CompleteToStart | 10 DEC 2019 5:58:35 PM | PASS 2 / 2 |
- | | | GreenOn | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | | GreenToOff | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
- | | | InvalidState | 10 DEC 2019 5:58:35 PM | PASS 6 / 6 |
- | | | RedOn | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | | RedToYellow | 10 DEC 2019 5:58:35 PM | PASS 6 / 6 |
- | | | StartTest | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | | YellowOn | 10 DEC 2019 5:58:35 PM | PASS 4 / 4 |
- | | | YellowToGreen | 10 DEC 2019 5:58:35 PM | PASS 6 / 6 |
- | | setAlarmLampToPatternStep | AlarmHigh_Red | 10 DEC 2019 5:58:35 PM | PASS 2 / 2 |
- | | | AlarmMedium_Yellow | 10 DEC 2019 5:58:35 PM | PASS 3 / 3 |
- | | | OK_Green | 10 DEC 2019 5:58:35 PM | PASS 2 / 2 |
- | | testSetCurrentLampPatternOverride | TestingActive | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
- | | testResetCurrentLampPatternOverride | TestingActive | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:58:35 PM | PASS 5 / 5 |
+ | AlarmLamp | initAlarmLamp | NominalPath | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
+ | | execAlarmLamp | NoPatternChangeManual | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | | NoPatternChangeStep0To1 | 11 DEC 2019 9:45:21 AM | PASS 7 / 7 |
+ | | | NoPatternChangeStep1To0 | 11 DEC 2019 9:45:21 AM | PASS 7 / 7 |
+ | | | NominalPatternChange | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | requestAlarmLampPattern | InvalidLampPatternGiven | 11 DEC 2019 9:45:21 AM | PASS 6 / 6 |
+ | | | NominalPath | 11 DEC 2019 9:45:21 AM | PASS 1 / 1 |
+ | | getCurrentAlarmLampPattern | NominalPath | 11 DEC 2019 9:45:21 AM | PASS 2 / 2 |
+ | | | Override | 11 DEC 2019 9:45:21 AM | PASS 2 / 2 |
+ | | execAlarmLampTest | CompleteToStart | 11 DEC 2019 9:45:21 AM | PASS 2 / 2 |
+ | | | GreenOn | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | | GreenToOff | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
+ | | | InvalidState | 11 DEC 2019 9:45:21 AM | PASS 6 / 6 |
+ | | | RedOn | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | | RedToYellow | 11 DEC 2019 9:45:21 AM | PASS 6 / 6 |
+ | | | StartTest | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | | YellowOn | 11 DEC 2019 9:45:21 AM | PASS 4 / 4 |
+ | | | YellowToGreen | 11 DEC 2019 9:45:21 AM | PASS 6 / 6 |
+ | | setAlarmLampToPatternStep | AlarmHigh_Red | 11 DEC 2019 9:45:21 AM | PASS 2 / 2 |
+ | | | AlarmMedium_Yellow | 11 DEC 2019 9:45:21 AM | PASS 3 / 3 |
+ | | | OK_Green | 11 DEC 2019 9:45:21 AM | PASS 2 / 2 |
+ | | testSetCurrentLampPatternOverride | TestingActive | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
+ | | testResetCurrentLampPatternOverride | TestingActive | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:21 AM | PASS 5 / 5 |
| TOTALS | 8 | 25 | | PASS 25 / 25 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_ALARMMGMT_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | ALARMMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:22 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:07 AM |
@@ -248,66 +249,66 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | AlarmMgmt | initAlarmMgmt | initAlarmMgmt_NominalPath | 10 DEC 2019 5:58:49 PM | PASS 26 / 26 |
- | | execAlarmMgmt | execAlarmMgmt_NominalPath | 10 DEC 2019 5:58:49 PM | PASS 4 / 4 |
- | | | execAlarmMgmt_TimeToPublishStatus | 10 DEC 2019 5:58:49 PM | PASS 11 / 11 |
- | | activateAlarm | activateAlarm_AlreadyActive | 10 DEC 2019 5:58:49 PM | PASS 2 / 2 |
- | | | activateAlarm_Fault | 10 DEC 2019 5:58:49 PM | PASS 3 / 3 |
- | | | activateAlarm_InvalidAlarm | 10 DEC 2019 5:58:49 PM | PASS 2 / 2 |
- | | | activateAlarm_NoAlarm | 10 DEC 2019 5:58:49 PM | PASS 2 / 2 |
- | | | activateAlarm_NotAFault | 10 DEC 2019 5:58:49 PM | PASS 2 / 2 |
- | | activateAlarmNoData | activateAlarmNoData_AlreadyActive | 10 DEC 2019 5:58:49 PM | PASS 1 / 1 |
- | | | activateAlarmNoData_NominalPath | 10 DEC 2019 5:58:49 PM | PASS 4 / 4 |
- | | activateAlarm1Data | activateAlarm1Data_AlreadyActive | 10 DEC 2019 5:58:49 PM | PASS 1 / 1 |
- | | | activateAlarm1Data_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | activateAlarm2Data | activateAlarm2Data_AlreadyActive | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | activateAlarm2Data_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 6 / 6 |
- | | clearAlarm | clearAlarm_ClearNotAllowed | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | clearAlarm_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | clearAlarm_NoAlarm | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | clearAlarm_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 4 / 4 |
- | | | clearAlarm_NotActive | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | clearAlarm_NotInFIFO | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | isAlarmActive | isAlarmActive_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | getAlarmActive | getAlarmActive_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 2 / 2 |
- | | | getAlarmActive_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | getAlarmActive_Override | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | getAlarmStartTime | getAlarmStartTime_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | getAlarmStartTime_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | getAlarmStartTime_Override | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | updateAlarmsState | updateAlarmsState_NoAlarmsActive | 10 DEC 2019 5:58:50 PM | PASS 6 / 6 |
- | | | updateAlarmsState_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 6 / 6 |
- | | setAlarmLampAndAudio | setAlarmLampAndAudio_High | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_HighFault | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_InvalidAlarmState | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_Low | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_Manual | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_Medium | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | setAlarmLampAndAudio_NoAlarms | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
+ | AlarmMgmt | initAlarmMgmt | initAlarmMgmt_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 26 / 26 |
+ | | execAlarmMgmt | execAlarmMgmt_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 4 / 4 |
+ | | | execAlarmMgmt_TimeToPublishStatus | 11 DEC 2019 9:45:29 AM | PASS 11 / 11 |
+ | | activateAlarm | activateAlarm_AlreadyActive | 11 DEC 2019 9:45:29 AM | PASS 2 / 2 |
+ | | | activateAlarm_Fault | 11 DEC 2019 9:45:29 AM | PASS 3 / 3 |
+ | | | activateAlarm_InvalidAlarm | 11 DEC 2019 9:45:29 AM | PASS 2 / 2 |
+ | | | activateAlarm_NoAlarm | 11 DEC 2019 9:45:29 AM | PASS 2 / 2 |
+ | | | activateAlarm_NotAFault | 11 DEC 2019 9:45:29 AM | PASS 2 / 2 |
+ | | activateAlarmNoData | activateAlarmNoData_AlreadyActive | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | activateAlarmNoData_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 4 / 4 |
+ | | activateAlarm1Data | activateAlarm1Data_AlreadyActive | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | activateAlarm1Data_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 5 / 5 |
+ | | activateAlarm2Data | activateAlarm2Data_AlreadyActive | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | activateAlarm2Data_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 6 / 6 |
+ | | clearAlarm | clearAlarm_ClearNotAllowed | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | clearAlarm_InvalidAlarm | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | clearAlarm_NoAlarm | 11 DEC 2019 9:45:29 AM | PASS 1 / 1 |
+ | | | clearAlarm_NominalPath | 11 DEC 2019 9:45:29 AM | PASS 4 / 4 |
+ | | | clearAlarm_NotActive | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | clearAlarm_NotInFIFO | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | isAlarmActive | isAlarmActive_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | getAlarmActive | getAlarmActive_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 2 / 2 |
+ | | | getAlarmActive_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | getAlarmActive_Override | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | getAlarmStartTime | getAlarmStartTime_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | getAlarmStartTime_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | getAlarmStartTime_Override | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | updateAlarmsState | updateAlarmsState_NoAlarmsActive | 11 DEC 2019 9:45:30 AM | PASS 6 / 6 |
+ | | | updateAlarmsState_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 6 / 6 |
+ | | setAlarmLampAndAudio | setAlarmLampAndAudio_High | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_HighFault | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_InvalidAlarmState | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_Low | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_Manual | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_Medium | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | setAlarmLampAndAudio_NoAlarms | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
| | updateAlarmsSilenceStatus | | | |
| | handleAlarmEscalations | | | |
| | updateAlarmsFlags | | | |
- | | resetAlarmPriorityFIFO | resetAlarmPriorityFIFO_InvalidPriority | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | resetAlarmPriorityFIFO_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | getPublishAlarmStatusInterval | getPublishAlarmStatusInterval_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | getPublishAlarmStatusInterval_Override | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | testSetAlarmStatusPublishIntervalOverride | testSetAlarmStatusPublishIntervalOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testSetAlarmStatusPublishIntervalOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | testResetAlarmStatusPublishIntervalOverride | testResetAlarmStatusPublishIntervalOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testResetAlarmStatusPublishIntervalOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | testSetAlarmStateOverride | testSetAlarmStateOverride_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testSetAlarmStateOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testSetAlarmStateOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | testResetAlarmStateOverride | testResetAlarmStateOverride_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testResetAlarmStateOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testResetAlarmStateOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | testSetAlarmStartOverride | testSetAlarmStartOverride_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 1 / 1 |
- | | | testSetAlarmStartOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testSetAlarmStartOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testSetAlarmStartOverride_ValueTooLarge | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | testResetAlarmStartOverride | testResetAlarmStartOverride_InvalidAlarm | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testResetAlarmStartOverride_NominalPath | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
- | | | testResetAlarmStartOverride_NotLoggedIn | 10 DEC 2019 5:58:50 PM | PASS 5 / 5 |
+ | | resetAlarmPriorityFIFO | resetAlarmPriorityFIFO_InvalidPriority | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | resetAlarmPriorityFIFO_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | getPublishAlarmStatusInterval | getPublishAlarmStatusInterval_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | getPublishAlarmStatusInterval_Override | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | testSetAlarmStatusPublishIntervalOverride | testSetAlarmStatusPublishIntervalOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testSetAlarmStatusPublishIntervalOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | testResetAlarmStatusPublishIntervalOverride | testResetAlarmStatusPublishIntervalOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testResetAlarmStatusPublishIntervalOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | testSetAlarmStateOverride | testSetAlarmStateOverride_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testSetAlarmStateOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testSetAlarmStateOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | testResetAlarmStateOverride | testResetAlarmStateOverride_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testResetAlarmStateOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testResetAlarmStateOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | testSetAlarmStartOverride | testSetAlarmStartOverride_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 1 / 1 |
+ | | | testSetAlarmStartOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testSetAlarmStartOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testSetAlarmStartOverride_ValueTooLarge | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | testResetAlarmStartOverride | testResetAlarmStartOverride_InvalidAlarm | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testResetAlarmStartOverride_NominalPath | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
+ | | | testResetAlarmStartOverride_NotLoggedIn | 11 DEC 2019 9:45:30 AM | PASS 5 / 5 |
| TOTALS | 23 | 57 | | PASS 57 / 57 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BLOODFLOW_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | BLOODFLOW |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:24 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:08 AM |
@@ -252,101 +253,101 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | BloodFlow | initBloodFlow | initBloodFlow_NominalPath | 10 DEC 2019 5:59:07 PM | PASS 18 / 18 |
- | | setBloodPumpTargetFlowRate | setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning | 10 DEC 2019 5:59:07 PM | PASS 3 / 3 |
- | | | setBloodPumpTargetFlowRate_FlowTooHigh | 10 DEC 2019 5:59:07 PM | PASS 6 / 6 |
- | | | setBloodPumpTargetFlowRate_OffToRateFwd | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_OffToRateRev | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateDecrease | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateIncrease | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | | setBloodPumpTargetFlowRate_ZeroRate | 10 DEC 2019 5:59:07 PM | PASS 9 / 9 |
- | | execBloodFlowMonitor | execBloodFlowMonitor_InitMode_WrapFlowBuffer | 10 DEC 2019 5:59:07 PM | PASS 10 / 10 |
- | | | execBloodFlowMonitor_NominalPath | 10 DEC 2019 5:59:07 PM | PASS 10 / 10 |
- | | execBloodFlowController | execBloodFlowController_ControlToTargetState | 10 DEC 2019 5:59:07 PM | PASS 2 / 2 |
- | | | execBloodFlowController_InvalidState | 10 DEC 2019 5:59:07 PM | PASS 4 / 4 |
- | | | execBloodFlowController_OffState | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | | execBloodFlowController_RampDown | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | | execBloodFlowController_RampUpState | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | handleBloodPumpOffState | handleBloodPumpOffState_NewRateSet | 10 DEC 2019 5:59:07 PM | PASS 6 / 6 |
- | | | handleBloodPumpOffState_NoChange | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | handleBloodPumpRampingUpState | handleBloodPumpRampingUpState_RampComplete | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | | handleBloodPumpRampingUpState_StillRamping | 10 DEC 2019 5:59:07 PM | PASS 3 / 3 |
- | | | handleBloodPumpRampingUpState_StopRequested | 10 DEC 2019 5:59:07 PM | PASS 3 / 3 |
- | | handleBloodPumpRampingDownState | handleBloodPumpRampingDownState_ | 10 DEC 2019 5:59:07 PM | PASS 1 / 1 |
- | | | handleBloodPumpRampingDownState_RampComplete | 10 DEC 2019 5:59:07 PM | PASS 2 / 2 |
- | | | handleBloodPumpRampingDownState_StillRamping | 10 DEC 2019 5:59:07 PM | PASS 3 / 3 |
- | | handleBloodPumpControlToTargetState | handleBloodPumpControlToTargetState_NominalPath | 10 DEC 2019 5:59:07 PM | PASS 6 / 6 |
- | | | handleBloodPumpControlToTargetState_NotControlInterval | 10 DEC 2019 5:59:08 PM | PASS 2 / 2 |
- | | | handleBloodPumpControlToTargetState_PWM_Max | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | | handleBloodPumpControlToTargetState_PWM_Min | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | | handleBloodPumpControlToTargetState_Reverse | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | | handleBloodPumpControlToTargetState_TermsMaxRange | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | | handleBloodPumpControlToTargetState_TermsMaxRange2 | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | stopBloodPump | stopBloodPump_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 4 / 4 |
- | | releaseBloodPumpStop | releaseBloodPumpStop_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | setBloodPumpDirection | setBloodPumpDirection_FWD | 10 DEC 2019 5:59:08 PM | PASS 2 / 2 |
- | | | setBloodPumpDirection_InvalidDirection | 10 DEC 2019 5:59:08 PM | PASS 6 / 6 |
- | | | setBloodPumpDirection_REV | 10 DEC 2019 5:59:08 PM | PASS 2 / 2 |
- | | getPublishBloodFlowDataInterval | getPublishBloodFlowDataInterval_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getPublishBloodFlowDataInterval_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getTargetBloodFlowRate | getTargetBloodFlowRate_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getTargetBloodFlowRate_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getMeasuredBloodFlowRate | getMeasuredBloodFlowRate_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getMeasuredBloodFlowRate_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getMeasuredBloodPumpRotorSpeed | getMeasuredBloodPumpRotorSpeed_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getMeasuredBloodPumpRotorSpeed_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getMeasuredBloodPumpSpeed | getMeasuredBloodPumpSpeed_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getMeasuredBloodPumpSpeed_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getMeasuredBloodPumpMCSpeed | getMeasuredBloodPumpMCSpeed_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getMeasuredBloodPumpMCSpeed_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | getMeasuredBloodPumpMCCurrent | getMeasuredBloodPumpCurrent_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | getMeasuredBloodPumpCurrent_Override | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | publishBloodFlowData | publishBloodFlowData_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | publishBloodFlowData_NotIntervalTime | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | checkBloodPumpDirection | checkBloodPumpDirection_Fail | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | checkBloodPumpDirection_NominalPath | 10 DEC 2019 5:59:08 PM | PASS |
- | | | checkBloodPumpDirection_NotControlling | 10 DEC 2019 5:59:08 PM | PASS |
- | | checkBloodPumpMCCurrent | checkBloodPumpMCCurrent_OFFOk | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | checkBloodPumpMCCurrent_OFFTooHighAlarm | 10 DEC 2019 5:59:08 PM | PASS 4 / 4 |
- | | | checkBloodPumpMCCurrent_OFFTooHighShortTime | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | checkBloodPumpMCCurrent_RunningOk | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | checkBloodPumpMCCurrent_RunningTooHighAlarm | 10 DEC 2019 5:59:08 PM | PASS 4 / 4 |
- | | | checkBloodPumpMCCurrent_RunningTooHighShortTime | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | | checkBloodPumpMCCurrent_RunningTooLowAlarm | 10 DEC 2019 5:59:08 PM | PASS 4 / 4 |
- | | | checkBloodPumpMCCurrent_RunningTooLowShortTime | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | execBloodFlowTest | execBloodFlowTest_InvalidState | 10 DEC 2019 5:59:08 PM | PASS 1 / 1 |
- | | testSetBloodFlowDataPublishIntervalOverride | testSetBloodFlowDataPublishIntervalOverride_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | testResetBloodFlowDataPublishIntervalOverride | testResetBloodFlowDataPublishIntervalOverride_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | testSetTargetBloodFlowRateOverride | testSetTargetBloodFlowRateOverride_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | testSetTargetBloodFlowRateOverride_NotLoggedIn | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | testResetTargetBloodFlowRateOverride | testResetTargetBloodFlowRateOverride_NominalPath | 10 DEC 2019 5:59:08 PM | PASS 5 / 5 |
- | | | testResetTargetBloodFlowRateOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testSetMeasuredBloodFlowRateOverride | testSetMeasuredBloodFlowRateOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testSetMeasuredBloodFlowRateOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testResetMeasuredBloodFlowRateOverride | testResetMeasuredBloodFlowRateOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testResetMeasuredBloodFlowRateOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testSetMeasuredBloodPumpRotorSpeedOverride | testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testResetMeasuredBloodPumpRotorSpeedOverride | testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testSetMeasuredBloodPumpSpeedOverride | testSetMeasuredBloodPumpSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testResetMeasuredBloodPumpSpeedOverride | testResetMeasuredBloodPumpSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testSetMeasuredBloodPumpMCSpeedOverride | testSetMeasuredBloodPumpMCSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testResetMeasuredBloodPumpMCSpeedOverride | testResetMeasuredBloodPumpMCSpeedOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testSetMeasuredBloodPumpMCCurrentOverride | testSetMeasuredBloodPumpCurrentOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | testResetMeasuredBloodPumpMCCurrentOverride | testResetMeasuredBloodPumpCurrentOverride_NominalPath | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
- | | | testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn | 10 DEC 2019 5:59:09 PM | PASS 5 / 5 |
+ | BloodFlow | initBloodFlow | initBloodFlow_NominalPath | 11 DEC 2019 9:45:40 AM | PASS 18 / 18 |
+ | | setBloodPumpTargetFlowRate | setBloodPumpTargetFlowRate_DirChngWhilePumpIsRunning | 11 DEC 2019 9:45:40 AM | PASS 3 / 3 |
+ | | | setBloodPumpTargetFlowRate_FlowTooHigh | 11 DEC 2019 9:45:40 AM | PASS 6 / 6 |
+ | | | setBloodPumpTargetFlowRate_OffToRateFwd | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_OffToRateRev | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateDecrease | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateDecreaseDuringRampDown | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateDecreaseDuringRampUp | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateIncrease | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateIncreaseDuringRampDown | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_RateIncreaseDuringRampUp | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | | setBloodPumpTargetFlowRate_ZeroRate | 11 DEC 2019 9:45:40 AM | PASS 9 / 9 |
+ | | execBloodFlowMonitor | execBloodFlowMonitor_InitMode_WrapFlowBuffer | 11 DEC 2019 9:45:40 AM | PASS 10 / 10 |
+ | | | execBloodFlowMonitor_NominalPath | 11 DEC 2019 9:45:40 AM | PASS 10 / 10 |
+ | | execBloodFlowController | execBloodFlowController_ControlToTargetState | 11 DEC 2019 9:45:41 AM | PASS 2 / 2 |
+ | | | execBloodFlowController_InvalidState | 11 DEC 2019 9:45:41 AM | PASS 4 / 4 |
+ | | | execBloodFlowController_OffState | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | execBloodFlowController_RampDown | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | execBloodFlowController_RampUpState | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | handleBloodPumpOffState | handleBloodPumpOffState_NewRateSet | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpOffState_NoChange | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | handleBloodPumpRampingUpState | handleBloodPumpRampingUpState_RampComplete | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | handleBloodPumpRampingUpState_StillRamping | 11 DEC 2019 9:45:41 AM | PASS 3 / 3 |
+ | | | handleBloodPumpRampingUpState_StopRequested | 11 DEC 2019 9:45:41 AM | PASS 3 / 3 |
+ | | handleBloodPumpRampingDownState | handleBloodPumpRampingDownState_ | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | handleBloodPumpRampingDownState_RampComplete | 11 DEC 2019 9:45:41 AM | PASS 2 / 2 |
+ | | | handleBloodPumpRampingDownState_StillRamping | 11 DEC 2019 9:45:41 AM | PASS 3 / 3 |
+ | | handleBloodPumpControlToTargetState | handleBloodPumpControlToTargetState_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpControlToTargetState_NotControlInterval | 11 DEC 2019 9:45:41 AM | PASS 2 / 2 |
+ | | | handleBloodPumpControlToTargetState_PWM_Max | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpControlToTargetState_PWM_Min | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpControlToTargetState_Reverse | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpControlToTargetState_TermsMaxRange | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | handleBloodPumpControlToTargetState_TermsMaxRange2 | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | stopBloodPump | stopBloodPump_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 4 / 4 |
+ | | releaseBloodPumpStop | releaseBloodPumpStop_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | setBloodPumpDirection | setBloodPumpDirection_FWD | 11 DEC 2019 9:45:41 AM | PASS 2 / 2 |
+ | | | setBloodPumpDirection_InvalidDirection | 11 DEC 2019 9:45:41 AM | PASS 6 / 6 |
+ | | | setBloodPumpDirection_REV | 11 DEC 2019 9:45:41 AM | PASS 2 / 2 |
+ | | getPublishBloodFlowDataInterval | getPublishBloodFlowDataInterval_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getPublishBloodFlowDataInterval_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getTargetBloodFlowRate | getTargetBloodFlowRate_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getTargetBloodFlowRate_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getMeasuredBloodFlowRate | getMeasuredBloodFlowRate_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getMeasuredBloodFlowRate_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getMeasuredBloodPumpRotorSpeed | getMeasuredBloodPumpRotorSpeed_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getMeasuredBloodPumpRotorSpeed_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getMeasuredBloodPumpSpeed | getMeasuredBloodPumpSpeed_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getMeasuredBloodPumpSpeed_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getMeasuredBloodPumpMCSpeed | getMeasuredBloodPumpMCSpeed_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getMeasuredBloodPumpMCSpeed_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | getMeasuredBloodPumpMCCurrent | getMeasuredBloodPumpCurrent_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | getMeasuredBloodPumpCurrent_Override | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | publishBloodFlowData | publishBloodFlowData_NominalPath | 11 DEC 2019 9:45:41 AM | PASS 5 / 5 |
+ | | | publishBloodFlowData_NotIntervalTime | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | checkBloodPumpDirection | checkBloodPumpDirection_Fail | 11 DEC 2019 9:45:41 AM | PASS 5 / 5 |
+ | | | checkBloodPumpDirection_NominalPath | 11 DEC 2019 9:45:41 AM | PASS |
+ | | | checkBloodPumpDirection_NotControlling | 11 DEC 2019 9:45:41 AM | PASS |
+ | | checkBloodPumpMCCurrent | checkBloodPumpMCCurrent_OFFOk | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | checkBloodPumpMCCurrent_OFFTooHighAlarm | 11 DEC 2019 9:45:41 AM | PASS 4 / 4 |
+ | | | checkBloodPumpMCCurrent_OFFTooHighShortTime | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | checkBloodPumpMCCurrent_RunningOk | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | checkBloodPumpMCCurrent_RunningTooHighAlarm | 11 DEC 2019 9:45:41 AM | PASS 4 / 4 |
+ | | | checkBloodPumpMCCurrent_RunningTooHighShortTime | 11 DEC 2019 9:45:41 AM | PASS 1 / 1 |
+ | | | checkBloodPumpMCCurrent_RunningTooLowAlarm | 11 DEC 2019 9:45:41 AM | PASS 4 / 4 |
+ | | | checkBloodPumpMCCurrent_RunningTooLowShortTime | 11 DEC 2019 9:45:42 AM | PASS 1 / 1 |
+ | | execBloodFlowTest | execBloodFlowTest_InvalidState | 11 DEC 2019 9:45:42 AM | PASS 1 / 1 |
+ | | testSetBloodFlowDataPublishIntervalOverride | testSetBloodFlowDataPublishIntervalOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetBloodFlowDataPublishIntervalOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetBloodFlowDataPublishIntervalOverride | testResetBloodFlowDataPublishIntervalOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetBloodFlowDataPublishIntervalOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetTargetBloodFlowRateOverride | testSetTargetBloodFlowRateOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetTargetBloodFlowRateOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetTargetBloodFlowRateOverride | testResetTargetBloodFlowRateOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetTargetBloodFlowRateOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetMeasuredBloodFlowRateOverride | testSetMeasuredBloodFlowRateOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetMeasuredBloodFlowRateOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetMeasuredBloodFlowRateOverride | testResetMeasuredBloodFlowRateOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetMeasuredBloodFlowRateOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetMeasuredBloodPumpRotorSpeedOverride | testSetMeasuredBloodPumpRotorSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetMeasuredBloodPumpRotorSpeedOverride | testResetMeasuredBloodPumpRotorSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetMeasuredBloodPumpRotorSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetMeasuredBloodPumpSpeedOverride | testSetMeasuredBloodPumpSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetMeasuredBloodPumpSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetMeasuredBloodPumpSpeedOverride | testResetMeasuredBloodPumpSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetMeasuredBloodPumpSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetMeasuredBloodPumpMCSpeedOverride | testSetMeasuredBloodPumpMCSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetMeasuredBloodPumpMCSpeedOverride | testResetMeasuredBloodPumpMCSpeedOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetMeasuredBloodPumpMCSpeedOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testSetMeasuredBloodPumpMCCurrentOverride | testSetMeasuredBloodPumpCurrentOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testSetMeasuredBloodPumpCurrentOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | testResetMeasuredBloodPumpMCCurrentOverride | testResetMeasuredBloodPumpCurrentOverride_NominalPath | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
+ | | | testResetMeasuredBloodPumpCurrentOverride_NotLoggedIn | 11 DEC 2019 9:45:42 AM | PASS 5 / 5 |
| TOTALS | 36 | 95 | | PASS 95 / 95 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_BUTTONS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | BUTTONS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:25 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:10 AM |
@@ -248,55 +249,55 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | Buttons | initButtons | NominalPath | 10 DEC 2019 5:59:21 PM | PASS 9 / 9 |
- | | execButtons | ButtonsPressed | 10 DEC 2019 5:59:21 PM | PASS 8 / 8 |
- | | | NoButtonsPressed | 10 DEC 2019 5:59:21 PM | PASS 8 / 8 |
- | | isStopButtonPressed | NominalPath | 10 DEC 2019 5:59:21 PM | PASS 2 / 2 |
- | | getOffButtonState | NominalPath | 10 DEC 2019 5:59:21 PM | PASS 1 / 1 |
- | | | Override | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | getStopButtonState | NominalPath | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | | Override | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | execStuckButtonTest | Completed | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | InProgressStuckButtonReleased | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | InProgressStuckButtonTimeout_OffPressed | 10 DEC 2019 5:59:22 PM | PASS 7 / 7 |
- | | | InProgressStuckButtonTimeout_StopPressed | 10 DEC 2019 5:59:22 PM | PASS 7 / 7 |
- | | | InvalidState | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | StartTestNoButtonsPressed | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | StartTestStuckButton | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | userConfirmOffButton | InvalidCmdFromUI | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | InvalidModeToTurnOff | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | OffButtonRejected | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | OffDuringFaultMode | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | OffDuringServiceMode | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | OffDuringStandbyMode | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | userConfirmOffButton_NoConfirmExpected | 10 DEC 2019 5:59:22 PM | PASS 4 / 4 |
- | | | userConfirmOffButton_NoRejectExpected | 10 DEC 2019 5:59:22 PM | PASS 4 / 4 |
- | | isCurrentOpModeOkToTurnOff | FaultMode | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | | InvalidMode | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | | ServiceMode | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | | StandbyMode | 10 DEC 2019 5:59:22 PM | PASS 1 / 1 |
- | | handleOffButtonProcessing | NoChangeNoPending | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | PressedToReleasedOffPendingFirstPulse | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | PressedToReleasedOffPendingIntermediate | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | PressedToReleasedOffPendingLastPulse | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | ReleasedToPressedFaultMode | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | ReleasedToPressedInvalidMode | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | ReleasedToPressedServiceMode | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | ReleasedToPressedStandbyMode | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | handleOffButtonProcessing_OffRequestPending | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | | handleOffButtonProcessing_OffRequestPendingExpired | 10 DEC 2019 5:59:22 PM | PASS 2 / 2 |
- | | handleStopButtonProcessing | NoChange | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | PressTimedOut | 10 DEC 2019 5:59:22 PM | PASS 6 / 6 |
- | | | PressedToReleased | 10 DEC 2019 5:59:22 PM | PASS 3 / 3 |
- | | | ReleasedToPressed | 10 DEC 2019 5:59:22 PM | PASS 6 / 6 |
- | | testSetOffButtonStateOverride | TestingActive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | testResetOffButtonStateOverride | TestingActive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | testSetStopButtonStateOverride | TestingActive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | testResetStopButtonStateOverride | TestingActive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 5:59:22 PM | PASS 5 / 5 |
+ | Buttons | initButtons | NominalPath | 11 DEC 2019 9:45:51 AM | PASS 9 / 9 |
+ | | execButtons | ButtonsPressed | 11 DEC 2019 9:45:51 AM | PASS 8 / 8 |
+ | | | NoButtonsPressed | 11 DEC 2019 9:45:51 AM | PASS 8 / 8 |
+ | | isStopButtonPressed | NominalPath | 11 DEC 2019 9:45:51 AM | PASS 2 / 2 |
+ | | getOffButtonState | NominalPath | 11 DEC 2019 9:45:51 AM | PASS 1 / 1 |
+ | | | Override | 11 DEC 2019 9:45:51 AM | PASS 1 / 1 |
+ | | getStopButtonState | NominalPath | 11 DEC 2019 9:45:51 AM | PASS 1 / 1 |
+ | | | Override | 11 DEC 2019 9:45:51 AM | PASS 1 / 1 |
+ | | execStuckButtonTest | Completed | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | InProgressStuckButtonReleased | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | InProgressStuckButtonTimeout_OffPressed | 11 DEC 2019 9:45:52 AM | PASS 7 / 7 |
+ | | | InProgressStuckButtonTimeout_StopPressed | 11 DEC 2019 9:45:52 AM | PASS 7 / 7 |
+ | | | InvalidState | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | StartTestNoButtonsPressed | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | StartTestStuckButton | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | userConfirmOffButton | InvalidCmdFromUI | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | InvalidModeToTurnOff | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | OffButtonRejected | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | OffDuringFaultMode | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | OffDuringServiceMode | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | OffDuringStandbyMode | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | userConfirmOffButton_NoConfirmExpected | 11 DEC 2019 9:45:52 AM | PASS 4 / 4 |
+ | | | userConfirmOffButton_NoRejectExpected | 11 DEC 2019 9:45:52 AM | PASS 4 / 4 |
+ | | isCurrentOpModeOkToTurnOff | FaultMode | 11 DEC 2019 9:45:52 AM | PASS 1 / 1 |
+ | | | InvalidMode | 11 DEC 2019 9:45:52 AM | PASS 1 / 1 |
+ | | | ServiceMode | 11 DEC 2019 9:45:52 AM | PASS 1 / 1 |
+ | | | StandbyMode | 11 DEC 2019 9:45:52 AM | PASS 1 / 1 |
+ | | handleOffButtonProcessing | NoChangeNoPending | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | PressedToReleasedOffPendingFirstPulse | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | PressedToReleasedOffPendingIntermediate | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | PressedToReleasedOffPendingLastPulse | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | ReleasedToPressedFaultMode | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | ReleasedToPressedInvalidMode | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | ReleasedToPressedServiceMode | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | ReleasedToPressedStandbyMode | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | handleOffButtonProcessing_OffRequestPending | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | | handleOffButtonProcessing_OffRequestPendingExpired | 11 DEC 2019 9:45:52 AM | PASS 2 / 2 |
+ | | handleStopButtonProcessing | NoChange | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | PressTimedOut | 11 DEC 2019 9:45:52 AM | PASS 6 / 6 |
+ | | | PressedToReleased | 11 DEC 2019 9:45:52 AM | PASS 3 / 3 |
+ | | | ReleasedToPressed | 11 DEC 2019 9:45:52 AM | PASS 6 / 6 |
+ | | testSetOffButtonStateOverride | TestingActive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | testResetOffButtonStateOverride | TestingActive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | testSetStopButtonStateOverride | TestingActive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | testResetStopButtonStateOverride | TestingActive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:45:52 AM | PASS 5 / 5 |
| TOTALS | 14 | 49 | | PASS 49 / 49 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMMBUFFERS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | COMMBUFFERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:28 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:12 AM |
@@ -248,26 +249,26 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | CommBuffers | initCommBuffers | NominalPath | 10 DEC 2019 5:59:49 PM | PASS 41 / 41 |
- | | addToCommBuffer | InsufficientSpaceForAdd | 10 DEC 2019 5:59:49 PM | PASS 1 / 1 |
- | | | InvalidBuffer | 10 DEC 2019 5:59:49 PM | PASS 1 / 1 |
- | | | SuccessfulAdd | 10 DEC 2019 5:59:49 PM | PASS 26 / 26 |
- | | getFromCommBuffer | InvalidBuffer | 10 DEC 2019 5:59:49 PM | PASS 1 / 1 |
- | | | LengthLargerThanBuffer | 10 DEC 2019 5:59:49 PM | PASS 4 / 4 |
- | | | LengthLargerThanContents | 10 DEC 2019 5:59:49 PM | PASS 4 / 4 |
- | | | SuccessfulGetFromBothBuffers | 10 DEC 2019 5:59:49 PM | PASS 7 / 7 |
- | | | SuccessfulGetFromInactiveBufferOnly | 10 DEC 2019 5:59:49 PM | PASS 7 / 7 |
- | | peekFromCommBuffer | InvalidBuffer | 10 DEC 2019 5:59:49 PM | PASS 1 / 1 |
- | | | LengthLargerThanBuffer | 10 DEC 2019 5:59:49 PM | PASS 4 / 4 |
- | | | LengthLargerThanContents | 10 DEC 2019 5:59:49 PM | PASS 4 / 4 |
- | | | SuccessfulPeekFromBothBuffers | 10 DEC 2019 5:59:49 PM | PASS 15 / 15 |
- | | | SuccessfulPeekFromInactiveBufferOnly | 10 DEC 2019 5:59:50 PM | PASS 15 / 15 |
- | | numberOfBytesInCommBuffer | InvalidBuffer | 10 DEC 2019 5:59:50 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 5:59:50 PM | PASS 3 / 3 |
- | | switchDoubleBuffer | Switch0To1 | 10 DEC 2019 5:59:50 PM | PASS 3 / 3 |
- | | | Switch1To0 | 10 DEC 2019 5:59:50 PM | PASS 3 / 3 |
- | | getDataFromInactiveBuffer | ConsumeAllDataInInactiveBuffer | 10 DEC 2019 5:59:50 PM | PASS 3 / 3 |
- | | | ConsumePortionOfDataInInactiveBuffer | 10 DEC 2019 5:59:50 PM | PASS 6 / 6 |
+ | CommBuffers | initCommBuffers | NominalPath | 11 DEC 2019 9:46:08 AM | PASS 41 / 41 |
+ | | addToCommBuffer | InsufficientSpaceForAdd | 11 DEC 2019 9:46:08 AM | PASS 1 / 1 |
+ | | | InvalidBuffer | 11 DEC 2019 9:46:08 AM | PASS 1 / 1 |
+ | | | SuccessfulAdd | 11 DEC 2019 9:46:08 AM | PASS 26 / 26 |
+ | | getFromCommBuffer | InvalidBuffer | 11 DEC 2019 9:46:08 AM | PASS 1 / 1 |
+ | | | LengthLargerThanBuffer | 11 DEC 2019 9:46:08 AM | PASS 4 / 4 |
+ | | | LengthLargerThanContents | 11 DEC 2019 9:46:08 AM | PASS 4 / 4 |
+ | | | SuccessfulGetFromBothBuffers | 11 DEC 2019 9:46:08 AM | PASS 7 / 7 |
+ | | | SuccessfulGetFromInactiveBufferOnly | 11 DEC 2019 9:46:08 AM | PASS 7 / 7 |
+ | | peekFromCommBuffer | InvalidBuffer | 11 DEC 2019 9:46:08 AM | PASS 1 / 1 |
+ | | | LengthLargerThanBuffer | 11 DEC 2019 9:46:08 AM | PASS 4 / 4 |
+ | | | LengthLargerThanContents | 11 DEC 2019 9:46:08 AM | PASS 4 / 4 |
+ | | | SuccessfulPeekFromBothBuffers | 11 DEC 2019 9:46:08 AM | PASS 15 / 15 |
+ | | | SuccessfulPeekFromInactiveBufferOnly | 11 DEC 2019 9:46:08 AM | PASS 15 / 15 |
+ | | numberOfBytesInCommBuffer | InvalidBuffer | 11 DEC 2019 9:46:08 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:46:08 AM | PASS 3 / 3 |
+ | | switchDoubleBuffer | Switch0To1 | 11 DEC 2019 9:46:08 AM | PASS 3 / 3 |
+ | | | Switch1To0 | 11 DEC 2019 9:46:08 AM | PASS 3 / 3 |
+ | | getDataFromInactiveBuffer | ConsumeAllDataInInactiveBuffer | 11 DEC 2019 9:46:08 AM | PASS 3 / 3 |
+ | | | ConsumePortionOfDataInInactiveBuffer | 11 DEC 2019 9:46:08 AM | PASS 6 / 6 |
| TOTALS | 7 | 20 | | PASS 20 / 20 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_COMM_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | COMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:27 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:11 AM |
@@ -248,29 +249,29 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | Comm | signalCANXmitsInitiated | signalCANXmitsInitiated_NominalPath | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | signalCANXmitsCompleted | signalCANXmitsCompleted_NominalPath | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | signalSCI1XmitsInitiated | signalSCI1XmitsInitiated_NominalPath | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | signalSCI1XmitsCompleted | signalSCI1XmitsCompleted_NominalPath | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | setSCI1DMAReceiveInterrupt | setSCI1DMAReceiveInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | setSCI1DMATransmitInterrupt | setSCI1DMATransmitInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | clearSCI1DMAReceiveInterrupt | clearSCI1DMAReceiveInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | clearSCI1DMATransmitInterrupt | clearSCI1DMATransmitInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | setSCI2DMAReceiveInterrupt | setSCI2DMAReceiveInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | setSCI2DMATransmitInterrupt | setSCI2DMATransmitInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | clearSCI2DMAReceiveInterrupt | clearSCI2DMAReceiveInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | clearSCI2DMATransmitInterrupt | clearSCI2DMATransmitInterrupt | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | isSCI1DMATransmitInProgress | isSCI1DMATransmitInProgress_DMABusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isSCI1DMATransmitInProgress_InProgress | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isSCI1DMATransmitInProgress_NotBusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isSCI1DMATransmitInProgress_TransmitterBusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | isSCI2DMATransmitInProgress | isSCI2DMATransmitInProgress_DMABusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isSCI2DMATransmitInProgress_NotBusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isSCI2DMATransmitInProgress_TransmitterBusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | isCAN1TransmitInProgress | isCAN1TransmitInProgress_Ch1_8_Busy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isCAN1TransmitInProgress_Ch9_16_Busy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isCAN1TransmitInProgress_InProgress | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
- | | | isCAN1TransmitInProgress_NotBusy | 10 DEC 2019 5:59:36 PM | PASS 1 / 1 |
+ | Comm | signalCANXmitsInitiated | signalCANXmitsInitiated_NominalPath | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | signalCANXmitsCompleted | signalCANXmitsCompleted_NominalPath | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | signalSCI1XmitsInitiated | signalSCI1XmitsInitiated_NominalPath | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | signalSCI1XmitsCompleted | signalSCI1XmitsCompleted_NominalPath | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | setSCI1DMAReceiveInterrupt | setSCI1DMAReceiveInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | setSCI1DMATransmitInterrupt | setSCI1DMATransmitInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | clearSCI1DMAReceiveInterrupt | clearSCI1DMAReceiveInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | clearSCI1DMATransmitInterrupt | clearSCI1DMATransmitInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | setSCI2DMAReceiveInterrupt | setSCI2DMAReceiveInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | setSCI2DMATransmitInterrupt | setSCI2DMATransmitInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | clearSCI2DMAReceiveInterrupt | clearSCI2DMAReceiveInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | clearSCI2DMATransmitInterrupt | clearSCI2DMATransmitInterrupt | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | isSCI1DMATransmitInProgress | isSCI1DMATransmitInProgress_DMABusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isSCI1DMATransmitInProgress_InProgress | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isSCI1DMATransmitInProgress_NotBusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isSCI1DMATransmitInProgress_TransmitterBusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | isSCI2DMATransmitInProgress | isSCI2DMATransmitInProgress_DMABusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isSCI2DMATransmitInProgress_NotBusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isSCI2DMATransmitInProgress_TransmitterBusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | isCAN1TransmitInProgress | isCAN1TransmitInProgress_Ch1_8_Busy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isCAN1TransmitInProgress_Ch9_16_Busy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isCAN1TransmitInProgress_InProgress | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
+ | | | isCAN1TransmitInProgress_NotBusy | 11 DEC 2019 9:46:00 AM | PASS 1 / 1 |
| TOTALS | 15 | 23 | | PASS 23 / 23 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_CPLD_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | CPLD |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:30 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:14 AM |
@@ -248,18 +249,18 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | CPLD | initCPLD | initCPLD_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 5 / 5 |
- | | toggleCPLDWatchdog | toggleCPLDWatchdog_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | getCPLDWatchdogExpired | getCPLDWatchdogExpired_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 2 / 2 |
- | | setCPLDLampGreen | setCPLDLampGreen_Off | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | | setCPLDLampGreen_On | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | setCPLDLampBlue | setCPLDLampBlue_Off | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | | setCPLDLampBlue_On | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | setCPLDLampRed | setCPLDLampRed_Off | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | | setCPLDLampRed_On | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | toggleCPLDOffRequest | toggleCPLDOffRequest_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 1 / 1 |
- | | getCPLDOffButton | getCPLDOffButton_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 2 / 2 |
- | | getCPLDStopButton | getCPLDStopButton_NominalPath | 10 DEC 2019 6:00:02 PM | PASS 2 / 2 |
+ | CPLD | initCPLD | initCPLD_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 5 / 5 |
+ | | toggleCPLDWatchdog | toggleCPLDWatchdog_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | getCPLDWatchdogExpired | getCPLDWatchdogExpired_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 2 / 2 |
+ | | setCPLDLampGreen | setCPLDLampGreen_Off | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | | setCPLDLampGreen_On | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | setCPLDLampBlue | setCPLDLampBlue_Off | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | | setCPLDLampBlue_On | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | setCPLDLampRed | setCPLDLampRed_Off | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | | setCPLDLampRed_On | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | toggleCPLDOffRequest | toggleCPLDOffRequest_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 1 / 1 |
+ | | getCPLDOffButton | getCPLDOffButton_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 2 / 2 |
+ | | getCPLDStopButton | getCPLDStopButton_NominalPath | 11 DEC 2019 9:46:16 AM | PASS 2 / 2 |
| TOTALS | 9 | 12 | | PASS 12 / 12 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_FPGA_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | FPGA |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:31 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:15 AM |
@@ -252,58 +253,58 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | FPGA | initFPGA | NominalPath | 10 DEC 2019 6:00:14 PM | PASS 116 / 116 |
- | | resetFPGACommFlags | NominalPath | 10 DEC 2019 6:00:14 PM | PASS 7 / 7 |
- | | signalFPGAReceiptCompleted | BulkWriteAndReadInProgressAfterWrite | 10 DEC 2019 6:00:14 PM | PASS 11 / 11 |
- | | | NothingInProgress | 10 DEC 2019 6:00:14 PM | PASS 7 / 7 |
- | | | ReadCmdInProgress | 10 DEC 2019 6:00:14 PM | PASS 7 / 7 |
- | | | WriteCmdInProgress | 10 DEC 2019 6:00:14 PM | PASS 7 / 7 |
- | | signalFPGATransmitCompleted | NominalPath | 10 DEC 2019 6:00:14 PM | PASS 7 / 7 |
- | | execFPGAIn | CommErrorTooManyRetries | 10 DEC 2019 6:00:14 PM | PASS 9 / 9 |
- | | | FailedState | 10 DEC 2019 6:00:14 PM | PASS 8 / 8 |
- | | | InvalidState | 10 DEC 2019 6:00:14 PM | PASS 9 / 9 |
- | | | OutgoingState | 10 DEC 2019 6:00:14 PM | PASS 8 / 8 |
- | | | RcvAllSensorsState | 10 DEC 2019 6:00:14 PM | PASS 13 / 13 |
- | | | RcvHeaderState | 10 DEC 2019 6:00:14 PM | PASS 14 / 14 |
- | | | StartState | 10 DEC 2019 6:00:14 PM | PASS 8 / 8 |
- | | execFPGAOut | FailedState | 10 DEC 2019 6:00:14 PM | PASS 1 / 1 |
- | | | IncomingState | 10 DEC 2019 6:00:14 PM | PASS 1 / 1 |
- | | | InvalidState | 10 DEC 2019 6:00:14 PM | PASS 2 / 2 |
- | | | ReadHeaderState | 10 DEC 2019 6:00:14 PM | PASS 19 / 19 |
- | | | WriteAllActuatorsState | 10 DEC 2019 6:00:14 PM | PASS 18 / 18 |
- | | handleFPGAReadHeaderState | NominalCase | 10 DEC 2019 6:00:15 PM | PASS 13 / 13 |
- | | handleFPGAReceiveHeaderState | BadCRC | 10 DEC 2019 6:00:15 PM | PASS 9 / 9 |
- | | | NAKResponse | 10 DEC 2019 6:00:15 PM | PASS 8 / 8 |
- | | | NoResponseReceived | 10 DEC 2019 6:00:15 PM | PASS 8 / 8 |
- | | | NominalCase | 10 DEC 2019 6:00:15 PM | PASS 9 / 9 |
- | | handleFPGAWriteAllActuatorsState | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 25 / 25 |
- | | handleFPGAReceiveAllSensorsState | BadCRC | 10 DEC 2019 6:00:15 PM | PASS 6 / 6 |
- | | | NAKResponse | 10 DEC 2019 6:00:15 PM | PASS 5 / 5 |
- | | | NoResponseReceived | 10 DEC 2019 6:00:15 PM | PASS 5 / 5 |
- | | | NoWriteResponseReceived | 10 DEC 2019 6:00:15 PM | PASS 5 / 5 |
- | | | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 5 / 5 |
- | | execFPGATest | TestFailed | 10 DEC 2019 6:00:15 PM | PASS 4 / 4 |
- | | | TestPassed | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | setupDMAForWriteCmd | LengthTooLarge | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | startDMAWriteCmd | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 20 / 20 |
- | | setupDMAForWriteResp | LengthTooLarge | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | startDMAReceiptOfWriteResp | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 20 / 20 |
- | | setupDMAForReadCmd | LengthTooLarge | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | startDMAReadCmd | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 20 / 20 |
- | | setupDMAForReadResp | LengthTooLarge | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | startDMAReceiptOfReadResp | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 20 / 20 |
- | | getFPGAId | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | getFPGARev | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | getFPGAStatus | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | setFPGAControl | NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | getFPGABloodFlow | getFPGABloodFlow_NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | getFPGADialysateFlow | getFPGADialysateFlow_NominalPath | 10 DEC 2019 6:00:15 PM | PASS 1 / 1 |
- | | consumeUnexpectedData | DataBytePending | 10 DEC 2019 6:00:15 PM | PASS |
- | | | NoData | 10 DEC 2019 6:00:15 PM | PASS |
+ | FPGA | initFPGA | NominalPath | 11 DEC 2019 9:46:24 AM | PASS 116 / 116 |
+ | | resetFPGACommFlags | NominalPath | 11 DEC 2019 9:46:24 AM | PASS 7 / 7 |
+ | | signalFPGAReceiptCompleted | BulkWriteAndReadInProgressAfterWrite | 11 DEC 2019 9:46:24 AM | PASS 11 / 11 |
+ | | | NothingInProgress | 11 DEC 2019 9:46:24 AM | PASS 7 / 7 |
+ | | | ReadCmdInProgress | 11 DEC 2019 9:46:24 AM | PASS 7 / 7 |
+ | | | WriteCmdInProgress | 11 DEC 2019 9:46:24 AM | PASS 7 / 7 |
+ | | signalFPGATransmitCompleted | NominalPath | 11 DEC 2019 9:46:24 AM | PASS 7 / 7 |
+ | | execFPGAIn | CommErrorTooManyRetries | 11 DEC 2019 9:46:24 AM | PASS 9 / 9 |
+ | | | FailedState | 11 DEC 2019 9:46:24 AM | PASS 8 / 8 |
+ | | | InvalidState | 11 DEC 2019 9:46:24 AM | PASS 9 / 9 |
+ | | | OutgoingState | 11 DEC 2019 9:46:24 AM | PASS 8 / 8 |
+ | | | RcvAllSensorsState | 11 DEC 2019 9:46:24 AM | PASS 13 / 13 |
+ | | | RcvHeaderState | 11 DEC 2019 9:46:24 AM | PASS 14 / 14 |
+ | | | StartState | 11 DEC 2019 9:46:24 AM | PASS 8 / 8 |
+ | | execFPGAOut | FailedState | 11 DEC 2019 9:46:24 AM | PASS 1 / 1 |
+ | | | IncomingState | 11 DEC 2019 9:46:24 AM | PASS 1 / 1 |
+ | | | InvalidState | 11 DEC 2019 9:46:24 AM | PASS 2 / 2 |
+ | | | ReadHeaderState | 11 DEC 2019 9:46:24 AM | PASS 19 / 19 |
+ | | | WriteAllActuatorsState | 11 DEC 2019 9:46:24 AM | PASS 18 / 18 |
+ | | handleFPGAReadHeaderState | NominalCase | 11 DEC 2019 9:46:24 AM | PASS 13 / 13 |
+ | | handleFPGAReceiveHeaderState | BadCRC | 11 DEC 2019 9:46:24 AM | PASS 9 / 9 |
+ | | | NAKResponse | 11 DEC 2019 9:46:24 AM | PASS 8 / 8 |
+ | | | NoResponseReceived | 11 DEC 2019 9:46:24 AM | PASS 8 / 8 |
+ | | | NominalCase | 11 DEC 2019 9:46:24 AM | PASS 9 / 9 |
+ | | handleFPGAWriteAllActuatorsState | NominalPath | 11 DEC 2019 9:46:24 AM | PASS 25 / 25 |
+ | | handleFPGAReceiveAllSensorsState | BadCRC | 11 DEC 2019 9:46:24 AM | PASS 6 / 6 |
+ | | | NAKResponse | 11 DEC 2019 9:46:24 AM | PASS 5 / 5 |
+ | | | NoResponseReceived | 11 DEC 2019 9:46:24 AM | PASS 5 / 5 |
+ | | | NoWriteResponseReceived | 11 DEC 2019 9:46:24 AM | PASS 5 / 5 |
+ | | | NominalPath | 11 DEC 2019 9:46:24 AM | PASS 5 / 5 |
+ | | execFPGATest | TestFailed | 11 DEC 2019 9:46:24 AM | PASS 4 / 4 |
+ | | | TestPassed | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | setupDMAForWriteCmd | LengthTooLarge | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | startDMAWriteCmd | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 20 / 20 |
+ | | setupDMAForWriteResp | LengthTooLarge | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | startDMAReceiptOfWriteResp | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 20 / 20 |
+ | | setupDMAForReadCmd | LengthTooLarge | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | startDMAReadCmd | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 20 / 20 |
+ | | setupDMAForReadResp | LengthTooLarge | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | startDMAReceiptOfReadResp | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 20 / 20 |
+ | | getFPGAId | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | getFPGARev | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | getFPGAStatus | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | setFPGAControl | NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | getFPGABloodFlow | getFPGABloodFlow_NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | getFPGADialysateFlow | getFPGADialysateFlow_NominalPath | 11 DEC 2019 9:46:25 AM | PASS 1 / 1 |
+ | | consumeUnexpectedData | DataBytePending | 11 DEC 2019 9:46:25 AM | PASS |
+ | | | NoData | 11 DEC 2019 9:46:25 AM | PASS |
| TOTALS | 26 | 52 | | PASS 52 / 52 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INTERRUPTS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INTERRUPTS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:33 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:16 AM |
@@ -252,26 +253,26 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | Interrupts | phantomInterrupt | NominalPath | 10 DEC 2019 6:00:29 PM | PASS |
- | | canMessageNotification | InvalidCANNode | 10 DEC 2019 6:00:29 PM | PASS |
- | | | NominalPath | 10 DEC 2019 6:00:29 PM | PASS 1 / 1 |
- | | canErrorNotification | canErrorNotification_BusOff | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | canErrorNotification_BusPassive | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | canErrorNotification_BusWarning | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | canErrorNotification_InvalidCANNode | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | canErrorNotification_Other | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | canErrorNotification_ParityError | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | sciNotification | FramingError_SCI | 10 DEC 2019 6:00:29 PM | PASS 2 / 2 |
- | | | FramingError_SCI2 | 10 DEC 2019 6:00:29 PM | PASS 2 / 2 |
- | | | InvalidSCI | 10 DEC 2019 6:00:29 PM | PASS 4 / 4 |
- | | | OverrunError_SCI | 10 DEC 2019 6:00:29 PM | PASS 2 / 2 |
- | | | OverrunError_SCI2 | 10 DEC 2019 6:00:29 PM | PASS 2 / 2 |
- | | dmaGroupANotification | DMAChannel0 | 10 DEC 2019 6:00:29 PM | PASS |
- | | | DMAChannel1 | 10 DEC 2019 6:00:29 PM | PASS |
- | | | DMAChannel2 | 10 DEC 2019 6:00:29 PM | PASS |
- | | | DMAChannel3 | 10 DEC 2019 6:00:29 PM | PASS |
- | | | InvalidChannel | 10 DEC 2019 6:00:29 PM | PASS |
- | | | UnexpectedInterruptType | 10 DEC 2019 6:00:29 PM | PASS |
+ | Interrupts | phantomInterrupt | NominalPath | 11 DEC 2019 9:46:32 AM | PASS |
+ | | canMessageNotification | InvalidCANNode | 11 DEC 2019 9:46:32 AM | PASS |
+ | | | NominalPath | 11 DEC 2019 9:46:32 AM | PASS 1 / 1 |
+ | | canErrorNotification | canErrorNotification_BusOff | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | | canErrorNotification_BusPassive | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | | canErrorNotification_BusWarning | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | | canErrorNotification_InvalidCANNode | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | | canErrorNotification_Other | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | | canErrorNotification_ParityError | 11 DEC 2019 9:46:32 AM | PASS 4 / 4 |
+ | | sciNotification | FramingError_SCI | 11 DEC 2019 9:46:33 AM | PASS 2 / 2 |
+ | | | FramingError_SCI2 | 11 DEC 2019 9:46:33 AM | PASS 2 / 2 |
+ | | | InvalidSCI | 11 DEC 2019 9:46:33 AM | PASS 4 / 4 |
+ | | | OverrunError_SCI | 11 DEC 2019 9:46:33 AM | PASS 2 / 2 |
+ | | | OverrunError_SCI2 | 11 DEC 2019 9:46:33 AM | PASS 2 / 2 |
+ | | dmaGroupANotification | DMAChannel0 | 11 DEC 2019 9:46:33 AM | PASS |
+ | | | DMAChannel1 | 11 DEC 2019 9:46:33 AM | PASS |
+ | | | DMAChannel2 | 11 DEC 2019 9:46:33 AM | PASS |
+ | | | DMAChannel3 | 11 DEC 2019 9:46:33 AM | PASS |
+ | | | InvalidChannel | 11 DEC 2019 9:46:33 AM | PASS |
+ | | | UnexpectedInterruptType | 11 DEC 2019 9:46:33 AM | PASS |
| TOTALS | 5 | 20 | | PASS 20 / 20 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMLAMP_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_ALARMLAMP |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:35 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:17 AM |
@@ -248,12 +249,12 @@
| | testResetCurrentLampPatternOverride | | | |
| TOTALS | 8 | | | |
| ModeFault | initFaultMode | | | |
- | | transitionToFaultMode | requestAlarmLampPattern | 10 DEC 2019 6:01:02 PM | PASS 2 / 2 |
+ | | transitionToFaultMode | requestAlarmLampPattern | 11 DEC 2019 9:46:51 AM | PASS 2 / 2 |
| | execFaultMode | | | |
| TOTALS | 3 | 1 | | PASS 1 / 1 |
| ModeInitPOST | initInitAndPOSTMode | | | |
| | transitionToInitAndPOSTMode | | | |
- | | execInitAndPOSTMode | execAlarmLampTest | 10 DEC 2019 6:01:02 PM | PASS 1 / 1 |
+ | | execInitAndPOSTMode | execAlarmLampTest | 11 DEC 2019 9:46:51 AM | PASS 1 / 1 |
| | isPOSTCompleted | | | |
| | isPOSTPassed | | | |
| | handlePOSTStatus | | | |
@@ -274,8 +275,8 @@
| | handleTestHDMessageRequest | | | |
| | handleTestOffButtonStateOverrideRequest | | | |
| | handleTestStopButtonStateOverrideRequest | | | |
- | | handleTestAlarmLampPatternOverrideRequest | testResetCurrentLampPatternOverride | 10 DEC 2019 6:01:02 PM | PASS 3 / 3 |
- | | | testSetCurrentLampPatternOverride | 10 DEC 2019 6:01:02 PM | PASS 3 / 3 |
+ | | handleTestAlarmLampPatternOverrideRequest | testResetCurrentLampPatternOverride | 11 DEC 2019 9:46:51 AM | PASS 3 / 3 |
+ | | | testSetCurrentLampPatternOverride | 11 DEC 2019 9:46:51 AM | PASS 3 / 3 |
| | handleTestWatchdogCheckInStateOverrideRequest | | | |
| | handleTestAlarmStateOverrideRequest | | | |
| | handleTestAlarmTimeOverrideRequest | | | |
@@ -286,11 +287,11 @@
| | handleTestBloodPumpMeasuredCurrentOverrideRequest | | | |
| | handleTestBloodFlowBroadcastIntervalOverrideRequest | | | |
| TOTALS | 26 | 2 | | PASS 2 / 2 |
- | TaskGeneral | taskGeneral | execAlarmLamp | 10 DEC 2019 6:01:02 PM | PASS 4 / 4 |
+ | TaskGeneral | taskGeneral | execAlarmLamp | 11 DEC 2019 9:46:51 AM | PASS 4 / 4 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initAlarmLamp | 10 DEC 2019 6:01:02 PM | PASS 5 / 5 |
+ | | initSoftware | initAlarmLamp | 11 DEC 2019 9:46:51 AM | PASS 5 / 5 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_ALARMMGMT_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_ALARMMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:36 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:19 AM |
@@ -240,8 +241,8 @@
| TOTALS | | | | |
| BloodFlow | initBloodFlow | | | |
| | setBloodPumpTargetFlowRate | | | |
- | | execBloodFlowMonitor | activateAlarm1Data | 10 DEC 2019 6:01:25 PM | PASS 3 / 3 |
- | | execBloodFlowController | activateAlarm2Data | 10 DEC 2019 6:01:25 PM | PASS 5 / 5 |
+ | | execBloodFlowMonitor | activateAlarm1Data | 11 DEC 2019 9:47:05 AM | PASS 3 / 3 |
+ | | execBloodFlowController | activateAlarm2Data | 11 DEC 2019 9:47:05 AM | PASS 5 / 5 |
| | handleBloodPumpOffState | | | |
| | handleBloodPumpRampingUpState | | | |
| | handleBloodPumpRampingDownState | | | |
@@ -299,11 +300,11 @@
| | testSetAlarmStartOverride | | | |
| | testResetAlarmStartOverride | | | |
| TOTALS | 23 | | | |
- | TaskGeneral | taskGeneral | execAlarmMgmt | 10 DEC 2019 6:01:25 PM | PASS 2 / 2 |
+ | TaskGeneral | taskGeneral | execAlarmMgmt | 11 DEC 2019 9:47:05 AM | PASS 2 / 2 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initAlarmMgmt | 10 DEC 2019 6:01:25 PM | PASS 14 / 14 |
+ | | initSoftware | initAlarmMgmt | 11 DEC 2019 9:47:05 AM | PASS 14 / 14 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BLOODFLOW_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_BLOODFLOW |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:38 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:20 AM |
@@ -275,13 +276,13 @@
| | testSetMeasuredBloodPumpMCCurrentOverride | | | |
| | testResetMeasuredBloodPumpMCCurrentOverride | | | |
| TOTALS | 36 | | | |
- | TaskGeneral | taskGeneral | execBloodFlowController | 10 DEC 2019 6:01:47 PM | PASS 1 / 1 |
+ | TaskGeneral | taskGeneral | execBloodFlowController | 11 DEC 2019 9:47:17 AM | PASS 1 / 1 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
- | TaskPriority | taskPriority | execBloodFlowMonitor | 10 DEC 2019 6:01:47 PM | PASS 7 / 7 |
+ | TaskPriority | taskPriority | execBloodFlowMonitor | 11 DEC 2019 9:47:17 AM | PASS 7 / 7 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initBloodFlow | 10 DEC 2019 6:01:47 PM | PASS 6 / 6 |
+ | | initSoftware | initBloodFlow | 11 DEC 2019 9:47:17 AM | PASS 6 / 6 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_BUTTONS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_BUTTONS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:39 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:22 AM |
@@ -255,14 +256,14 @@
| TOTALS | 14 | | | |
| ModeInitPOST | initInitAndPOSTMode | | | |
| | transitionToInitAndPOSTMode | | | |
- | | execInitAndPOSTMode | execStuckButtonTest | 10 DEC 2019 6:02:13 PM | PASS 2 / 2 |
+ | | execInitAndPOSTMode | execStuckButtonTest | 11 DEC 2019 9:47:32 AM | PASS 2 / 2 |
| | isPOSTCompleted | | | |
| | isPOSTPassed | | | |
| | handlePOSTStatus | | | |
| TOTALS | 6 | 1 | | PASS 1 / 1 |
| SystemCommMessages | serializeMessage | | | |
| | sendOffButtonMsgToUI | | | |
- | | handleOffButtonConfirmMsgFromUI | userConfirmOffButton | 10 DEC 2019 6:02:13 PM | PASS 1 / 1 |
+ | | handleOffButtonConfirmMsgFromUI | userConfirmOffButton | 11 DEC 2019 9:47:32 AM | PASS 1 / 1 |
| | broadcastAlarmStatus | | | |
| | broadcastAlarmTriggered | | | |
| | broadcastAlarmCleared | | | |
@@ -274,10 +275,10 @@
| | sendTestAckResponseMsg | | | |
| | handleTesterLogInRequest | | | |
| | handleTestHDMessageRequest | | | |
- | | handleTestOffButtonStateOverrideRequest | testResetOffButtonStateOverride | 10 DEC 2019 6:02:13 PM | PASS 3 / 3 |
- | | | testSetOffButtonStateOverride | 10 DEC 2019 6:02:13 PM | PASS 3 / 3 |
- | | handleTestStopButtonStateOverrideRequest | testResetStopButtonStateOverride | 10 DEC 2019 6:02:13 PM | PASS 3 / 3 |
- | | | testSetStopButtonStateOverride | 10 DEC 2019 6:02:13 PM | PASS 3 / 3 |
+ | | handleTestOffButtonStateOverrideRequest | testResetOffButtonStateOverride | 11 DEC 2019 9:47:32 AM | PASS 3 / 3 |
+ | | | testSetOffButtonStateOverride | 11 DEC 2019 9:47:32 AM | PASS 3 / 3 |
+ | | handleTestStopButtonStateOverrideRequest | testResetStopButtonStateOverride | 11 DEC 2019 9:47:32 AM | PASS 3 / 3 |
+ | | | testSetStopButtonStateOverride | 11 DEC 2019 9:47:32 AM | PASS 3 / 3 |
| | handleTestAlarmLampPatternOverrideRequest | | | |
| | handleTestWatchdogCheckInStateOverrideRequest | | | |
| | handleTestAlarmStateOverrideRequest | | | |
@@ -289,11 +290,11 @@
| | handleTestBloodPumpMeasuredCurrentOverrideRequest | | | |
| | handleTestBloodFlowBroadcastIntervalOverrideRequest | | | |
| TOTALS | 26 | 5 | | PASS 5 / 5 |
- | TaskPriority | taskPriority | execButtons | 10 DEC 2019 6:02:13 PM | PASS 2 / 2 |
+ | TaskPriority | taskPriority | execButtons | 11 DEC 2019 9:47:33 AM | PASS 2 / 2 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initButtons | 10 DEC 2019 6:02:13 PM | PASS 9 / 9 |
+ | | initSoftware | initButtons | 11 DEC 2019 9:47:33 AM | PASS 9 / 9 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_COMMBUFFERS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_COMMBUFFERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:41 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:23 AM |
@@ -272,13 +273,13 @@
| | transmitNextCANPacket | | | |
| | transmitNextUARTPacket | | | |
| | processIncomingData | | | |
- | | consumeBufferPaddingBeforeSync | peekAndgetFromAndNumberOfBytesInCommBuffer | 10 DEC 2019 6:02:38 PM | PASS 15 / 15 |
+ | | consumeBufferPaddingBeforeSync | peekAndgetFromAndNumberOfBytesInCommBuffer | 11 DEC 2019 9:47:46 AM | PASS 15 / 15 |
| | parseMessageFromBuffer | | | |
| | processReceivedMessages | | | |
| | processReceivedMessage | | | |
| TOTALS | 22 | 1 | | PASS 1 / 1 |
| SystemCommMessages | serializeMessage | | | |
- | | sendOffButtonMsgToUI | addToCommBuffer | 10 DEC 2019 6:02:38 PM | PASS 11 / 11 |
+ | | sendOffButtonMsgToUI | addToCommBuffer | 11 DEC 2019 9:47:46 AM | PASS 11 / 11 |
| | handleOffButtonConfirmMsgFromUI | | | |
| | broadcastAlarmStatus | | | |
| | broadcastAlarmTriggered | | | |
@@ -306,7 +307,7 @@
| TOTALS | 26 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initCommBuffers | 10 DEC 2019 6:02:38 PM | PASS 65 / 65 |
+ | | initSoftware | initCommBuffers | 11 DEC 2019 9:47:46 AM | PASS 65 / 65 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_CPLD_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_CPLD |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:42 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:24 AM |
@@ -242,21 +243,21 @@
| | execAlarmLamp | | | |
| | requestAlarmLampPattern | | | |
| | getCurrentAlarmLampPattern | | | |
- | | execAlarmLampTest | setCPLDLampGreen | 10 DEC 2019 6:03:03 PM | PASS 4 / 4 |
- | | | setCPLDLampRed | 10 DEC 2019 6:03:03 PM | PASS 2 / 2 |
+ | | execAlarmLampTest | setCPLDLampGreen | 11 DEC 2019 9:48:02 AM | PASS 4 / 4 |
+ | | | setCPLDLampRed | 11 DEC 2019 9:48:02 AM | PASS 2 / 2 |
| | setAlarmLampToPatternStep | | | |
| | testSetCurrentLampPatternOverride | | | |
| | testResetCurrentLampPatternOverride | | | |
| TOTALS | 8 | 2 | | PASS 2 / 2 |
| Buttons | initButtons | | | |
- | | execButtons | getCPLDOffAndStopButtons | 10 DEC 2019 6:03:03 PM | PASS 2 / 2 |
+ | | execButtons | getCPLDOffAndStopButtons | 11 DEC 2019 9:48:02 AM | PASS 2 / 2 |
| | isStopButtonPressed | | | |
| | getOffButtonState | | | |
| | getStopButtonState | | | |
| | execStuckButtonTest | | | |
| | userConfirmOffButton | | | |
| | isCurrentOpModeOkToTurnOff | | | |
- | | handleOffButtonProcessing | toggleCPLDOffRequest | 10 DEC 2019 6:03:03 PM | PASS 4 / 4 |
+ | | handleOffButtonProcessing | toggleCPLDOffRequest | 11 DEC 2019 9:48:02 AM | PASS 4 / 4 |
| | handleStopButtonProcessing | | | |
| | testSetOffButtonStateOverride | | | |
| | testResetOffButtonStateOverride | | | |
@@ -274,19 +275,19 @@
| | getCPLDStopButton | | | |
| TOTALS | 9 | | | |
| WatchdogMgmt | initWatchdogMgmt | | | |
- | | execWatchdogMgmt | getCPLDWatchdogExpired | 10 DEC 2019 6:03:03 PM | PASS 1 / 1 |
+ | | execWatchdogMgmt | getCPLDWatchdogExpired | 11 DEC 2019 9:48:02 AM | PASS 1 / 1 |
| | checkInWithWatchdogMgmt | | | |
| | execWatchdogTest | | | |
| | resetWDTaskCheckIns | | | |
| | haveAllTasksCheckedIn | | | |
| | hasTaskGeneralCheckedIn | | | |
- | | petWatchdog | toggleCPLDWatchdog | 10 DEC 2019 6:03:03 PM | PASS 1 / 1 |
+ | | petWatchdog | toggleCPLDWatchdog | 11 DEC 2019 9:48:02 AM | PASS 1 / 1 |
| | testSetWatchdogTaskCheckInOverride | | | |
| | testResetWatchdogTaskCheckInOverride | | | |
| TOTALS | 10 | 2 | | PASS 2 / 2 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initCPLD | 10 DEC 2019 6:03:03 PM | PASS 5 / 5 |
+ | | initSoftware | initCPLD | 11 DEC 2019 9:48:02 AM | PASS 5 / 5 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_FPGA_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_FPGA |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:44 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:25 AM |
@@ -240,7 +241,7 @@
| TOTALS | | | | |
| ModeInitPOST | initInitAndPOSTMode | | | |
| | transitionToInitAndPOSTMode | | | |
- | | execInitAndPOSTMode | execFPGATest | 10 DEC 2019 6:03:29 PM | PASS 5 / 5 |
+ | | execInitAndPOSTMode | execFPGATest | 11 DEC 2019 9:48:17 AM | PASS 5 / 5 |
| | isPOSTCompleted | | | |
| | isPOSTPassed | | | |
| | handlePOSTStatus | | | |
@@ -276,14 +277,14 @@
| | canMessageNotification | | | |
| | canErrorNotification | | | |
| | sciNotification | | | |
- | | dmaGroupANotification | signalFPGAReceiptCompleted | 10 DEC 2019 6:03:29 PM | PASS 3 / 3 |
- | | | signalFPGATransmitCompleted | 10 DEC 2019 6:03:29 PM | PASS 1 / 1 |
+ | | dmaGroupANotification | signalFPGAReceiptCompleted | 11 DEC 2019 9:48:17 AM | PASS 3 / 3 |
+ | | | signalFPGATransmitCompleted | 11 DEC 2019 9:48:17 AM | PASS 1 / 1 |
| TOTALS | 5 | 2 | | PASS 2 / 2 |
- | TaskPriority | taskPriority | execFPGAInAndOut | 10 DEC 2019 6:03:29 PM | PASS 1 / 1 |
+ | TaskPriority | taskPriority | execFPGAInAndOut | 11 DEC 2019 9:48:17 AM | PASS 1 / 1 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initFPGA | 10 DEC 2019 6:03:29 PM | PASS 23 / 23 |
+ | | initSoftware | initFPGA | 11 DEC 2019 9:48:17 AM | PASS 23 / 23 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_MSGQUEUES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_MSGQUEUES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:46 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:27 AM |
@@ -271,14 +272,14 @@
| | findNextHighestPriorityCANPacketToTransmit | | | |
| | transmitNextCANPacket | | | |
| | transmitNextUARTPacket | | | |
- | | processIncomingData | addToMsgQueue | 10 DEC 2019 6:03:53 PM | PASS 9 / 9 |
+ | | processIncomingData | addToMsgQueue | 11 DEC 2019 9:48:30 AM | PASS 9 / 9 |
| | consumeBufferPaddingBeforeSync | | | |
| | parseMessageFromBuffer | | | |
- | | processReceivedMessages | getFromMsgQueue | 10 DEC 2019 6:03:53 PM | PASS 3 / 3 |
+ | | processReceivedMessages | getFromMsgQueue | 11 DEC 2019 9:48:30 AM | PASS 3 / 3 |
| | processReceivedMessage | | | |
| TOTALS | 22 | 2 | | PASS 2 / 2 |
| SystemCommMessages | serializeMessage | | | |
- | | sendOffButtonMsgToUI | blankMessage | 10 DEC 2019 6:03:53 PM | PASS 10 / 10 |
+ | | sendOffButtonMsgToUI | blankMessage | 11 DEC 2019 9:48:30 AM | PASS 10 / 10 |
| | handleOffButtonConfirmMsgFromUI | | | |
| | broadcastAlarmStatus | | | |
| | broadcastAlarmTriggered | | | |
@@ -306,7 +307,7 @@
| TOTALS | 26 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initMsgQueues | 10 DEC 2019 6:03:53 PM | PASS 3 / 3 |
+ | | initSoftware | initMsgQueues | 11 DEC 2019 9:48:30 AM | PASS 3 / 3 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_OPERATIONMODES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_OPERATIONMODES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:47 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:28 AM |
@@ -244,7 +245,7 @@
| | getOffButtonState | | | |
| | getStopButtonState | | | |
| | execStuckButtonTest | | | |
- | | userConfirmOffButton | getCurrentOperationMode | 10 DEC 2019 6:04:18 PM | PASS 1 / 1 |
+ | | userConfirmOffButton | getCurrentOperationMode | 11 DEC 2019 9:48:44 AM | PASS 1 / 1 |
| | isCurrentOpModeOkToTurnOff | | | |
| | handleOffButtonProcessing | | | |
| | handleStopButtonProcessing | | | |
@@ -255,7 +256,7 @@
| TOTALS | 14 | 1 | | PASS 1 / 1 |
| ModeInitPOST | initInitAndPOSTMode | | | |
| | transitionToInitAndPOSTMode | | | |
- | | execInitAndPOSTMode | requestNewOperationMode | 10 DEC 2019 6:04:18 PM | PASS 4 / 4 |
+ | | execInitAndPOSTMode | requestNewOperationMode | 11 DEC 2019 9:48:44 AM | PASS 4 / 4 |
| | isPOSTCompleted | | | |
| | isPOSTPassed | | | |
| | handlePOSTStatus | | | |
@@ -267,11 +268,11 @@
| | arbitrateModeRequest | | | |
| | transitionToNewOperationMode | | | |
| TOTALS | 6 | | | |
- | TaskGeneral | taskGeneral | execOperationModes | 10 DEC 2019 6:04:18 PM | PASS 1 / 1 |
+ | TaskGeneral | taskGeneral | execOperationModes | 11 DEC 2019 9:48:44 AM | PASS 1 / 1 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initOperationModes | 10 DEC 2019 6:04:18 PM | PASS 4 / 4 |
+ | | initSoftware | initOperationModes | 11 DEC 2019 9:48:44 AM | PASS 4 / 4 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SAFETYSHUTDOWN_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_SAFETYSHUTDOWN |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:49 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:29 AM |
@@ -243,7 +244,7 @@
| TOTALS | 2 | | | |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initSafetyShutdown | 10 DEC 2019 6:04:34 PM | PASS 2 / 2 |
+ | | initSoftware | initSafetyShutdown | 11 DEC 2019 9:48:55 AM | PASS 2 / 2 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMMMESSAGES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_SYSTEMCOMMMESSAGES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:52 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:32 AM |
@@ -246,9 +247,9 @@
| | execStuckButtonTest | | | |
| | userConfirmOffButton | | | |
| | isCurrentOpModeOkToTurnOff | | | |
- | | handleOffButtonProcessing | sendOffButtonMsgToUI | 10 DEC 2019 6:05:30 PM | PASS 11 / 11 |
+ | | handleOffButtonProcessing | sendOffButtonMsgToUI | 11 DEC 2019 9:49:25 AM | PASS 11 / 11 |
| | handleStopButtonProcessing | | | |
- | | testSetOffButtonStateOverride | isTestingActivated | 10 DEC 2019 6:05:30 PM | PASS 1 / 1 |
+ | | testSetOffButtonStateOverride | isTestingActivated | 11 DEC 2019 9:49:25 AM | PASS 1 / 1 |
| | testResetOffButtonStateOverride | | | |
| | testSetStopButtonStateOverride | | | |
| | testResetStopButtonStateOverride | | | |
@@ -290,13 +291,13 @@
| | consumeBufferPaddingBeforeSync | | | |
| | parseMessageFromBuffer | | | |
| | processReceivedMessages | | | |
- | | processReceivedMessage | handleOffButtonConfirmMsgFromUI | 10 DEC 2019 6:05:30 PM | PASS 1 / 1 |
- | | | handleTestAlarmLampPatternOverrideRequest | 10 DEC 2019 6:05:30 PM | PASS 1 / 1 |
- | | | handleTestHDMessageRequest | 10 DEC 2019 6:05:30 PM | PASS 7 / 7 |
- | | | handleTestOffButtonStateOverrideRequest | 10 DEC 2019 6:05:30 PM | PASS 3 / 3 |
- | | | handleTestStopButtonStateOverrideRequest | 10 DEC 2019 6:05:30 PM | PASS 3 / 3 |
- | | | handleTestWatchdogCheckInStateOverrideRequest | 10 DEC 2019 6:05:30 PM | PASS 2 / 2 |
- | | | handleTesterLogInRequest | 10 DEC 2019 6:05:30 PM | PASS 1 / 1 |
+ | | processReceivedMessage | handleOffButtonConfirmMsgFromUI | 11 DEC 2019 9:49:25 AM | PASS 1 / 1 |
+ | | | handleTestAlarmLampPatternOverrideRequest | 11 DEC 2019 9:49:25 AM | PASS 1 / 1 |
+ | | | handleTestHDMessageRequest | 11 DEC 2019 9:49:25 AM | PASS 7 / 7 |
+ | | | handleTestOffButtonStateOverrideRequest | 11 DEC 2019 9:49:25 AM | PASS 3 / 3 |
+ | | | handleTestStopButtonStateOverrideRequest | 11 DEC 2019 9:49:25 AM | PASS 3 / 3 |
+ | | | handleTestWatchdogCheckInStateOverrideRequest | 11 DEC 2019 9:49:25 AM | PASS 2 / 2 |
+ | | | handleTesterLogInRequest | 11 DEC 2019 9:49:25 AM | PASS 1 / 1 |
| TOTALS | 22 | 7 | | PASS 7 / 7 |
| SystemCommMessages | serializeMessage | | | |
| | sendOffButtonMsgToUI | | | |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_SYSTEMCOMM_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_SYSTEMCOMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:50 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:31 AM |
@@ -247,11 +248,11 @@
| | getDataFromInactiveBuffer | | | |
| TOTALS | 7 | | | |
| Interrupts | phantomInterrupt | | | |
- | | canMessageNotification | handleCANMsgInterrupt | 10 DEC 2019 6:05:05 PM | PASS 12 / 12 |
+ | | canMessageNotification | handleCANMsgInterrupt | 11 DEC 2019 9:49:11 AM | PASS 12 / 12 |
| | canErrorNotification | | | |
| | sciNotification | | | |
- | | dmaGroupANotification | handleUARTMsgRecvPacketInterrupt | 10 DEC 2019 6:05:05 PM | PASS 10 / 10 |
- | | | handleUARTMsgXmitPacketInterrupt | 10 DEC 2019 6:05:05 PM | PASS 6 / 6 |
+ | | dmaGroupANotification | handleUARTMsgRecvPacketInterrupt | 11 DEC 2019 9:49:11 AM | PASS 10 / 10 |
+ | | | handleUARTMsgXmitPacketInterrupt | 11 DEC 2019 9:49:11 AM | PASS 6 / 6 |
| TOTALS | 5 | 3 | | PASS 3 / 3 |
| MsgQueues | initMsgQueues | | | |
| | addToMsgQueue | | | |
@@ -311,11 +312,11 @@
| | handleTestBloodPumpMeasuredCurrentOverrideRequest | | | |
| | handleTestBloodFlowBroadcastIntervalOverrideRequest | | | |
| TOTALS | 26 | | | |
- | TaskGeneral | taskGeneral | execSystemCommRxAndTx | 10 DEC 2019 6:05:05 PM | PASS 6 / 6 |
+ | TaskGeneral | taskGeneral | execSystemCommRxAndTx | 11 DEC 2019 9:49:11 AM | PASS 6 / 6 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initSystemComm | 10 DEC 2019 6:05:05 PM | PASS 14 / 14 |
+ | | initSoftware | initSystemComm | 11 DEC 2019 9:49:11 AM | PASS 14 / 14 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_TIMERS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_TIMERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:53 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:33 AM |
@@ -245,7 +246,7 @@
| | calcTimeSince | | | |
| TOTALS | 5 | | | |
| WatchdogMgmt | initWatchdogMgmt | | | |
- | | execWatchdogMgmt | didTimeout | 10 DEC 2019 6:05:52 PM | PASS 5 / 5 |
+ | | execWatchdogMgmt | didTimeout | 11 DEC 2019 9:49:37 AM | PASS 5 / 5 |
| | checkInWithWatchdogMgmt | | | |
| | execWatchdogTest | | | |
| | resetWDTaskCheckIns | | | |
@@ -255,11 +256,11 @@
| | testSetWatchdogTaskCheckInOverride | | | |
| | testResetWatchdogTaskCheckInOverride | | | |
| TOTALS | 10 | 1 | | PASS 1 / 1 |
- | TaskTimer | taskTimer | incMSTimerCount | 10 DEC 2019 6:05:52 PM | PASS 1 / 1 |
+ | TaskTimer | taskTimer | incMSTimerCount | 11 DEC 2019 9:49:37 AM | PASS 1 / 1 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initTimers | 10 DEC 2019 6:05:52 PM | PASS 1 / 1 |
+ | | initSoftware | initTimers | 11 DEC 2019 9:49:37 AM | PASS 1 / 1 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_UTILITIES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_UTILITIES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:55 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:34 AM |
@@ -244,7 +245,7 @@
| | signalFPGATransmitCompleted | | | |
| | execFPGAIn | | | |
| | execFPGAOut | | | |
- | | handleFPGAReadHeaderState | crc16 | 10 DEC 2019 6:06:08 PM | PASS 7 / 7 |
+ | | handleFPGAReadHeaderState | crc16 | 11 DEC 2019 9:49:45 AM | PASS 7 / 7 |
| | handleFPGAReceiveHeaderState | | | |
| | handleFPGAWriteAllActuatorsState | | | |
| | handleFPGAReceiveAllSensorsState | | | |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_INT_WATCHDOGMGMT_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | INT_WATCHDOGMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:56 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:36 AM |
@@ -240,7 +241,7 @@
| TOTALS | | | | |
| ModeInitPOST | initInitAndPOSTMode | | | |
| | transitionToInitAndPOSTMode | | | |
- | | execInitAndPOSTMode | execWatchdogTest | 10 DEC 2019 6:06:36 PM | PASS 4 / 4 |
+ | | execInitAndPOSTMode | execWatchdogTest | 11 DEC 2019 9:50:00 AM | PASS 4 / 4 |
| | isPOSTCompleted | | | |
| | isPOSTPassed | | | |
| | handlePOSTStatus | | | |
@@ -262,8 +263,8 @@
| | handleTestOffButtonStateOverrideRequest | | | |
| | handleTestStopButtonStateOverrideRequest | | | |
| | handleTestAlarmLampPatternOverrideRequest | | | |
- | | handleTestWatchdogCheckInStateOverrideRequest | testResetWatchdogTaskCheckInOverride | 10 DEC 2019 6:06:36 PM | PASS 4 / 4 |
- | | | testSetWatchdogTaskCheckInOverride | 10 DEC 2019 6:06:36 PM | PASS 4 / 4 |
+ | | handleTestWatchdogCheckInStateOverrideRequest | testResetWatchdogTaskCheckInOverride | 11 DEC 2019 9:50:00 AM | PASS 4 / 4 |
+ | | | testSetWatchdogTaskCheckInOverride | 11 DEC 2019 9:50:00 AM | PASS 4 / 4 |
| | handleTestAlarmStateOverrideRequest | | | |
| | handleTestAlarmTimeOverrideRequest | | | |
| | handleTestAlarmStatusBroadcastIntervalOverrideRequest | | | |
@@ -284,13 +285,13 @@
| | testSetWatchdogTaskCheckInOverride | | | |
| | testResetWatchdogTaskCheckInOverride | | | |
| TOTALS | 10 | | | |
- | TaskBG | taskBackground | execWatchdogMgmt | 10 DEC 2019 6:06:36 PM | PASS 7 / 7 |
+ | TaskBG | taskBackground | execWatchdogMgmt | 11 DEC 2019 9:50:00 AM | PASS 7 / 7 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
- | TaskTimer | taskTimer | checkInWithWatchdogMgmt | 10 DEC 2019 6:06:36 PM | PASS 1 / 1 |
+ | TaskTimer | taskTimer | checkInWithWatchdogMgmt | 11 DEC 2019 9:50:00 AM | PASS 1 / 1 |
| TOTALS | 1 | 1 | | PASS 1 / 1 |
| sys_main | main | | | |
| | initProcessor | | | |
- | | initSoftware | initWatchdogMgmt | 10 DEC 2019 6:06:36 PM | PASS 19 / 19 |
+ | | initSoftware | initWatchdogMgmt | 11 DEC 2019 9:50:00 AM | PASS 19 / 19 |
| | initHardware | | | |
| | initTasks | | | |
| TOTALS | 5 | 1 | | PASS 1 / 1 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_MSGQUEUES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | MSGQUEUES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:58 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:37 AM |
@@ -248,23 +249,23 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | MsgQueues | initMsgQueues | NominalPath | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | addToMsgQueue | InvalidQueue | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | | QueueFull | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | | SuccessfulAdd | 10 DEC 2019 6:06:49 PM | PASS 7 / 7 |
- | | | SuccessfulAddWithWrap | 10 DEC 2019 6:06:49 PM | PASS 7 / 7 |
- | | getFromMsgQueue | InvalidQueue | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | | QueueEmpty | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | | SuccessfulGet | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | | SuccessfulGetWithWrap | 10 DEC 2019 6:06:49 PM | PASS 4 / 4 |
- | | isMsgQueueEmpty | InvalidQueue | 10 DEC 2019 6:06:49 PM | PASS 1 / 1 |
- | | | QueueEmpty | 10 DEC 2019 6:06:49 PM | PASS 2 / 2 |
- | | | QueueNotEmpty | 10 DEC 2019 6:06:49 PM | PASS 2 / 2 |
- | | isMsgQueueFull | InvalidQueue | 10 DEC 2019 6:06:49 PM | PASS 1 / 1 |
- | | | QueueFull | 10 DEC 2019 6:06:49 PM | PASS 2 / 2 |
- | | | QueueNotFull | 10 DEC 2019 6:06:49 PM | PASS 2 / 2 |
- | | blankMessage | NominalPath | 10 DEC 2019 6:06:49 PM | PASS 1 / 1 |
- | | blankMessageInWrapper | NominalPath | 10 DEC 2019 6:06:49 PM | PASS 1 / 1 |
+ | MsgQueues | initMsgQueues | NominalPath | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | addToMsgQueue | InvalidQueue | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | | QueueFull | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | | SuccessfulAdd | 11 DEC 2019 9:50:06 AM | PASS 7 / 7 |
+ | | | SuccessfulAddWithWrap | 11 DEC 2019 9:50:06 AM | PASS 7 / 7 |
+ | | getFromMsgQueue | InvalidQueue | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | | QueueEmpty | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | | SuccessfulGet | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | | SuccessfulGetWithWrap | 11 DEC 2019 9:50:06 AM | PASS 4 / 4 |
+ | | isMsgQueueEmpty | InvalidQueue | 11 DEC 2019 9:50:06 AM | PASS 1 / 1 |
+ | | | QueueEmpty | 11 DEC 2019 9:50:06 AM | PASS 2 / 2 |
+ | | | QueueNotEmpty | 11 DEC 2019 9:50:06 AM | PASS 2 / 2 |
+ | | isMsgQueueFull | InvalidQueue | 11 DEC 2019 9:50:06 AM | PASS 1 / 1 |
+ | | | QueueFull | 11 DEC 2019 9:50:06 AM | PASS 2 / 2 |
+ | | | QueueNotFull | 11 DEC 2019 9:50:06 AM | PASS 2 / 2 |
+ | | blankMessage | NominalPath | 11 DEC 2019 9:50:06 AM | PASS 1 / 1 |
+ | | blankMessageInWrapper | NominalPath | 11 DEC 2019 9:50:06 AM | PASS 1 / 1 |
| TOTALS | 7 | 17 | | PASS 17 / 17 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_OPERATIONMODES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | OPERATIONMODES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:08:59 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:38 AM |
@@ -248,32 +249,32 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | OperationModes | initOperationModes | NominalPath | 10 DEC 2019 6:07:02 PM | PASS 10 / 10 |
- | | execOperationModes | InitPOSTToStandbyMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | InvalidMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | InvalidModeChange | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | OpParamsToPreTreatMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | PreTreatToTreatmentMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | PrescriptionToOpParamsMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | StandbyToPrescriptionMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | StandbyToServiceMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | TreatmentToFaultMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | TreatmentToPostTreatMode | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | requestNewOperationMode | InvalidModeRequested | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | | ValidModeRequested | 10 DEC 2019 6:07:02 PM | PASS 2 / 2 |
- | | getCurrentOperationMode | NominalPath | 10 DEC 2019 6:07:02 PM | PASS 1 / 1 |
- | | arbitrateModeRequest | NoRequestPending | 10 DEC 2019 6:07:02 PM | PASS 10 / 10 |
- | | | RequestPending | 10 DEC 2019 6:07:02 PM | PASS 10 / 10 |
- | | transitionToNewOperationMode | FaultMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | InitPOSTMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | InvalidMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | OpParamsMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | PostTreatmentMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | PreTreatmentMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | PrescriptionMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | ServiceMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | StandbyMode | 10 DEC 2019 6:07:02 PM | PASS |
- | | | TreatmentMode | 10 DEC 2019 6:07:02 PM | PASS |
+ | OperationModes | initOperationModes | NominalPath | 11 DEC 2019 9:50:13 AM | PASS 10 / 10 |
+ | | execOperationModes | InitPOSTToStandbyMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | InvalidMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | InvalidModeChange | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | OpParamsToPreTreatMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | PreTreatToTreatmentMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | PrescriptionToOpParamsMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | StandbyToPrescriptionMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | StandbyToServiceMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | TreatmentToFaultMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | TreatmentToPostTreatMode | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | requestNewOperationMode | InvalidModeRequested | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | | ValidModeRequested | 11 DEC 2019 9:50:13 AM | PASS 2 / 2 |
+ | | getCurrentOperationMode | NominalPath | 11 DEC 2019 9:50:13 AM | PASS 1 / 1 |
+ | | arbitrateModeRequest | NoRequestPending | 11 DEC 2019 9:50:13 AM | PASS 10 / 10 |
+ | | | RequestPending | 11 DEC 2019 9:50:13 AM | PASS 10 / 10 |
+ | | transitionToNewOperationMode | FaultMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | InitPOSTMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | InvalidMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | OpParamsMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | PostTreatmentMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | PreTreatmentMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | PrescriptionMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | ServiceMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | StandbyMode | 11 DEC 2019 9:50:13 AM | PASS |
+ | | | TreatmentMode | 11 DEC 2019 9:50:13 AM | PASS |
| TOTALS | 6 | 26 | | PASS 26 / 26 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SAFETYSHUTDOWN_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | SAFETYSHUTDOWN |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:01 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:39 AM |
@@ -248,8 +249,8 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | SafetyShutdown | initSafetyShutdown | initSafetyShutdown_NominalPath | 10 DEC 2019 6:07:15 PM | PASS 2 / 2 |
- | | activateSafetyShutdown | activateSafetyShutdown_NominalPath | 10 DEC 2019 6:07:15 PM | PASS 2 / 2 |
+ | SafetyShutdown | initSafetyShutdown | initSafetyShutdown_NominalPath | 11 DEC 2019 9:50:20 AM | PASS 2 / 2 |
+ | | activateSafetyShutdown | activateSafetyShutdown_NominalPath | 11 DEC 2019 9:50:20 AM | PASS 2 / 2 |
| TOTALS | 2 | 2 | | PASS 2 / 2 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMMMESSAGES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | SYSTEMCOMMMESSAGES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:04 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:42 AM |
@@ -252,61 +253,61 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | SystemCommMessages | serializeMessage | serializeMessage_MessageNeedsPadding | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | serializeMessage_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | sendOffButtonMsgToUI | sendOffButtonMsgToUI_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 3 / 3 |
- | | handleOffButtonConfirmMsgFromUI | handleOffButtonConfirmMsgFromUI_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | broadcastAlarmStatus | broadcastAlarmStatus_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 63 / 63 |
- | | broadcastAlarmTriggered | broadcastAlarmTriggered_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 27 / 27 |
- | | broadcastAlarmCleared | broadcastAlarmCleared_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 11 / 11 |
- | | broadcastBloodFlowData | broadcastBloodFlowData_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 31 / 31 |
- | | handleDGCheckIn | handleDGCheckIn_NominalPath | 10 DEC 2019 6:07:38 PM | PASS |
- | | handleUICheckIn | handleUICheckIn_NominalPath | 10 DEC 2019 6:07:38 PM | PASS |
- | | sendDebugData | sendDebugData_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 11 / 11 |
- | | isTestingActivated | NominalPath | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | sendTestAckResponseMsg | sendTestAckResponseMsg_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 12 / 12 |
- | | handleTesterLogInRequest | handleTesterLogInRequest_LoginSuccessful | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | handleTestHDMessageRequest | handleTestHDMessageRequest_NominalPath | 10 DEC 2019 6:07:38 PM | PASS 3 / 3 |
- | | handleTestOffButtonStateOverrideRequest | handleTestOffButtonStateOverrideRequest_InvalidPayloadLength | 10 DEC 2019 6:07:38 PM | PASS |
- | | | handleTestOffButtonStateOverrideRequest_Override | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTestOffButtonStateOverrideRequest_Reset | 10 DEC 2019 6:07:38 PM | PASS |
- | | handleTestStopButtonStateOverrideRequest | handleTestStopButtonStateOverrideRequest_InvalidPayloadLength | 10 DEC 2019 6:07:38 PM | PASS |
- | | | handleTestStopButtonStateOverrideRequest_Override | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTestStopButtonStateOverrideRequest_Reset | 10 DEC 2019 6:07:38 PM | PASS |
- | | handleTestAlarmLampPatternOverrideRequest | handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength | 10 DEC 2019 6:07:38 PM | PASS |
- | | | handleTestAlarmLampPatternOverrideRequest_Override | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | | handleTestAlarmLampPatternOverrideRequest_Reset | 10 DEC 2019 6:07:38 PM | PASS |
- | | handleTestWatchdogCheckInStateOverrideRequest | handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength | 10 DEC 2019 6:07:38 PM | PASS |
- | | | handleTestWatchdogCheckInStateOverrideRequest_Override | 10 DEC 2019 6:07:38 PM | PASS 2 / 2 |
- | | | handleTestWatchdogCheckInStateOverrideRequest_Reset | 10 DEC 2019 6:07:38 PM | PASS 1 / 1 |
- | | handleTestAlarmStateOverrideRequest | handleTestAlarmStateOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:38 PM | PASS 6 / 6 |
- | | | handleTestAlarmStateOverrideRequest_Override | 10 DEC 2019 6:07:38 PM | PASS 8 / 8 |
- | | | handleTestAlarmStateOverrideRequest_Reset | 10 DEC 2019 6:07:38 PM | PASS 7 / 7 |
- | | handleTestAlarmTimeOverrideRequest | handleTestAlarmTimeOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:38 PM | PASS 6 / 6 |
- | | | handleTestAlarmTimeOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 8 / 8 |
- | | | handleTestAlarmTimeOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | handleTestAlarmStatusBroadcastIntervalOverrideRequest | handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | handleTestBloodFlowSetPointOverrideRequest | handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestBloodFlowSetPointOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | | handleTestBloodFlowSetPointOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | handleTestBloodFlowMeasuredOverrideRequest | handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestBloodFlowMeasuredOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | | handleTestBloodFlowMeasuredOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | handleTestBloodPumpMeasuredSpeedOverrideRequest | handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestBloodPumpMeasuredSpeedOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 8 / 8 |
- | | | handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | handleTestBloodPumpMeasuredCurrentOverrideRequest | handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestBloodPumpMeasuredCurrentOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | | handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | handleTestBloodFlowBroadcastIntervalOverrideRequest | handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
- | | | handleTestBloodFlowBroadcastIntervalOverrideRequest_Override | 10 DEC 2019 6:07:39 PM | PASS 7 / 7 |
- | | | handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset | 10 DEC 2019 6:07:39 PM | PASS 6 / 6 |
+ | SystemCommMessages | serializeMessage | serializeMessage_MessageNeedsPadding | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | serializeMessage_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | sendOffButtonMsgToUI | sendOffButtonMsgToUI_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 3 / 3 |
+ | | handleOffButtonConfirmMsgFromUI | handleOffButtonConfirmMsgFromUI_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | broadcastAlarmStatus | broadcastAlarmStatus_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 63 / 63 |
+ | | broadcastAlarmTriggered | broadcastAlarmTriggered_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 27 / 27 |
+ | | broadcastAlarmCleared | broadcastAlarmCleared_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 11 / 11 |
+ | | broadcastBloodFlowData | broadcastBloodFlowData_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 31 / 31 |
+ | | handleDGCheckIn | handleDGCheckIn_NominalPath | 11 DEC 2019 9:50:37 AM | PASS |
+ | | handleUICheckIn | handleUICheckIn_NominalPath | 11 DEC 2019 9:50:37 AM | PASS |
+ | | sendDebugData | sendDebugData_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 11 / 11 |
+ | | isTestingActivated | NominalPath | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | sendTestAckResponseMsg | sendTestAckResponseMsg_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 12 / 12 |
+ | | handleTesterLogInRequest | handleTesterLogInRequest_LoginSuccessful | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong0 | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong1 | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTesterLogInRequest_LoginUnsuccessful_PW_Wrong2 | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTesterLogInRequest_LoginUnsuccessful_PW_WrongLength | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | handleTestHDMessageRequest | handleTestHDMessageRequest_NominalPath | 11 DEC 2019 9:50:37 AM | PASS 3 / 3 |
+ | | handleTestOffButtonStateOverrideRequest | handleTestOffButtonStateOverrideRequest_InvalidPayloadLength | 11 DEC 2019 9:50:37 AM | PASS |
+ | | | handleTestOffButtonStateOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTestOffButtonStateOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS |
+ | | handleTestStopButtonStateOverrideRequest | handleTestStopButtonStateOverrideRequest_InvalidPayloadLength | 11 DEC 2019 9:50:37 AM | PASS |
+ | | | handleTestStopButtonStateOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTestStopButtonStateOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS |
+ | | handleTestAlarmLampPatternOverrideRequest | handleTestAlarmLampPatternOverrideRequest_InvalidPayloadLength | 11 DEC 2019 9:50:37 AM | PASS |
+ | | | handleTestAlarmLampPatternOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | | handleTestAlarmLampPatternOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS |
+ | | handleTestWatchdogCheckInStateOverrideRequest | handleTestWatchdogCheckInStateOverrideRequest_InvalidPayloadLength | 11 DEC 2019 9:50:37 AM | PASS |
+ | | | handleTestWatchdogCheckInStateOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 2 / 2 |
+ | | | handleTestWatchdogCheckInStateOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS 1 / 1 |
+ | | handleTestAlarmStateOverrideRequest | handleTestAlarmStateOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:37 AM | PASS 6 / 6 |
+ | | | handleTestAlarmStateOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 8 / 8 |
+ | | | handleTestAlarmStateOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS 7 / 7 |
+ | | handleTestAlarmTimeOverrideRequest | handleTestAlarmTimeOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:37 AM | PASS 6 / 6 |
+ | | | handleTestAlarmTimeOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 8 / 8 |
+ | | | handleTestAlarmTimeOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS 7 / 7 |
+ | | handleTestAlarmStatusBroadcastIntervalOverrideRequest | handleTestAlarmStatusBroadcastIntervalOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:37 AM | PASS 6 / 6 |
+ | | | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Override | 11 DEC 2019 9:50:37 AM | PASS 7 / 7 |
+ | | | handleTestAlarmStatusBroadcastIntervalOverrideRequest_Reset | 11 DEC 2019 9:50:37 AM | PASS 6 / 6 |
+ | | handleTestBloodFlowSetPointOverrideRequest | handleTestBloodFlowSetPointOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:37 AM | PASS 6 / 6 |
+ | | | handleTestBloodFlowSetPointOverrideRequest_Override | 11 DEC 2019 9:50:38 AM | PASS 7 / 7 |
+ | | | handleTestBloodFlowSetPointOverrideRequest_Reset | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | handleTestBloodFlowMeasuredOverrideRequest | handleTestBloodFlowMeasuredOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | | handleTestBloodFlowMeasuredOverrideRequest_Override | 11 DEC 2019 9:50:38 AM | PASS 7 / 7 |
+ | | | handleTestBloodFlowMeasuredOverrideRequest_Reset | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | handleTestBloodPumpMeasuredSpeedOverrideRequest | handleTestBloodPumpMeasuredSpeedOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | | handleTestBloodPumpMeasuredSpeedOverrideRequest_Override | 11 DEC 2019 9:50:38 AM | PASS 8 / 8 |
+ | | | handleTestBloodPumpMeasuredSpeedOverrideRequest_Reset | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | handleTestBloodPumpMeasuredCurrentOverrideRequest | handleTestBloodPumpMeasuredCurrentOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | | handleTestBloodPumpMeasuredCurrentOverrideRequest_Override | 11 DEC 2019 9:50:38 AM | PASS 7 / 7 |
+ | | | handleTestBloodPumpMeasuredCurrentOverrideRequest_Reset | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | handleTestBloodFlowBroadcastIntervalOverrideRequest | handleTestBloodFlowBroadcastIntervalOverrideRequest_InvalidPayloadLen | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
+ | | | handleTestBloodFlowBroadcastIntervalOverrideRequest_Override | 11 DEC 2019 9:50:38 AM | PASS 7 / 7 |
+ | | | handleTestBloodFlowBroadcastIntervalOverrideRequest_Reset | 11 DEC 2019 9:50:38 AM | PASS 6 / 6 |
| TOTALS | 26 | 55 | | PASS 55 / 55 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_SYSTEMCOMM_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | SYSTEMCOMM |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:03 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:41 AM |
@@ -252,69 +253,69 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | SystemComm | initSystemComm | NominalPath | 10 DEC 2019 6:07:26 PM | PASS 2 / 2 |
- | | checkInFromDG | checkInFromDG_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | checkInFromUI | checkInFromUI_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | isDGCommunicating | isDGCommunicating_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | isUICommunicating | isUICommunicating_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | uiCommunicated | uiCommunicated_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | execSystemCommRx | OneMessageToProcessInBuffers | 10 DEC 2019 6:07:26 PM | PASS 27 / 27 |
- | | execSystemCommTx | CAN1TransmitterBusy | 10 DEC 2019 6:07:26 PM | PASS |
- | | | SCI1TransmitterBusy | 10 DEC 2019 6:07:26 PM | PASS |
- | | | execSystemCommTx_NominalPath | 10 DEC 2019 6:07:26 PM | PASS 2 / 2 |
- | | handleCANMsgInterrupt | InvalidCANBox | 10 DEC 2019 6:07:26 PM | PASS |
- | | | NoPacket | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | | ReceiveCANBox | 10 DEC 2019 6:07:26 PM | PASS 4 / 4 |
- | | | TransmitCANBox | 10 DEC 2019 6:07:26 PM | PASS 4 / 4 |
- | | | handleCANMsgInterrupt_NoMoreMessagesToXmit | 10 DEC 2019 6:07:26 PM | PASS |
- | | handleUARTMsgRecvPacketInterrupt | NominalPath | 10 DEC 2019 6:07:26 PM | PASS 4 / 4 |
- | | handleUARTMsgXmitPacketInterrupt | NominalPath | 10 DEC 2019 6:07:26 PM | PASS 10 / 10 |
- | | | handleUARTMsgXmitPacketInterrupt_NoMoreMessages | 10 DEC 2019 6:07:26 PM | PASS |
- | | initUARTAndDMA | NominalPath | 10 DEC 2019 6:07:26 PM | PASS 45 / 45 |
- | | isCANBoxForXmit | NotTransmitCANBox | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | | TransmitCANBox | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | isCANBoxForRecv | NotReceiveCANBox | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | | ReceiveCANBox | 10 DEC 2019 6:07:26 PM | PASS 1 / 1 |
- | | findNextHighestPriorityCANPacketToTransmit | BufferFound | 10 DEC 2019 6:07:26 PM | PASS 2 / 2 |
- | | | NoBufferFound | 10 DEC 2019 6:07:26 PM | PASS 6 / 6 |
- | | transmitNextCANPacket | NoPendingCANPackets | 10 DEC 2019 6:07:26 PM | PASS 5 / 5 |
- | | | PendingCANPacketFound | 10 DEC 2019 6:07:26 PM | PASS 6 / 6 |
- | | | PendingCANPacketIsPartial | 10 DEC 2019 6:07:26 PM | PASS 5 / 5 |
- | | transmitNextUARTPacket | GetPacketFail | 10 DEC 2019 6:07:27 PM | PASS 3 / 3 |
- | | | NoPacketFound | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | PacketFound | 10 DEC 2019 6:07:27 PM | PASS 5 / 5 |
- | | processIncomingData | MoreDataInBufferThanMaxMsgSize | 10 DEC 2019 6:07:27 PM | PASS 4 / 4 |
- | | | MsgFoundButIncompleteMsgRetrieved | 10 DEC 2019 6:07:27 PM | PASS 4 / 4 |
- | | | NoMsgFound | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | consumeBufferPaddingBeforeSync | BufferEmpty | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | RemoveSomePadding | 10 DEC 2019 6:07:27 PM | PASS 8 / 8 |
- | | parseMessageFromBuffer | FullMessageFound | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | NoMessageCouldBeParsed | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | NoSyncFound | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | NotEnoughDataForMinMessage | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | processReceivedMessages | NoMessagesReceived | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | OneMessageReceived | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | processReceivedMessage | 0001_OffButtonPress | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | 0006_DGCheckIn | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | 0007_UICheckIn | 10 DEC 2019 6:07:27 PM | PASS 1 / 1 |
- | | | 8000_TestLogin | 10 DEC 2019 6:07:27 PM | PASS 3 / 3 |
- | | | 8001_HDMessage | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8002_OffButtonOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8003_StopButtonOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8004_AlarmLampPatternOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8005_WatchdogTaskCheckInOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8006_AlarmStateOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8007_AlarmTimeOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8008_BloodFlowSetPtOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 8009_BloodFlowMeasuredOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 800A_BloodPumpMCMeasuredSpeedOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 800B_BloodPumpMCMeasuredCurrentOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 800C_BloodFlowDataPublishIntervalOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | 800D_AlarmStatusPublishIntervalOverride | 10 DEC 2019 6:07:27 PM | PASS 2 / 2 |
- | | | InvalidMessageID | 10 DEC 2019 6:07:27 PM | PASS |
- | | | InvalidTestMessageID | 10 DEC 2019 6:07:27 PM | PASS |
- | | | InvalidTestMessageIDInRange | 10 DEC 2019 6:07:27 PM | PASS |
- | | | TestWithoutLogin | 10 DEC 2019 6:07:27 PM | PASS |
+ | SystemComm | initSystemComm | NominalPath | 11 DEC 2019 9:50:27 AM | PASS 2 / 2 |
+ | | checkInFromDG | checkInFromDG_NominalPath | 11 DEC 2019 9:50:27 AM | PASS 1 / 1 |
+ | | checkInFromUI | checkInFromUI_NominalPath | 11 DEC 2019 9:50:27 AM | PASS 1 / 1 |
+ | | isDGCommunicating | isDGCommunicating_NominalPath | 11 DEC 2019 9:50:27 AM | PASS 1 / 1 |
+ | | isUICommunicating | isUICommunicating_NominalPath | 11 DEC 2019 9:50:27 AM | PASS 1 / 1 |
+ | | uiCommunicated | uiCommunicated_NominalPath | 11 DEC 2019 9:50:27 AM | PASS 1 / 1 |
+ | | execSystemCommRx | OneMessageToProcessInBuffers | 11 DEC 2019 9:50:28 AM | PASS 27 / 27 |
+ | | execSystemCommTx | CAN1TransmitterBusy | 11 DEC 2019 9:50:28 AM | PASS |
+ | | | SCI1TransmitterBusy | 11 DEC 2019 9:50:28 AM | PASS |
+ | | | execSystemCommTx_NominalPath | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | handleCANMsgInterrupt | InvalidCANBox | 11 DEC 2019 9:50:28 AM | PASS |
+ | | | NoPacket | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | ReceiveCANBox | 11 DEC 2019 9:50:28 AM | PASS 4 / 4 |
+ | | | TransmitCANBox | 11 DEC 2019 9:50:28 AM | PASS 4 / 4 |
+ | | | handleCANMsgInterrupt_NoMoreMessagesToXmit | 11 DEC 2019 9:50:28 AM | PASS |
+ | | handleUARTMsgRecvPacketInterrupt | NominalPath | 11 DEC 2019 9:50:28 AM | PASS 4 / 4 |
+ | | handleUARTMsgXmitPacketInterrupt | NominalPath | 11 DEC 2019 9:50:28 AM | PASS 10 / 10 |
+ | | | handleUARTMsgXmitPacketInterrupt_NoMoreMessages | 11 DEC 2019 9:50:28 AM | PASS |
+ | | initUARTAndDMA | NominalPath | 11 DEC 2019 9:50:28 AM | PASS 45 / 45 |
+ | | isCANBoxForXmit | NotTransmitCANBox | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | TransmitCANBox | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | isCANBoxForRecv | NotReceiveCANBox | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | ReceiveCANBox | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | findNextHighestPriorityCANPacketToTransmit | BufferFound | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | NoBufferFound | 11 DEC 2019 9:50:28 AM | PASS 6 / 6 |
+ | | transmitNextCANPacket | NoPendingCANPackets | 11 DEC 2019 9:50:28 AM | PASS 5 / 5 |
+ | | | PendingCANPacketFound | 11 DEC 2019 9:50:28 AM | PASS 6 / 6 |
+ | | | PendingCANPacketIsPartial | 11 DEC 2019 9:50:28 AM | PASS 5 / 5 |
+ | | transmitNextUARTPacket | GetPacketFail | 11 DEC 2019 9:50:28 AM | PASS 3 / 3 |
+ | | | NoPacketFound | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | PacketFound | 11 DEC 2019 9:50:28 AM | PASS 5 / 5 |
+ | | processIncomingData | MoreDataInBufferThanMaxMsgSize | 11 DEC 2019 9:50:28 AM | PASS 4 / 4 |
+ | | | MsgFoundButIncompleteMsgRetrieved | 11 DEC 2019 9:50:28 AM | PASS 4 / 4 |
+ | | | NoMsgFound | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | consumeBufferPaddingBeforeSync | BufferEmpty | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | RemoveSomePadding | 11 DEC 2019 9:50:28 AM | PASS 8 / 8 |
+ | | parseMessageFromBuffer | FullMessageFound | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | NoMessageCouldBeParsed | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | NoSyncFound | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | NotEnoughDataForMinMessage | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | processReceivedMessages | NoMessagesReceived | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | OneMessageReceived | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | processReceivedMessage | 0001_OffButtonPress | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | 0006_DGCheckIn | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | 0007_UICheckIn | 11 DEC 2019 9:50:28 AM | PASS 1 / 1 |
+ | | | 8000_TestLogin | 11 DEC 2019 9:50:28 AM | PASS 3 / 3 |
+ | | | 8001_HDMessage | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8002_OffButtonOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8003_StopButtonOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8004_AlarmLampPatternOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8005_WatchdogTaskCheckInOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8006_AlarmStateOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8007_AlarmTimeOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8008_BloodFlowSetPtOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 8009_BloodFlowMeasuredOverride | 11 DEC 2019 9:50:28 AM | PASS 2 / 2 |
+ | | | 800A_BloodPumpMCMeasuredSpeedOverride | 11 DEC 2019 9:50:29 AM | PASS 2 / 2 |
+ | | | 800B_BloodPumpMCMeasuredCurrentOverride | 11 DEC 2019 9:50:29 AM | PASS 2 / 2 |
+ | | | 800C_BloodFlowDataPublishIntervalOverride | 11 DEC 2019 9:50:29 AM | PASS 2 / 2 |
+ | | | 800D_AlarmStatusPublishIntervalOverride | 11 DEC 2019 9:50:29 AM | PASS 2 / 2 |
+ | | | InvalidMessageID | 11 DEC 2019 9:50:29 AM | PASS |
+ | | | InvalidTestMessageID | 11 DEC 2019 9:50:29 AM | PASS |
+ | | | InvalidTestMessageIDInRange | 11 DEC 2019 9:50:29 AM | PASS |
+ | | | TestWithoutLogin | 11 DEC 2019 9:50:29 AM | PASS |
| TOTALS | 22 | 63 | | PASS 63 / 63 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_TIMERS_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | TIMERS |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:06 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:44 AM |
@@ -248,15 +249,15 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | Timers | initTimers | NominalPath | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | incMSTimerCount | NominalPath | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | getMSTimerCount | NominalPath | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | didTimeout | NoTimeoutNoWrap | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | | NoTimeoutWrap | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | | TimeoutNoWrap | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | | TimeoutWrap | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | calcTimeSince | calcTimeSince_NominalPath | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
- | | | calcTimeSince_Wrap | 10 DEC 2019 6:07:50 PM | PASS 1 / 1 |
+ | Timers | initTimers | NominalPath | 11 DEC 2019 9:50:45 AM | PASS 1 / 1 |
+ | | incMSTimerCount | NominalPath | 11 DEC 2019 9:50:45 AM | PASS 1 / 1 |
+ | | getMSTimerCount | NominalPath | 11 DEC 2019 9:50:45 AM | PASS 1 / 1 |
+ | | didTimeout | NoTimeoutNoWrap | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
+ | | | NoTimeoutWrap | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
+ | | | TimeoutNoWrap | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
+ | | | TimeoutWrap | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
+ | | calcTimeSince | calcTimeSince_NominalPath | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
+ | | | calcTimeSince_Wrap | 11 DEC 2019 9:50:46 AM | PASS 1 / 1 |
| TOTALS | 5 | 9 | | PASS 9 / 9 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_UTILITIES_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | UTILITIES |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:07 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:46 AM |
@@ -248,9 +249,9 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | Utilities | crc16 | NominalPath | 10 DEC 2019 6:08:01 PM | PASS 1 / 1 |
- | | | ZeroLength | 10 DEC 2019 6:08:01 PM | PASS 1 / 1 |
- | | crc8 | NominalPath | 10 DEC 2019 6:08:01 PM | PASS 1 / 1 |
+ | Utilities | crc16 | NominalPath | 11 DEC 2019 9:50:52 AM | PASS 1 / 1 |
+ | | | ZeroLength | 11 DEC 2019 9:50:52 AM | PASS 1 / 1 |
+ | | crc8 | NominalPath | 11 DEC 2019 9:50:52 AM | PASS 1 / 1 |
| TOTALS | 2 | 3 | | PASS 3 / 3 |
Index: results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html
===================================================================
diff -u -r1bbf9da32e622975efed00b1a7589387a9829440 -r197ee67d1cc0e0e3c80ccae58858dda09cad0834
--- results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html) (revision 1bbf9da32e622975efed00b1a7589387a9829440)
+++ results/management/VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html (.../VectorCAST_MinGW_C_LinuxTestSuite_WATCHDOGMGMT_management_report.html) (revision 197ee67d1cc0e0e3c80ccae58858dda09cad0834)
@@ -96,6 +96,7 @@
span.ann-cvg, span.annpart-cvg {background-color:#cacaff;}
.bg-danger, .danger, span.no-cvg {background-color:#facaca;}
.bg-warning, .warning, span.part-cvg {background-color:#f5f5c8;}
+.fit-content {width:max-content;}
.rel-pos {position:relative;}
.report-block > .bs-callout.test-timeline, .mcdc-condition {padding-left:0px;}
.report-block.single-test {padding-left:2em;padding-right:2em;width:100%;height:100%;overflow:auto;}
@@ -191,8 +192,8 @@
Configuration Data
| Environment Name | WATCHDOGMGMT |
- | Date of Report Creation | 10 DEC 2019 |
- | Time of Report Creation | 6:09:09 PM |
+ | Date of Report Creation | 11 DEC 2019 |
+ | Time of Report Creation | 9:51:47 AM |
@@ -252,31 +253,31 @@
| TOTALS | | | | |
| <<INIT>> | | | | |
| TOTALS | | | | |
- | WatchdogMgmt | initWatchdogMgmt | NominalPath | 10 DEC 2019 6:08:13 PM | PASS 18 / 18 |
- | | execWatchdogMgmt | AllTasksCheckedInAndMinTimeReached | 10 DEC 2019 6:08:13 PM | PASS 2 / 2 |
- | | | AllTasksCheckedInAndNotTime | 10 DEC 2019 6:08:14 PM | PASS 2 / 2 |
- | | | OneTaskNotCheckedIn | 10 DEC 2019 6:08:14 PM | PASS |
- | | | WDExpired | 10 DEC 2019 6:08:14 PM | PASS |
- | | checkInWithWatchdogMgmt | InvalidTask | 10 DEC 2019 6:08:14 PM | PASS 4 / 4 |
- | | | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | execWatchdogTest | Completed | 10 DEC 2019 6:08:14 PM | PASS 2 / 2 |
- | | | InvalidState | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | StartInProgress | 10 DEC 2019 6:08:14 PM | PASS 6 / 6 |
- | | | TestFailure | 10 DEC 2019 6:08:14 PM | PASS 7 / 7 |
- | | | TestPasses | 10 DEC 2019 6:08:14 PM | PASS 7 / 7 |
- | | resetWDTaskCheckIns | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 4 / 4 |
- | | haveAllTasksCheckedIn | AllTasksCheckedIn | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | OneTaskNotCheckedIn | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | hasTaskGeneralCheckedIn | InvalidTask | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | OverridePath | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | petWatchdog | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | testSetWatchdogTaskCheckInOverride | InvalidTask | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 6:08:14 PM | PASS 5 / 5 |
- | | testResetWatchdogTaskCheckInOverride | InvalidTask | 10 DEC 2019 6:08:14 PM | PASS 1 / 1 |
- | | | NominalPath | 10 DEC 2019 6:08:14 PM | PASS 5 / 5 |
- | | | TestingInactive | 10 DEC 2019 6:08:14 PM | PASS 5 / 5 |
+ | WatchdogMgmt | initWatchdogMgmt | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 18 / 18 |
+ | | execWatchdogMgmt | AllTasksCheckedInAndMinTimeReached | 11 DEC 2019 9:50:59 AM | PASS 2 / 2 |
+ | | | AllTasksCheckedInAndNotTime | 11 DEC 2019 9:50:59 AM | PASS 2 / 2 |
+ | | | OneTaskNotCheckedIn | 11 DEC 2019 9:50:59 AM | PASS |
+ | | | WDExpired | 11 DEC 2019 9:50:59 AM | PASS |
+ | | checkInWithWatchdogMgmt | InvalidTask | 11 DEC 2019 9:50:59 AM | PASS 4 / 4 |
+ | | | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | execWatchdogTest | Completed | 11 DEC 2019 9:50:59 AM | PASS 2 / 2 |
+ | | | InvalidState | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | StartInProgress | 11 DEC 2019 9:50:59 AM | PASS 6 / 6 |
+ | | | TestFailure | 11 DEC 2019 9:50:59 AM | PASS 7 / 7 |
+ | | | TestPasses | 11 DEC 2019 9:50:59 AM | PASS 7 / 7 |
+ | | resetWDTaskCheckIns | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 4 / 4 |
+ | | haveAllTasksCheckedIn | AllTasksCheckedIn | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | OneTaskNotCheckedIn | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | hasTaskGeneralCheckedIn | InvalidTask | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | OverridePath | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | petWatchdog | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | testSetWatchdogTaskCheckInOverride | InvalidTask | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:50:59 AM | PASS 5 / 5 |
+ | | testResetWatchdogTaskCheckInOverride | InvalidTask | 11 DEC 2019 9:50:59 AM | PASS 1 / 1 |
+ | | | NominalPath | 11 DEC 2019 9:50:59 AM | PASS 5 / 5 |
+ | | | TestingInactive | 11 DEC 2019 9:50:59 AM | PASS 5 / 5 |
| TOTALS | 10 | 25 | | PASS 25 / 25 |