Index: firmware/App/Controllers/Thermistors.c =================================================================== diff -u -r2e4afce5a9fd0392b330461ed38322ecadd59aa1 -r374bab15ea30aba82ee139e8a494764db312f468 --- firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 2e4afce5a9fd0392b330461ed38322ecadd59aa1) +++ firmware/App/Controllers/Thermistors.c (.../Thermistors.c) (revision 374bab15ea30aba82ee139e8a494764db312f468) @@ -322,15 +322,11 @@ { temperature = getThermistorTemperatureValue( thermistor ); - // If the thermistors and sensors read temperature out of range, raise an alarm - if ( temperature < MIN_ALLOWED_TEMPERATURE ) - { - checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, TRUE, temperature, MIN_ALLOWED_TEMPERATURE ); - } - else if ( temperature >= MAX_ALLOWED_TEMPERATURE ) - { - checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, TRUE, temperature, MAX_ALLOWED_TEMPERATURE ); - } + BOOL isTempOutOfUpperRange = temperature >= MAX_ALLOWED_TEMPERATURE; + BOOL isTempOutOfLowerRange = temperature < MIN_ALLOWED_TEMPERATURE; + + checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, isTempOutOfLowerRange, temperature, MIN_ALLOWED_TEMPERATURE ); + checkPersistentAlarm( PERSISTENT_ALARM_THERMISTOR_TEMPERATURE_OUT_OF_RANGE, isTempOutOfUpperRange, temperature, MAX_ALLOWED_TEMPERATURE ); } } Index: results/Build_Status_Report.csv =================================================================== diff -u -rfeb93744f73bc0a3d58841bb02bd05c38357f35d -r374bab15ea30aba82ee139e8a494764db312f468 --- results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) +++ results/Build_Status_Report.csv (.../Build_Status_Report.csv) (revision 374bab15ea30aba82ee139e8a494764db312f468) @@ -1,22 +1,17 @@ Running Project, dgfirmware -Date, Sat Dec 5 23:11:55 PST 2020 +Date, Wed Dec 9 08:22:42 PST 2020 VectorCAST Pass/Fail Status, Failed The following test(s) failed: -VectorCAST_MinGW_C_LinuxTestSuite_INTERNALADC_management_report.html -VectorCAST_MinGW_C_LinuxTestSuite_INT_PERSISTENTALARM_management_report.html -VectorCAST_MinGW_C_LinuxTestSuite_MODEINITPOST_management_report.html -VectorCAST_MinGW_C_LinuxTestSuite_TEMPERATURESENSORS_management_report.html +VectorCAST_MinGW_C_LinuxTestSuite_THERMISTORS_management_report.html -Unit Test Coverage, Failed -The following test(s) failed: -VectorCAST_MinGW_C_LinuxTestSuite_MODEINITPOST_management_report.html,Statement_Cov(%):,88,Branch_Cov(%):,94,Pairs_Cov(%):,100 -VectorCAST_MinGW_C_LinuxTestSuite_INTERNALADC_management_report.html,Statement_Cov(%):,85,Branch_Cov(%):,93,Pairs_Cov(%):,85 -VectorCAST_MinGW_C_LinuxTestSuite_NVDATAMGMT_management_report.html,Statement_Cov(%):,98,Branch_Cov(%):,97,Pairs_Cov(%):,97 +Unit Test Coverage, Passed -Integration Test Coverage, Passed +Integration Test Coverage, Failed +The following test(s) failed: +VectorCAST_MinGW_C_LinuxTestSuite_INT_PERSISTENTALARM_management_report.html,Coverage(%):,50 Integration Test Manual Cases Module, Function Name Index: results/VectorCAST.log =================================================================== diff -u -rfeb93744f73bc0a3d58841bb02bd05c38357f35d -r374bab15ea30aba82ee139e8a494764db312f468 --- results/VectorCAST.log (.../VectorCAST.log) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 374bab15ea30aba82ee139e8a494764db312f468) @@ -1,6 +1,6 @@ COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-05 23:11:56 +TIME: 2020-12-09 08:22:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG @@ -33,9 +33,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-05 23:11:59 +TIME: 2020-12-09 08:22:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -50,6 +50,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 100 Processing script line 250 Processing script line 350 @@ -320,9 +323,24 @@ >>> Processed Test Case: testSetAccelMaxOverride_Override (S) @LINE: 1374 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 +TIME: 2020-12-09 08:22:49 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-05 23:12:00 +TIME: 2020-12-09 08:22:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -781,7 +799,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-05 23:12:03 +TIME: 2020-12-09 08:22:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/CCAST_.CFG @@ -814,9 +832,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-05 23:12:06 +TIME: 2020-12-09 08:22:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -831,6 +849,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 100 Processing script line 250 Processing script line 300 @@ -953,9 +974,24 @@ >>> Processed Test Case: testSetAlarmStateOverride_NotLoggedIn (S) @LINE: 365 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 +TIME: 2020-12-09 08:22:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/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/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-05 23:12:07 +TIME: 2020-12-09 08:22:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1167,7 +1203,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-05 23:12:08 +TIME: 2020-12-09 08:22:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG @@ -1201,9 +1237,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-05 23:12:11 +TIME: 2020-12-09 08:23:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1218,6 +1254,9 @@ 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 -------------------------------------------------------------------------------- @@ -1283,9 +1322,24 @@ >>> Processed Test Case: signalCANXmitsInitiated_NominalPath (S) @LINE: 182 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 +TIME: 2020-12-09 08:23:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-05 23:12:12 +TIME: 2020-12-09 08:23:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1404,7 +1458,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-05 23:12:13 +TIME: 2020-12-09 08:23:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG @@ -1437,9 +1491,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-05 23:12:17 +TIME: 2020-12-09 08:23:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1454,6 +1508,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 100 Processing script line 200 Processing script line 250 @@ -1585,9 +1642,24 @@ >>> Processed Test Case: switchDoubleBuffer_Switch1To0 (S) @LINE: 774 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 +TIME: 2020-12-09 08:23:10 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-05 23:12:18 +TIME: 2020-12-09 08:23:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1803,7 +1875,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-05 23:12:19 +TIME: 2020-12-09 08:23:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG @@ -1836,9 +1908,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-05 23:12:23 +TIME: 2020-12-09 08:23:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1853,6 +1925,9 @@ 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 @@ -2074,9 +2149,24 @@ >>> Processed Test Case: testSetConcentratePumpTargetSpeedOverride_Override (S) @LINE: 671 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 +TIME: 2020-12-09 08:23:17 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-05 23:12:24 +TIME: 2020-12-09 08:23:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2442,7 +2532,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-05 23:12:26 +TIME: 2020-12-09 08:23:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG @@ -2475,9 +2565,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-05 23:12:29 +TIME: 2020-12-09 08:23:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2492,6 +2582,9 @@ 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 @@ -2737,9 +2830,24 @@ >>> Processed Test Case: testSetConductivityOverride_Override (S) @LINE: 746 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 +TIME: 2020-12-09 08:23:24 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-05 23:12:30 +TIME: 2020-12-09 08:23:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3160,7 +3268,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-05 23:12:32 +TIME: 2020-12-09 08:23:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG @@ -3194,9 +3302,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-05 23:12:36 +TIME: 2020-12-09 08:23:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3211,6 +3319,9 @@ 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 @@ -3257,9 +3368,24 @@ >>> Processed Test Case: toggleCPLDWatchdog_NominalPath (S) @LINE: 124 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 +TIME: 2020-12-09 08:23:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-05 23:12:37 +TIME: 2020-12-09 08:23:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3340,7 +3466,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:12:38 +TIME: 2020-12-09 08:23:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/CCAST_.CFG @@ -3376,7 +3502,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:12:41 +TIME: 2020-12-09 08:23:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3534,7 +3660,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:12:42 +TIME: 2020-12-09 08:23:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3556,7 +3682,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/DRAINPUMP/DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:12:43 +TIME: 2020-12-09 08:23:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3808,7 +3934,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:12:44 +TIME: 2020-12-09 08:23:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/CCAST_.CFG @@ -3844,7 +3970,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:12:48 +TIME: 2020-12-09 08:23:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3860,7 +3986,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (1) + Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 Processing script line 200 @@ -4019,7 +4145,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:12:50 +TIME: 2020-12-09 08:23:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4034,7 +4160,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FANS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:12:51 +TIME: 2020-12-09 08:23:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4308,7 +4434,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:12:52 +TIME: 2020-12-09 08:23:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/CCAST_.CFG @@ -4341,9 +4467,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:12:55 +TIME: 2020-12-09 08:23:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4358,9 +4484,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (1) - Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -4862,24 +4985,9 @@ >>> Processed Test Case: NominalPath (S) @LINE: 2149 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:12:58 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:12:59 +TIME: 2020-12-09 08:23:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5791,7 +5899,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-05 23:13:02 +TIME: 2020-12-09 08:23:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG @@ -5825,9 +5933,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-05 23:13:05 +TIME: 2020-12-09 08:23:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5842,6 +5950,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 150 Processing script line 250 @@ -6072,9 +6183,24 @@ >>> Processed Test Case: testSetHeatersPublishIntervalOverride_Log_Not_Activated (S) @LINE: 683 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 +TIME: 2020-12-09 08:24:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-05 23:13:06 +TIME: 2020-12-09 08:24:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6490,7 +6616,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-05 23:13:07 +TIME: 2020-12-09 08:24:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/CCAST_.CFG @@ -6525,7 +6651,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-05 23:13:10 +TIME: 2020-12-09 08:24:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6583,7 +6709,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-05 23:13:11 +TIME: 2020-12-09 08:24:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6648,7 +6774,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-05 23:13:12 +TIME: 2020-12-09 08:24:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG @@ -6682,9 +6808,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-05 23:13:15 +TIME: 2020-12-09 08:24:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6699,6 +6825,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 150 Processing script line 300 @@ -6820,9 +6949,24 @@ >>> Processed Test Case: OverrunError_SCI2_NoPersistence (S) @LINE: 437 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 +TIME: 2020-12-09 08:24:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-05 23:13:16 +TIME: 2020-12-09 08:24:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7030,7 +7174,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:13:17 +TIME: 2020-12-09 08:24:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG @@ -7039,16 +7183,16 @@ Creating the Environment Directory Creating Environment "INT_ACCEL" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/source/ - File: sys_main.c (using cached data) + File: sys_main.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeInitPOST.c (using cached data) + File: ModeInitPOST.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: SystemCommMessages.c (using cached data) + File: SystemCommMessages.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ - File: TaskPriority.c (using cached data) + File: TaskPriority.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/FWCommon/ File: Accel.c @@ -7110,9 +7254,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:13:26 +TIME: 2020-12-09 08:24:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7127,6 +7271,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 200 @@ -7184,9 +7331,24 @@ >>> Processed Test Case: initAccel (S) @LINE: 338 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 +TIME: 2020-12-09 08:24:28 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:13:27 +TIME: 2020-12-09 08:24:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7216,7 +7378,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ACCEL/INT_ACCEL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:13:27 +TIME: 2020-12-09 08:24:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7312,7 +7474,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:13:28 +TIME: 2020-12-09 08:24:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/CCAST_.CFG @@ -7325,7 +7487,7 @@ QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: AlarmMgmt.c - File: SystemComm.c (using cached data) + File: SystemComm.c File: SystemCommMessages.c (using cached data) File: WatchdogMgmt.c QuickParse Utility Completed @@ -7386,9 +7548,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:13:36 +TIME: 2020-12-09 08:24:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7403,6 +7565,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -7436,9 +7601,24 @@ >>> Processed Test Case: initAlarmMgmt (S) @LINE: 136 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 +TIME: 2020-12-09 08:24:42 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:13:37 +TIME: 2020-12-09 08:24:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7468,7 +7648,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:13:37 +TIME: 2020-12-09 08:24:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7527,7 +7707,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:13:39 +TIME: 2020-12-09 08:24:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/CCAST_.CFG @@ -7593,9 +7773,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:13:45 +TIME: 2020-12-09 08:24:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7610,6 +7790,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (2) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -7652,9 +7835,24 @@ >>> Processed Test Case: signalCANXmitsInitiated (S) @LINE: 135 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 +TIME: 2020-12-09 08:24:54 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:13:46 +TIME: 2020-12-09 08:24:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7682,7 +7880,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_COMM/INT_COMM_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:13:47 +TIME: 2020-12-09 08:24:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7761,7 +7959,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-05 23:13:48 +TIME: 2020-12-09 08:24:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG @@ -7773,8 +7971,8 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ - File: CommBuffers.c (using cached data) - File: MsgQueues.c (using cached data) + File: CommBuffers.c + File: MsgQueues.c File: SystemComm.c (using cached data) File: SystemCommMessages.c (using cached data) QuickParse Utility Completed @@ -7835,9 +8033,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-05 23:13:55 +TIME: 2020-12-09 08:25:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7852,6 +8050,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- @@ -7873,9 +8074,24 @@ >>> Processed Test Case: initCommBuffers (S) @LINE: 119 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 +TIME: 2020-12-09 08:25:07 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-05 23:13:56 +TIME: 2020-12-09 08:25:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7911,7 +8127,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-05 23:13:57 +TIME: 2020-12-09 08:25:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/CCAST_.CFG @@ -7927,13 +8143,13 @@ QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeFill.c - File: ModeStandby.c (using cached data) + File: ModeStandby.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ File: SystemCommMessages.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Tasks/ - File: TaskGeneral.c (using cached data) + File: TaskGeneral.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -8000,9 +8216,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-05 23:14:06 +TIME: 2020-12-09 08:25:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8017,6 +8233,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -8082,9 +8301,24 @@ >>> Processed Test Case: initConcentratePump_NominalPath (S) @LINE: 328 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 +TIME: 2020-12-09 08:25:21 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-05 23:14:07 +TIME: 2020-12-09 08:25:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8197,7 +8431,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-05 23:14:08 +TIME: 2020-12-09 08:25:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG @@ -8287,9 +8521,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-05 23:14:17 +TIME: 2020-12-09 08:25:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8304,6 +8538,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -8352,9 +8589,24 @@ >>> Processed Test Case: initSoftware_initConductivitySensors (S) @LINE: 254 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 +TIME: 2020-12-09 08:25:34 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-05 23:14:18 +TIME: 2020-12-09 08:25:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8435,7 +8687,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:14:19 +TIME: 2020-12-09 08:25:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG @@ -8494,9 +8746,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:14:25 +TIME: 2020-12-09 08:25:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8511,6 +8763,9 @@ 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 -------------------------------------------------------------------------------- @@ -8532,9 +8787,24 @@ >>> Processed Test Case: initCPLD (S) @LINE: 55 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 +TIME: 2020-12-09 08:25:44 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:14:26 +TIME: 2020-12-09 08:25:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8560,7 +8830,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_CPLD/INT_CPLD_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:14:26 +TIME: 2020-12-09 08:25:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8596,7 +8866,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:14:27 +TIME: 2020-12-09 08:25:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/CCAST_.CFG @@ -8688,7 +8958,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:14:37 +TIME: 2020-12-09 08:25:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8751,7 +9021,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:14:38 +TIME: 2020-12-09 08:25:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8783,7 +9053,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_DRAINPUMP/INT_DRAINPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:14:38 +TIME: 2020-12-09 08:25:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8864,7 +9134,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:14:39 +TIME: 2020-12-09 08:25:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/CCAST_.CFG @@ -8947,7 +9217,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:14:47 +TIME: 2020-12-09 08:26:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9003,7 +9273,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:14:49 +TIME: 2020-12-09 08:26:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9018,7 +9288,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:14:50 +TIME: 2020-12-09 08:26:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9048,7 +9318,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_FANS/INT_FANS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:14:51 +TIME: 2020-12-09 08:26:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9113,7 +9383,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:14:52 +TIME: 2020-12-09 08:26:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/CCAST_.CFG @@ -9131,7 +9401,7 @@ File: Fans.c (using cached data) File: LoadCell.c File: ROPump.c - File: TemperatureSensors.c (using cached data) + File: TemperatureSensors.c File: Valves.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ @@ -9286,9 +9556,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:15:10 +TIME: 2020-12-09 08:26:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9303,9 +9573,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (1) - Translated 0 script lines Processing script line 50 Processing script line 150 Processing script line 200 @@ -9385,24 +9652,9 @@ >>> Processed Test Case: initFPGA (S) @LINE: 279 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:15:13 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/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/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:15:13 +TIME: 2020-12-09 08:26:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9539,7 +9791,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-05 23:15:14 +TIME: 2020-12-09 08:26:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG @@ -9551,7 +9803,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: Heaters.c (using cached data) + File: Heaters.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) @@ -9638,9 +9890,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-05 23:15:24 +TIME: 2020-12-09 08:26:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9655,6 +9907,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -9733,9 +9988,24 @@ >>> Processed Test Case: initSoftware_initHeaters (S) @LINE: 309 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 +TIME: 2020-12-09 08:26:45 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-05 23:15:25 +TIME: 2020-12-09 08:26:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9867,7 +10137,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-05 23:15:27 +TIME: 2020-12-09 08:26:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/CCAST_.CFG @@ -9946,9 +10216,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-05 23:15:34 +TIME: 2020-12-09 08:26:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9963,6 +10233,9 @@ 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 -------------------------------------------------------------------------------- @@ -9988,9 +10261,24 @@ >>> Processed Test Case: initInternalADC (S) @LINE: 85 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 +TIME: 2020-12-09 08:26:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-05 23:15:35 +TIME: 2020-12-09 08:26:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10034,7 +10322,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:15:36 +TIME: 2020-12-09 08:26:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/CCAST_.CFG @@ -10160,9 +10448,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:15:48 +TIME: 2020-12-09 08:27:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10177,6 +10465,9 @@ 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 @@ -10211,9 +10502,24 @@ >>> Processed Test Case: initInterrupts (S) @LINE: 108 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 +TIME: 2020-12-09 08:27:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:15:49 +TIME: 2020-12-09 08:27:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10253,7 +10559,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_INTERRUPTS/INT_INTERRUPTS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:15:50 +TIME: 2020-12-09 08:27:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10313,7 +10619,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-05 23:15:51 +TIME: 2020-12-09 08:27:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG @@ -10402,9 +10708,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-05 23:16:00 +TIME: 2020-12-09 08:27:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10419,6 +10725,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -10462,9 +10771,24 @@ >>> Processed Test Case: initLoadCell (S) @LINE: 216 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 +TIME: 2020-12-09 08:27:28 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-05 23:16:00 +TIME: 2020-12-09 08:27:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10538,7 +10862,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:16:02 +TIME: 2020-12-09 08:27:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/CCAST_.CFG @@ -10583,9 +10907,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:16:06 +TIME: 2020-12-09 08:27:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10600,6 +10924,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10616,9 +10943,24 @@ >>> Processed Test Case: initChemicalDisinfectMode (S) @LINE: 39 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 +TIME: 2020-12-09 08:27:35 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:16:07 +TIME: 2020-12-09 08:27:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10642,7 +10984,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODECHEMICALDISINFECT/INT_MODECHEMICALDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:16:07 +TIME: 2020-12-09 08:27:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10670,7 +11012,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:16:08 +TIME: 2020-12-09 08:27:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG @@ -10715,9 +11057,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:16:12 +TIME: 2020-12-09 08:27:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10732,6 +11074,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (1) + Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -10757,9 +11102,24 @@ >>> Processed Test Case: transitionToDrainMode (S) @LINE: 64 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 +TIME: 2020-12-09 08:27:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:16:13 +TIME: 2020-12-09 08:27:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10783,7 +11143,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEDRAIN/INT_MODEDRAIN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:16:13 +TIME: 2020-12-09 08:27:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10826,7 +11186,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:16:14 +TIME: 2020-12-09 08:27:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/CCAST_.CFG @@ -10871,9 +11231,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:16:18 +TIME: 2020-12-09 08:27:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10888,6 +11248,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -10904,9 +11267,24 @@ >>> Processed Test Case: initFaultMode (S) @LINE: 39 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 +TIME: 2020-12-09 08:27:51 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:16:19 +TIME: 2020-12-09 08:27:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10930,7 +11308,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFAULT/INT_MODEFAULT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:16:20 +TIME: 2020-12-09 08:27:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10958,7 +11336,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-05 23:16:21 +TIME: 2020-12-09 08:27:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/CCAST_.CFG @@ -11003,9 +11381,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-05 23:16:24 +TIME: 2020-12-09 08:27:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11020,6 +11398,9 @@ 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 @@ -11058,7 +11439,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-05 23:16:25 +TIME: 2020-12-09 08:27:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11115,7 +11496,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:16:26 +TIME: 2020-12-09 08:28:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/CCAST_.CFG @@ -11160,9 +11541,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:16:30 +TIME: 2020-12-09 08:28:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11177,6 +11558,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -11193,9 +11577,24 @@ >>> Processed Test Case: initFlushMode (S) @LINE: 39 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 +TIME: 2020-12-09 08:28:05 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:16:31 +TIME: 2020-12-09 08:28:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11219,7 +11618,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEFLUSH/INT_MODEFLUSH_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:16:32 +TIME: 2020-12-09 08:28:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11247,7 +11646,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:16:32 +TIME: 2020-12-09 08:28:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/CCAST_.CFG @@ -11292,9 +11691,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:16:36 +TIME: 2020-12-09 08:28:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11309,6 +11708,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -11325,9 +11727,24 @@ >>> Processed Test Case: initHeatDisinfectMode (S) @LINE: 39 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 +TIME: 2020-12-09 08:28:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:16:37 +TIME: 2020-12-09 08:28:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11351,7 +11768,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEHEATDISINFECT/INT_MODEHEATDISINFECT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:16:38 +TIME: 2020-12-09 08:28:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11379,7 +11796,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:16:39 +TIME: 2020-12-09 08:28:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/CCAST_.CFG @@ -11424,9 +11841,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:16:43 +TIME: 2020-12-09 08:28:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11441,6 +11858,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (1) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -11457,9 +11877,24 @@ >>> Processed Test Case: initInitAndPOSTMode (S) @LINE: 44 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 +TIME: 2020-12-09 08:28:21 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:16:43 +TIME: 2020-12-09 08:28:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11483,7 +11918,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODEINITPOST/INT_MODEINITPOST_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:16:44 +TIME: 2020-12-09 08:28:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11511,7 +11946,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-05 23:16:45 +TIME: 2020-12-09 08:28:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG @@ -11520,7 +11955,7 @@ Creating the Environment Directory Creating Environment "INT_MODERECIRCULATE" Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ - File: ModeRecirculate.c (using cached data) + File: ModeRecirculate.c File: OperationModes.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Services/ @@ -11576,9 +12011,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-05 23:16:51 +TIME: 2020-12-09 08:28:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11593,6 +12028,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -11635,9 +12073,24 @@ >>> Processed Test Case: requestDGStop (S) @LINE: 128 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 +TIME: 2020-12-09 08:28:32 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-05 23:16:52 +TIME: 2020-12-09 08:28:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11710,7 +12163,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:16:53 +TIME: 2020-12-09 08:28:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/CCAST_.CFG @@ -11755,9 +12208,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:16:57 +TIME: 2020-12-09 08:28:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11772,6 +12225,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -11788,9 +12244,24 @@ >>> Processed Test Case: initServiceMode (S) @LINE: 39 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 +TIME: 2020-12-09 08:28:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:16:58 +TIME: 2020-12-09 08:28:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11814,7 +12285,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESERVICE/INT_MODESERVICE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:16:58 +TIME: 2020-12-09 08:28:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11842,7 +12313,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:16:59 +TIME: 2020-12-09 08:28:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/CCAST_.CFG @@ -11887,9 +12358,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:17:03 +TIME: 2020-12-09 08:28:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11904,6 +12375,9 @@ 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 -------------------------------------------------------------------------------- @@ -11925,9 +12399,24 @@ >>> Processed Test Case: initSoloMode (S) @LINE: 53 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 +TIME: 2020-12-09 08:28:55 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:17:04 +TIME: 2020-12-09 08:28:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11951,7 +12440,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESOLO/INT_MODESOLO_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:17:05 +TIME: 2020-12-09 08:28:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11986,7 +12475,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:17:05 +TIME: 2020-12-09 08:28:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG @@ -12042,9 +12531,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:17:11 +TIME: 2020-12-09 08:29:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12059,6 +12548,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -12097,9 +12589,24 @@ >>> Processed Test Case: requestDGStart (S) @LINE: 123 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 +TIME: 2020-12-09 08:29:09 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:17:12 +TIME: 2020-12-09 08:29:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12125,7 +12632,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_MODESTANDBY/INT_MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:17:12 +TIME: 2020-12-09 08:29:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12191,7 +12698,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-05 23:17:13 +TIME: 2020-12-09 08:29:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG @@ -12265,9 +12772,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-05 23:17:21 +TIME: 2020-12-09 08:29:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12282,6 +12789,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -12308,9 +12818,24 @@ >>> Processed Test Case: initMsgQueues (S) @LINE: 120 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 +TIME: 2020-12-09 08:29:20 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-05 23:17:22 +TIME: 2020-12-09 08:29:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12354,7 +12879,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-05 23:17:23 +TIME: 2020-12-09 08:29:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG @@ -12432,9 +12957,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-05 23:17:30 +TIME: 2020-12-09 08:29:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12449,6 +12974,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (1) + Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -12474,9 +13002,24 @@ >>> Processed Test Case: initOperationModes (S) @LINE: 83 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 +TIME: 2020-12-09 08:29:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-05 23:17:31 +TIME: 2020-12-09 08:29:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12520,7 +13063,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-05 23:17:32 +TIME: 2020-12-09 08:29:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/CCAST_.CFG @@ -12570,7 +13113,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-05 23:17:36 +TIME: 2020-12-09 08:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12585,6 +13128,7 @@ Opening Types File Environment is Open Processing Script File + Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -12593,21 +13137,21 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM.tst.tmp (I) @LINE: 24 >>> Processing Test Case: checkInletWaterTemperature_Check_PersistentAlarm -(S) @LINE: 31 +(S) @LINE: 33 >>> Processed Test Case: checkInletWaterTemperature_Check_PersistentAlarm -(I) @LINE: 37 +(I) @LINE: 39 >>> Processing Test Case: checkInletWaterTemperature_Set_PersistentAlarm -(S) @LINE: 46 +(S) @LINE: 51 >>> Processed Test Case: checkInletWaterTemperature_Set_PersistentAlarm -(I) @LINE: 54 +(I) @LINE: 59 >>> Processing Test Case: initTemperatureSensors_Init_PersistentAlarm -(S) @LINE: 57 +(S) @LINE: 62 >>> Processed Test Case: initTemperatureSensors_Init_PersistentAlarm -(S) @LINE: 57 +(S) @LINE: 62 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-05 23:17:37 +TIME: 2020-12-09 08:29:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12642,7 +13186,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:17:38 +TIME: 2020-12-09 08:29:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/CCAST_.CFG @@ -12689,9 +13233,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:17:43 +TIME: 2020-12-09 08:29:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12706,6 +13250,9 @@ 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 -------------------------------------------------------------------------------- @@ -12739,7 +13286,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:17:44 +TIME: 2020-12-09 08:29:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12763,7 +13310,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_PICONTROLLERS/INT_PICONTROLLERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:17:44 +TIME: 2020-12-09 08:29:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12799,7 +13346,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-05 23:17:45 +TIME: 2020-12-09 08:29:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG @@ -12906,9 +13453,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-05 23:17:55 +TIME: 2020-12-09 08:29:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12923,6 +13470,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 150 Processing script line 200 Script Creation Completed @@ -12985,9 +13535,24 @@ >>> Processed Test Case: initPressures (S) @LINE: 259 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 +TIME: 2020-12-09 08:30:00 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-05 23:17:56 +TIME: 2020-12-09 08:30:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13098,7 +13663,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:17:58 +TIME: 2020-12-09 08:30:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/CCAST_.CFG @@ -13216,7 +13781,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:18:09 +TIME: 2020-12-09 08:30:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13283,7 +13848,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:18:10 +TIME: 2020-12-09 08:30:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13321,7 +13886,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RESERVOIRS/INT_RESERVOIRS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:18:10 +TIME: 2020-12-09 08:30:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13412,7 +13977,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:18:11 +TIME: 2020-12-09 08:30:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG @@ -13520,9 +14085,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:18:22 +TIME: 2020-12-09 08:30:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13537,6 +14102,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -13605,9 +14173,24 @@ >>> Processed Test Case: initROPump (S) @LINE: 330 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 +TIME: 2020-12-09 08:30:45 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:18:23 +TIME: 2020-12-09 08:30:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13643,7 +14226,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_ROPUMP/INT_ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:18:24 +TIME: 2020-12-09 08:30:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13763,7 +14346,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:18:25 +TIME: 2020-12-09 08:30:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG @@ -13851,9 +14434,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:18:35 +TIME: 2020-12-09 08:31:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13868,6 +14451,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -13918,9 +14504,24 @@ >>> Processed Test Case: initRTC (S) @LINE: 192 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 +TIME: 2020-12-09 08:31:03 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:18:36 +TIME: 2020-12-09 08:31:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13952,7 +14553,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_RTC/INT_RTC_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:18:37 +TIME: 2020-12-09 08:31:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14039,7 +14640,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:18:38 +TIME: 2020-12-09 08:31:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/CCAST_.CFG @@ -14098,9 +14699,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:18:44 +TIME: 2020-12-09 08:31:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14115,6 +14716,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -14136,9 +14740,24 @@ >>> Processed Test Case: initSafetyShutdown (S) @LINE: 81 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 +TIME: 2020-12-09 08:31:13 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:18:45 +TIME: 2020-12-09 08:31:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14164,7 +14783,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:18:45 +TIME: 2020-12-09 08:31:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14199,7 +14818,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:18:46 +TIME: 2020-12-09 08:31:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/CCAST_.CFG @@ -14307,7 +14926,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:18:57 +TIME: 2020-12-09 08:31:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14323,7 +14942,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (0) + Test Script Maintenance Complete (5) Translated 0 script lines Processing script line 50 Processing script line 150 @@ -14374,7 +14993,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:18:59 +TIME: 2020-12-09 08:31:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14389,7 +15008,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:18:59 +TIME: 2020-12-09 08:31:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14469,7 +15088,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:19:01 +TIME: 2020-12-09 08:31:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/CCAST_.CFG @@ -14544,9 +15163,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:19:08 +TIME: 2020-12-09 08:31:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14561,9 +15180,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 @@ -14798,7 +15414,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:19:10 +TIME: 2020-12-09 08:31:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14828,7 +15444,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:19:11 +TIME: 2020-12-09 08:31:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15159,7 +15775,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-05 23:19:13 +TIME: 2020-12-09 08:31:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/CCAST_.CFG @@ -15217,9 +15833,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-05 23:19:19 +TIME: 2020-12-09 08:31:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15234,6 +15850,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15246,9 +15865,24 @@ >>> Processed Test Case: taskBackground_NominalPath (S) @LINE: 29 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 +TIME: 2020-12-09 08:31:49 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-05 23:19:19 +TIME: 2020-12-09 08:31:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15268,7 +15902,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-05 23:19:20 +TIME: 2020-12-09 08:31:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/CCAST_.CFG @@ -15315,9 +15949,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-05 23:19:25 +TIME: 2020-12-09 08:31:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15332,6 +15966,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15344,9 +15981,24 @@ >>> Processed Test Case: taskGeneral (S) @LINE: 27 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 +TIME: 2020-12-09 08:31:56 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-05 23:19:25 +TIME: 2020-12-09 08:31:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15366,7 +16018,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-05 23:19:26 +TIME: 2020-12-09 08:31:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/CCAST_.CFG @@ -15413,9 +16065,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-05 23:19:30 +TIME: 2020-12-09 08:32:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15430,6 +16082,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15442,9 +16097,24 @@ >>> Processed Test Case: taskPriority_NominalPath (S) @LINE: 27 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 +TIME: 2020-12-09 08:32:04 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-05 23:19:31 +TIME: 2020-12-09 08:32:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15464,7 +16134,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-05 23:19:32 +TIME: 2020-12-09 08:32:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/CCAST_.CFG @@ -15522,9 +16192,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-05 23:19:37 +TIME: 2020-12-09 08:32:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15539,6 +16209,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -15551,9 +16224,24 @@ >>> Processed Test Case: taskTimer_NominalPath (S) @LINE: 29 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 +TIME: 2020-12-09 08:32:12 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-05 23:19:38 +TIME: 2020-12-09 08:32:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15573,7 +16261,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:19:39 +TIME: 2020-12-09 08:32:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG @@ -15672,9 +16360,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:19:49 +TIME: 2020-12-09 08:32:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15689,9 +16377,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 @@ -15747,24 +16432,9 @@ >>> Processed Test Case: initSoftware_initHeaters (S) @LINE: 212 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:19:51 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:19:52 +TIME: 2020-12-09 08:32:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15860,7 +16530,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:19:53 +TIME: 2020-12-09 08:32:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/CCAST_.CFG @@ -15872,7 +16542,7 @@ File: sys_main.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Controllers/ - File: Thermistors.c (using cached data) + File: Thermistors.c QuickParse Utility Completed Calling QuickParse Utility for /home/fw/workspace_dg/dgfirmware/firmware/App/Modes/ File: ModeInitPOST.c (using cached data) @@ -15942,7 +16612,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:20:01 +TIME: 2020-12-09 08:32:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16005,7 +16675,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:20:03 +TIME: 2020-12-09 08:32:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16020,7 +16690,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:20:04 +TIME: 2020-12-09 08:32:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16093,7 +16763,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:20:05 +TIME: 2020-12-09 08:32:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/CCAST_.CFG @@ -16171,9 +16841,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:20:12 +TIME: 2020-12-09 08:32:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16188,6 +16858,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -16212,9 +16885,24 @@ >>> Processed Test Case: initTimers (S) @LINE: 82 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 +TIME: 2020-12-09 08:32:49 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:20:13 +TIME: 2020-12-09 08:32:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16244,7 +16932,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_TIMERS/INT_TIMERS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:20:14 +TIME: 2020-12-09 08:32:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16288,7 +16976,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:20:15 +TIME: 2020-12-09 08:32:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/CCAST_.CFG @@ -16364,9 +17052,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:20:23 +TIME: 2020-12-09 08:32:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16381,6 +17069,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 100 Script Creation Completed -------------------------------------------------------------------------------- @@ -16410,9 +17101,24 @@ >>> Processed Test Case: crc8 (S) @LINE: 145 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 +TIME: 2020-12-09 08:33:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:20:23 +TIME: 2020-12-09 08:33:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16442,7 +17148,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/INT_UTILITIES/INT_UTILITIES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:20:24 +TIME: 2020-12-09 08:33:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16494,7 +17200,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-05 23:20:25 +TIME: 2020-12-09 08:33:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG @@ -16574,9 +17280,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-05 23:20:33 +TIME: 2020-12-09 08:33:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16591,6 +17297,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (5) + Translated 0 script lines Processing script line 50 Processing script line 200 Script Creation Completed @@ -16633,9 +17342,24 @@ >>> Processed Test Case: initSoftware_initValves (S) @LINE: 211 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 +TIME: 2020-12-09 08:33:14 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-05 23:20:34 +TIME: 2020-12-09 08:33:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16709,7 +17433,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-05 23:20:35 +TIME: 2020-12-09 08:33:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/CCAST_.CFG @@ -16796,9 +17520,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-05 23:20:44 +TIME: 2020-12-09 08:33:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16813,6 +17537,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (6) + Translated 0 script lines Processing script line 50 Processing script line 150 Script Creation Completed @@ -16847,9 +17574,24 @@ >>> Processed Test Case: initWatchdogMgmt (S) @LINE: 187 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 +TIME: 2020-12-09 08:33:27 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-05 23:20:45 +TIME: 2020-12-09 08:33:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16908,7 +17650,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-05 23:20:46 +TIME: 2020-12-09 08:33:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG @@ -16941,9 +17683,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-05 23:20:48 +TIME: 2020-12-09 08:33:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16958,6 +17700,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -17051,9 +17796,24 @@ >>> Processed Test Case: testSetLoadCellOverride_Override (S) @LINE: 354 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 +TIME: 2020-12-09 08:33:33 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-05 23:20:49 +TIME: 2020-12-09 08:33:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17215,7 +17975,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-05 23:20:51 +TIME: 2020-12-09 08:33:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/CCAST_.CFG @@ -17248,9 +18008,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-05 23:20:54 +TIME: 2020-12-09 08:33:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17265,6 +18025,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -17293,9 +18056,24 @@ >>> Processed Test Case: transitionToChemicalDisinfectMode_NominalPath (S) @LINE: 69 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 +TIME: 2020-12-09 08:33:40 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-05 23:20:54 +TIME: 2020-12-09 08:33:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17346,7 +18124,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-05 23:20:55 +TIME: 2020-12-09 08:33:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/CCAST_.CFG @@ -17381,7 +18159,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-05 23:20:58 +TIME: 2020-12-09 08:33:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17440,7 +18218,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-05 23:20:59 +TIME: 2020-12-09 08:33:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17513,7 +18291,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-05 23:21:00 +TIME: 2020-12-09 08:33:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/CCAST_.CFG @@ -17546,9 +18324,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-05 23:21:03 +TIME: 2020-12-09 08:33:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17563,6 +18341,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -17591,9 +18372,24 @@ >>> Processed Test Case: transitionToFaultMode_NominalPath (S) @LINE: 67 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 +TIME: 2020-12-09 08:33:53 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-05 23:21:03 +TIME: 2020-12-09 08:33:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17644,7 +18440,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-05 23:21:04 +TIME: 2020-12-09 08:33:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/CCAST_.CFG @@ -17678,9 +18474,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-05 23:21:07 +TIME: 2020-12-09 08:33:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17695,6 +18491,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Processing script line 50 Processing script line 250 Script Creation Completed @@ -17801,7 +18600,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-05 23:21:08 +TIME: 2020-12-09 08:33:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17981,7 +18780,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-05 23:21:10 +TIME: 2020-12-09 08:34:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/CCAST_.CFG @@ -18014,9 +18813,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-05 23:21:12 +TIME: 2020-12-09 08:34:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18031,6 +18830,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18059,9 +18861,24 @@ >>> Processed Test Case: transitionToFlushMode_NominalPath (S) @LINE: 69 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 +TIME: 2020-12-09 08:34:05 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-05 23:21:13 +TIME: 2020-12-09 08:34:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18112,7 +18929,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-05 23:21:14 +TIME: 2020-12-09 08:34:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/CCAST_.CFG @@ -18145,9 +18962,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-05 23:21:17 +TIME: 2020-12-09 08:34:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18162,6 +18979,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18190,9 +19010,24 @@ >>> Processed Test Case: transitionToHeatDisinfectMode_NominalPath (S) @LINE: 69 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 +TIME: 2020-12-09 08:34:11 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-05 23:21:18 +TIME: 2020-12-09 08:34:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18243,7 +19078,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-05 23:21:19 +TIME: 2020-12-09 08:34:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/CCAST_.CFG @@ -18278,7 +19113,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-05 23:21:22 +TIME: 2020-12-09 08:34:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18295,8 +19130,6 @@ Processing Script File Processing script line 50 Processing script line 100 - Processing script line 150 - Processing script line 200 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18305,85 +19138,113 @@ >>> Opening script file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST.tst.tmp (I) @LINE: 24 >>> Processing Test Case: execInitAndPOSTMode_Accel +(I) @LINE: 27 + >>> 'DG_POST_STATE_PRESSURES' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 28 >>> Processed Test Case: execInitAndPOSTMode_Accel (I) @LINE: 34 >>> Processing Test Case: execInitAndPOSTMode_Completed +(I) @LINE: 40 + >>> 'DG_POST_STATE_COMPLETED' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 42 >>> Processed Test Case: execInitAndPOSTMode_Completed (I) @LINE: 48 >>> Processing Test Case: execInitAndPOSTMode_Default +(I) @LINE: 50 + >>> 'DG_POST_STATE_FAILED' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 51 >>> Processed Test Case: execInitAndPOSTMode_Default (I) @LINE: 57 >>> Processing Test Case: execInitAndPOSTMode_FPGA +(I) @LINE: 60 + >>> 'DG_POST_STATE_RTC' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 61 >>> Processed Test Case: execInitAndPOSTMode_FPGA (I) @LINE: 67 >>> Processing Test Case: execInitAndPOSTMode_Failed (S) @LINE: 70 >>> Processed Test Case: execInitAndPOSTMode_Failed (I) @LINE: 76 - >>> Processing Test Case: execInitAndPOSTMode_Heaters + >>> Processing Test Case: execInitAndPOSTMode_Fans (S) @LINE: 80 - >>> Processed Test Case: execInitAndPOSTMode_Heaters + >>> Processed Test Case: execInitAndPOSTMode_Fans (I) @LINE: 86 - >>> Processing Test Case: execInitAndPOSTMode_POST_Failed + >>> Processing Test Case: execInitAndPOSTMode_Heaters +(I) @LINE: 89 + >>> 'DG_POST_STATE_ACCELEROMETER' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 90 - >>> Processed Test Case: execInitAndPOSTMode_POST_Failed + >>> Processed Test Case: execInitAndPOSTMode_Heaters (I) @LINE: 96 - >>> Processing Test Case: execInitAndPOSTMode_POST_Passed + >>> Processing Test Case: execInitAndPOSTMode_POST_Failed +(I) @LINE: 99 + >>> 'DG_POST_STATE_FAILED' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 100 - >>> Processed Test Case: execInitAndPOSTMode_POST_Passed + >>> Processed Test Case: execInitAndPOSTMode_POST_Failed (I) @LINE: 106 - >>> Processing Test Case: execInitAndPOSTMode_Pressures + >>> Processing Test Case: execInitAndPOSTMode_POST_Passed +(I) @LINE: 109 + >>> 'DG_POST_STATE_COMPLETED' was specified as a macro, but it is in the symbol dictionary. (S) @LINE: 110 - >>> Processed Test Case: execInitAndPOSTMode_Pressures + >>> Processed Test Case: execInitAndPOSTMode_POST_Passed (I) @LINE: 116 - >>> Processing Test Case: execInitAndPOSTMode_RTC + >>> Processing Test Case: execInitAndPOSTMode_Pressures (S) @LINE: 120 - >>> Processed Test Case: execInitAndPOSTMode_RTC + >>> Processed Test Case: execInitAndPOSTMode_Pressures (I) @LINE: 126 + >>> Processing Test Case: execInitAndPOSTMode_RTC +(I) @LINE: 129 + >>> 'DG_POST_STATE_TEMPERATURE_SENSORS' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 130 + >>> Processed Test Case: execInitAndPOSTMode_RTC +(I) @LINE: 136 >>> Processing Test Case: execInitAndPOSTMode_Start -(S) @LINE: 129 +(I) @LINE: 138 + >>> 'DG_POST_STATE_FPGA' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 139 >>> Processed Test Case: execInitAndPOSTMode_Start -(I) @LINE: 135 +(I) @LINE: 145 >>> Processing Test Case: execInitAndPOSTMode_TemperatureSensor -(S) @LINE: 139 +(I) @LINE: 148 + >>> 'DG_POST_STATE_HEATERS' was specified as a macro, but it is in the symbol dictionary. +(S) @LINE: 149 >>> Processed Test Case: execInitAndPOSTMode_TemperatureSensor -(I) @LINE: 147 +(I) @LINE: 155 + >>> Processing Test Case: execInitAndPOSTMode_Thermistors +(S) @LINE: 159 + >>> Processed Test Case: execInitAndPOSTMode_Thermistors +(I) @LINE: 167 >>> Processing Test Case: getCurrentInitAndPOSTState_NominalPath -(S) @LINE: 150 +(S) @LINE: 170 >>> Processed Test Case: getCurrentInitAndPOSTState_NominalPath -(I) @LINE: 158 +(I) @LINE: 178 >>> Processing Test Case: handlePOSTStatus_Failed -(S) @LINE: 164 +(S) @LINE: 184 >>> Processed Test Case: handlePOSTStatus_Failed -(I) @LINE: 170 +(I) @LINE: 190 >>> Processing Test Case: handlePOSTStatus_Passed -(S) @LINE: 174 +(S) @LINE: 194 >>> Processed Test Case: handlePOSTStatus_Passed -(I) @LINE: 182 +(I) @LINE: 202 >>> Processing Test Case: initInitAndPOSTMode_NominalPath -(S) @LINE: 191 +(S) @LINE: 211 >>> Processed Test Case: initInitAndPOSTMode_NominalPath -(I) @LINE: 199 +(I) @LINE: 219 >>> Processing Test Case: isPOSTCompleted._NominalPath -(S) @LINE: 202 +(S) @LINE: 222 >>> Processed Test Case: isPOSTCompleted._NominalPath -(I) @LINE: 210 +(I) @LINE: 230 >>> Processing Test Case: isPOSTPassed_NominalPath -(S) @LINE: 213 +(S) @LINE: 233 >>> Processed Test Case: isPOSTPassed_NominalPath -(I) @LINE: 221 +(I) @LINE: 241 >>> Processing Test Case: transitionToInitAndPOSTMode_NominalPath -(S) @LINE: 222 +(S) @LINE: 242 >>> Processed Test Case: transitionToInitAndPOSTMode_NominalPath -(S) @LINE: 222 +(S) @LINE: 242 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-05 23:21:22 +TIME: 2020-12-09 08:34:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18444,6 +19305,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execInitAndPOSTMode_Fans + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running: execInitAndPOSTMode_Heaters Preparing Test Data Running Test Case @@ -18493,6 +19361,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running: execInitAndPOSTMode_Thermistors + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all ModeInitPOST.isPOSTCompleted test cases Running: isPOSTCompleted._NominalPath Preparing Test Data @@ -18535,7 +19410,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:21:24 +TIME: 2020-12-09 08:34:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG @@ -18568,9 +19443,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:21:27 +TIME: 2020-12-09 08:34:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18585,6 +19460,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (7) + Translated 0 script lines Processing script line 50 Processing script line 100 Script Creation Completed @@ -18647,9 +19525,24 @@ >>> Processed Test Case: transitionToRecirculateMode_NominalPath (S) @LINE: 179 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 +TIME: 2020-12-09 08:34:23 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:21:28 +TIME: 2020-12-09 08:34:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18671,7 +19564,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODERECIRCULATE/MODERECIRCULATE_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:21:28 +TIME: 2020-12-09 08:34:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18782,7 +19675,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-05 23:21:30 +TIME: 2020-12-09 08:34:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/CCAST_.CFG @@ -18815,9 +19708,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-05 23:21:32 +TIME: 2020-12-09 08:34:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18832,6 +19725,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18860,9 +19756,24 @@ >>> Processed Test Case: transitionToServiceMode_NominalPath (S) @LINE: 67 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 +TIME: 2020-12-09 08:34:31 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-05 23:21:33 +TIME: 2020-12-09 08:34:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18913,7 +19824,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-05 23:21:34 +TIME: 2020-12-09 08:34:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/CCAST_.CFG @@ -18946,9 +19857,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-05 23:21:37 +TIME: 2020-12-09 08:34:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18963,6 +19874,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -18999,9 +19913,24 @@ >>> Processed Test Case: transitionToSoloMode_NominalPath (S) @LINE: 90 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 +TIME: 2020-12-09 08:34:36 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-05 23:21:38 +TIME: 2020-12-09 08:34:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19067,7 +19996,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:21:39 +TIME: 2020-12-09 08:34:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG @@ -19100,9 +20029,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:21:41 +TIME: 2020-12-09 08:34:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19117,6 +20046,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (7) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 200 @@ -19196,9 +20128,24 @@ >>> Processed Test Case: transitionToStandbyMode_NominalPath (S) @LINE: 243 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 +TIME: 2020-12-09 08:34:43 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:21:42 +TIME: 2020-12-09 08:34:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19220,7 +20167,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/MODESTANDBY/MODESTANDBY_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:21:43 +TIME: 2020-12-09 08:34:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19359,7 +20306,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-05 23:21:44 +TIME: 2020-12-09 08:34:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG @@ -19392,9 +20339,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-05 23:21:47 +TIME: 2020-12-09 08:34:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19409,6 +20356,9 @@ 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 @@ -19490,9 +20440,24 @@ >>> Processed Test Case: QueueNotFull (S) @LINE: 315 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 +TIME: 2020-12-09 08:34:50 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-05 23:21:48 +TIME: 2020-12-09 08:34:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19630,7 +20595,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-05 23:21:49 +TIME: 2020-12-09 08:34:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/CCAST_.CFG @@ -19666,7 +20631,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-05 23:21:53 +TIME: 2020-12-09 08:34:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19683,29 +20648,31 @@ Processing Script File Processing script line 50 Processing script line 100 - Processing script line 400 - Processing script line 450 + Processing script line 150 + Processing script line 200 + Processing script line 300 + Processing script line 350 Processing script line 500 Processing script line 550 Processing script line 600 - Processing script line 700 + Processing script line 650 Processing script line 750 Processing script line 800 + Processing script line 1000 Processing script line 1050 - Processing script line 1150 - Processing script line 1200 Processing script line 1250 + Processing script line 1300 + Processing script line 1350 + Processing script line 1400 + Processing script line 1450 Processing script line 1500 - Processing script line 1600 Processing script line 1650 - Processing script line 1700 - Processing script line 1750 - Processing script line 1800 Processing script line 1850 Processing script line 1900 Processing script line 1950 Processing script line 2000 - Processing script line 2050 + Processing script line 2100 + Processing script line 2200 Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -19738,599 +20705,693 @@ >>> Processed Test Case: enqueue_Non_Zero_Mod (I) @LINE: 116 >>> Processing Test Case: enqueue_Read_EEPROM -(E) @LINE: 117 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 128 +(E) Errors from previous script import(s) + >>> (E) @LINE: 117 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 134 >>> Processed Test Case: enqueue_Read_EEPROM -(I) @LINE: 134 +(I) @LINE: 140 >>> Processing Test Case: enqueue_Read_RTC -(E) @LINE: 135 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 146 +(E) Errors from previous script import(s) + >>> (E) @LINE: 135 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 158 >>> Processed Test Case: enqueue_Read_RTC -(I) @LINE: 152 +(I) @LINE: 164 >>> Processing Test Case: enqueue_Write_EEPROM -(E) @LINE: 153 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 164 +(E) Errors from previous script import(s) + >>> (E) @LINE: 153 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 182 >>> Processed Test Case: enqueue_Write_EEPROM -(I) @LINE: 172 +(I) @LINE: 190 >>> Processing Test Case: enqueueBank7Sector0Records_Min_Jobs_Available -(S) @LINE: 176 +(S) @LINE: 194 >>> Processed Test Case: enqueueBank7Sector0Records_Min_Jobs_Available -(I) @LINE: 182 +(I) @LINE: 200 >>> Processing Test Case: enqueueBank7Sector0Records_Min_Jobs_Not_Available -(S) @LINE: 186 +(S) @LINE: 204 >>> Processed Test Case: enqueueBank7Sector0Records_Min_Jobs_Not_Available -(I) @LINE: 194 +(I) @LINE: 212 >>> Processing Test Case: eraseDataLogSectors_Min_Jobs_Available -(S) @LINE: 198 +(S) @LINE: 216 >>> Processed Test Case: eraseDataLogSectors_Min_Jobs_Available -(I) @LINE: 204 +(I) @LINE: 222 >>> Processing Test Case: eraseDataLogSectors_Min_Jobs_Not_Available -(S) @LINE: 208 +(S) @LINE: 226 >>> Processed Test Case: eraseDataLogSectors_Min_Jobs_Not_Available -(I) @LINE: 216 +(I) @LINE: 234 >>> Processing Test Case: execNVDataMgmt_Default -(S) @LINE: 219 +(S) @LINE: 237 >>> Processed Test Case: execNVDataMgmt_Default -(I) @LINE: 225 +(I) @LINE: 243 >>> Processing Test Case: execNVDataMgmt_Erase_EEPROM -(S) @LINE: 228 +(S) @LINE: 246 >>> Processed Test Case: execNVDataMgmt_Erase_EEPROM -(I) @LINE: 234 +(I) @LINE: 252 >>> Processing Test Case: execNVDataMgmt_Idle -(S) @LINE: 237 +(S) @LINE: 255 >>> Processed Test Case: execNVDataMgmt_Idle -(I) @LINE: 243 +(I) @LINE: 261 >>> Processing Test Case: execNVDataMgmt_Read_From_EEPROM -(S) @LINE: 246 +(S) @LINE: 264 >>> Processed Test Case: execNVDataMgmt_Read_From_EEPROM -(I) @LINE: 252 +(I) @LINE: 270 >>> Processing Test Case: execNVDataMgmt_Read_From_RTC -(S) @LINE: 256 +(S) @LINE: 274 >>> Processed Test Case: execNVDataMgmt_Read_From_RTC -(I) @LINE: 262 +(I) @LINE: 280 >>> Processing Test Case: execNVDataMgmt_Wait_For_POST -(S) @LINE: 266 +(S) @LINE: 284 >>> Processed Test Case: execNVDataMgmt_Wait_For_POST -(I) @LINE: 272 +(I) @LINE: 290 >>> Processing Test Case: execNVDataMgmt_Write_To_EEPROM -(S) @LINE: 275 +(S) @LINE: 293 >>> Processed Test Case: execNVDataMgmt_Write_To_EEPROM -(I) @LINE: 281 +(I) @LINE: 299 >>> Processing Test Case: execNVDataMgmt_Write_To_RTC -(S) @LINE: 284 +(S) @LINE: 302 >>> Processed Test Case: execNVDataMgmt_Write_To_RTC -(I) @LINE: 292 +(I) @LINE: 310 >>> Processing Test Case: execNVDataMgmtSelfTest_Check_CRC_Record -(S) @LINE: 297 +(S) @LINE: 315 >>> Processed Test Case: execNVDataMgmtSelfTest_Check_CRC_Record -(I) @LINE: 303 +(I) @LINE: 321 >>> Processing Test Case: execNVDataMgmtSelfTest_Complete -(S) @LINE: 306 +(S) @LINE: 324 >>> Processed Test Case: execNVDataMgmtSelfTest_Complete -(I) @LINE: 312 +(I) @LINE: 330 >>> Processing Test Case: execNVDataMgmtSelfTest_Default -(S) @LINE: 315 +(S) @LINE: 333 >>> Processed Test Case: execNVDataMgmtSelfTest_Default -(I) @LINE: 321 +(I) @LINE: 339 >>> Processing Test Case: execNVDataMgmtSelfTest_Enable_EEPROM -(S) @LINE: 326 +(S) @LINE: 344 >>> Processed Test Case: execNVDataMgmtSelfTest_Enable_EEPROM -(I) @LINE: 332 +(I) @LINE: 350 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Bootloader -(S) @LINE: 337 +(S) @LINE: 355 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Bootloader -(I) @LINE: 343 +(I) @LINE: 361 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Calibration_Record -(S) @LINE: 348 +(S) @LINE: 366 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Calibration_Record -(I) @LINE: 354 +(I) @LINE: 372 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_DG_Water_Consumption -(S) @LINE: 359 +(S) @LINE: 377 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_DG_Water_Consumption -(I) @LINE: 365 +(I) @LINE: 383 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Disinfection_Record -(S) @LINE: 370 +(S) @LINE: 388 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Disinfection_Record -(I) @LINE: 376 +(I) @LINE: 394 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_HD_Treatment_Time -(S) @LINE: 381 +(S) @LINE: 399 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_HD_Treatment_Time -(I) @LINE: 387 +(I) @LINE: 405 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Log_Record -(S) @LINE: 392 +(S) @LINE: 410 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Log_Record -(I) @LINE: 398 +(I) @LINE: 416 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Mfg_Record -(S) @LINE: 403 +(S) @LINE: 421 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Mfg_Record -(I) @LINE: 409 +(I) @LINE: 427 >>> Processing Test Case: execNVDataMgmtSelfTest_Read_Service_Record -(S) @LINE: 414 +(S) @LINE: 432 >>> Processed Test Case: execNVDataMgmtSelfTest_Read_Service_Record -(I) @LINE: 420 +(I) @LINE: 438 >>> Processing Test Case: execNVDataMgmtSelfTest_Test_Start -(S) @LINE: 426 +(S) @LINE: 444 >>> Processed Test Case: execNVDataMgmtSelfTest_Test_Start -(I) @LINE: 434 +(I) @LINE: 452 >>> Processing Test Case: getAvailableQueueCount_Nominal_Path -(S) @LINE: 438 +(S) @LINE: 456 >>> Processed Test Case: getAvailableQueueCount_Nominal_Path -(I) @LINE: 446 +(I) @LINE: 464 >>> Processing Test Case: getBootloaderFlag -(S) @LINE: 450 +(S) @LINE: 468 >>> Processed Test Case: getBootloaderFlag -(I) @LINE: 458 +(I) @LINE: 476 >>> Processing Test Case: getCalibrationData_Buffer_NULL -(S) @LINE: 461 +(S) @LINE: 479 >>> Processed Test Case: getCalibrationData_Buffer_NULL -(I) @LINE: 467 +(I) @LINE: 485 >>> Processing Test Case: getCalibrationData_RecordInvalid -(S) @LINE: 488 +(S) @LINE: 506 >>> Processed Test Case: getCalibrationData_RecordInvalid -(I) @LINE: 494 +(I) @LINE: 512 >>> Processing Test Case: getCalibrationData_RecordValid -(S) @LINE: 515 +(S) @LINE: 533 >>> Processed Test Case: getCalibrationData_RecordValid -(I) @LINE: 523 +(I) @LINE: 541 >>> Processing Test Case: getDisinfectionDate_Buffer_NULL -(S) @LINE: 536 +(S) @LINE: 554 >>> Processed Test Case: getDisinfectionDate_Buffer_NULL -(I) @LINE: 542 +(I) @LINE: 560 >>> Processing Test Case: getDisinfectionDate_Buffer_Not_NULL -(S) @LINE: 566 +(S) @LINE: 584 >>> Processed Test Case: getDisinfectionDate_Buffer_Not_NULL -(I) @LINE: 574 +(I) @LINE: 592 >>> Processing Test Case: getMfgData_Buffer_NULL -(S) @LINE: 583 +(S) @LINE: 601 >>> Processed Test Case: getMfgData_Buffer_NULL -(I) @LINE: 589 +(I) @LINE: 607 >>> Processing Test Case: getMfgData_Buffer_Not_NULL -(S) @LINE: 608 +(S) @LINE: 626 >>> Processed Test Case: getMfgData_Buffer_Not_NULL -(I) @LINE: 616 +(I) @LINE: 634 >>> Processing Test Case: getServiceDate_Buffer_NULL -(S) @LINE: 623 +(S) @LINE: 641 >>> Processed Test Case: getServiceDate_Buffer_NULL -(I) @LINE: 629 +(I) @LINE: 647 >>> Processing Test Case: getServiceDate_Buffer_Not_NULL -(S) @LINE: 643 +(S) @LINE: 661 >>> Processed Test Case: getServiceDate_Buffer_Not_NULL -(I) @LINE: 651 +(I) @LINE: 669 >>> Processing Test Case: getTreatmentTime_Nominal_Path -(S) @LINE: 655 +(S) @LINE: 673 >>> Processed Test Case: getTreatmentTime_Nominal_Path -(I) @LINE: 663 +(I) @LINE: 681 >>> Processing Test Case: getWaterConsumption_Nominal_Path -(S) @LINE: 666 +(S) @LINE: 684 >>> Processed Test Case: getWaterConsumption_Nominal_Path -(I) @LINE: 674 +(I) @LINE: 692 >>> Processing Test Case: handleExecEraseState_FSM_Busy_No_Timeout -(S) @LINE: 679 +(S) @LINE: 697 >>> Processed Test Case: handleExecEraseState_FSM_Busy_No_Timeout -(I) @LINE: 685 +(I) @LINE: 703 >>> Processing Test Case: handleExecEraseState_FSM_Busy_Timeout -(S) @LINE: 690 +(S) @LINE: 708 >>> Processed Test Case: handleExecEraseState_FSM_Busy_Timeout -(I) @LINE: 696 +(I) @LINE: 714 >>> Processing Test Case: handleExecEraseState_FSM_Ready_No_Timeout -(S) @LINE: 701 +(S) @LINE: 719 >>> Processed Test Case: handleExecEraseState_FSM_Ready_No_Timeout -(I) @LINE: 709 +(I) @LINE: 727 >>> Processing Test Case: handleExecIdleState_Default -(S) @LINE: 712 +(S) @LINE: 730 >>> Processed Test Case: handleExecIdleState_Default -(I) @LINE: 718 +(I) @LINE: 736 >>> Processing Test Case: handleExecIdleState_Queue_Empty -(S) @LINE: 722 +(S) @LINE: 740 >>> Processed Test Case: handleExecIdleState_Queue_Empty -(I) @LINE: 728 +(I) @LINE: 746 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Default_Mem_Default_Location -(S) @LINE: 736 +(S) @LINE: 754 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Default_Mem_Default_Location -(I) @LINE: 742 +(I) @LINE: 760 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Default_Mem_RTC -(S) @LINE: 750 +(S) @LINE: 768 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Default_Mem_RTC -(I) @LINE: 756 +(I) @LINE: 774 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Erase_EEPROM -(S) @LINE: 762 +(S) @LINE: 780 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Erase_EEPROM -(I) @LINE: 768 +(I) @LINE: 786 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Read_Default_Location -(S) @LINE: 776 +(S) @LINE: 794 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Read_Default_Location -(I) @LINE: 782 +(I) @LINE: 800 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Read_EEPROM -(S) @LINE: 789 +(S) @LINE: 807 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Read_EEPROM -(I) @LINE: 795 +(I) @LINE: 813 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Read_RTC_Busy -(S) @LINE: 803 +(S) @LINE: 821 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Read_RTC_Busy -(I) @LINE: 809 +(I) @LINE: 827 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Read_RTC_Ready -(S) @LINE: 819 +(S) @LINE: 837 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Read_RTC_Ready -(I) @LINE: 825 +(I) @LINE: 843 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Write_EEPROM -(S) @LINE: 831 +(S) @LINE: 849 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Write_EEPROM -(I) @LINE: 837 +(I) @LINE: 855 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Write_EEPROM_Default_Location -(S) @LINE: 845 +(S) @LINE: 863 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Write_EEPROM_Default_Location -(I) @LINE: 851 +(I) @LINE: 869 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Write_RTC_Busy -(S) @LINE: 858 +(S) @LINE: 876 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Write_RTC_Busy -(I) @LINE: 864 +(I) @LINE: 882 >>> Processing Test Case: handleExecIdleState_Queue_Not_Empty_Write_RTC_Ready -(E) @LINE: 873 TEST.ATTRIBUTES:NVDataMgmt.<>.jobQueue[0].startAddress[0]:INPUT_BASE=16 - >>> Unexpected array index '[0]' given for non-array type. The script line will be ignored. -(S) @LINE: 874 +(E) Errors from previous script import(s) + >>> (E) @LINE: 873 TEST.ATTRIBUTES:NVDataMgmt.<>.jobQueue[0].startAddress[0]:INPUT_BASE=16 + >>> >>> Unexpected array index '[0]' given for non-array type. The script line will be ignored. +(S) @LINE: 895 >>> Processed Test Case: handleExecIdleState_Queue_Not_Empty_Write_RTC_Ready -(I) @LINE: 882 +(I) @LINE: 903 >>> Processing Test Case: handleExecReadFromEEPROMState_FSM_Busy_No_Timeout -(S) @LINE: 887 +(S) @LINE: 908 >>> Processed Test Case: handleExecReadFromEEPROMState_FSM_Busy_No_Timeout -(I) @LINE: 893 +(I) @LINE: 914 >>> Processing Test Case: handleExecReadFromEEPROMState_FSM_Busy_Timeout -(S) @LINE: 899 +(S) @LINE: 920 >>> Processed Test Case: handleExecReadFromEEPROMState_FSM_Busy_Timeout -(I) @LINE: 905 +(I) @LINE: 926 >>> Processing Test Case: handleExecReadFromEEPROMState_FSM_Ready_No_Timeout -(S) @LINE: 911 +(S) @LINE: 932 >>> Processed Test Case: handleExecReadFromEEPROMState_FSM_Ready_No_Timeout -(I) @LINE: 919 +(I) @LINE: 940 >>> Processing Test Case: handleExecReadFromRAMState_RAM_Status_Not_Idle_No_Timeout -(S) @LINE: 924 +(S) @LINE: 945 >>> Processed Test Case: handleExecReadFromRAMState_RAM_Status_Not_Idle_No_Timeout -(I) @LINE: 930 +(I) @LINE: 951 >>> Processing Test Case: handleExecReadFromRAMState_RAM_Status_Not_Idle_Timeout -(S) @LINE: 936 +(S) @LINE: 957 >>> Processed Test Case: handleExecReadFromRAMState_RAM_Status_Not_Idle_Timeout -(I) @LINE: 944 +(I) @LINE: 965 >>> Processing Test Case: handleExecWaitForPostState_Self_Test_Complete -(S) @LINE: 948 +(S) @LINE: 969 >>> Processed Test Case: handleExecWaitForPostState_Self_Test_Complete -(I) @LINE: 954 +(I) @LINE: 975 >>> Processing Test Case: handleExecWaitForPostState_Self_Test_Not_Complete -(S) @LINE: 958 +(S) @LINE: 979 >>> Processed Test Case: handleExecWaitForPostState_Self_Test_Not_Complete -(I) @LINE: 966 +(I) @LINE: 987 >>> Processing Test Case: handleExecWriteToEEPROMState_FSM_Busy_No_Timeout -(S) @LINE: 971 +(S) @LINE: 992 >>> Processed Test Case: handleExecWriteToEEPROMState_FSM_Busy_No_Timeout -(I) @LINE: 977 +(I) @LINE: 998 >>> Processing Test Case: handleExecWriteToEEPROMState_FSM_Busy_Timeout -(S) @LINE: 982 +(S) @LINE: 1003 >>> Processed Test Case: handleExecWriteToEEPROMState_FSM_Busy_Timeout -(I) @LINE: 988 +(I) @LINE: 1009 >>> Processing Test Case: handleExecWriteToEEPROMState_FSM_Ready_No_Timeout -(S) @LINE: 993 +(S) @LINE: 1014 >>> Processed Test Case: handleExecWriteToEEPROMState_FSM_Ready_No_Timeout -(I) @LINE: 1001 +(I) @LINE: 1022 >>> Processing Test Case: handleExecWriteToRAMState_RAM_Status_Not_Idle_No_Timeout -(S) @LINE: 1006 +(S) @LINE: 1027 >>> Processed Test Case: handleExecWriteToRAMState_RAM_Status_Not_Idle_No_Timeout -(I) @LINE: 1012 +(I) @LINE: 1033 >>> Processing Test Case: handleExecWriteToRAMState_RAM_Status_Not_Idle_Timeout -(S) @LINE: 1017 +(S) @LINE: 1038 >>> Processed Test Case: handleExecWriteToRAMState_RAM_Status_Not_Idle_Timeout -(I) @LINE: 1025 +(I) @LINE: 1046 >>> Processing Test Case: handleSelfTestCheckCRC_CRC_Pass -(S) @LINE: 1039 +(S) @LINE: 1060 >>> Processed Test Case: handleSelfTestCheckCRC_CRC_Pass -(I) @LINE: 1045 +(I) @LINE: 1066 >>> Processing Test Case: handleSelfTestCheckCRC_Timeout_Fail -(S) @LINE: 1059 +(S) @LINE: 1080 >>> Processed Test Case: handleSelfTestCheckCRC_Timeout_Fail -(I) @LINE: 1065 +(I) @LINE: 1086 >>> Processing Test Case: hanldleSelfTestCheckCRC_CRC_Fail -(S) @LINE: 1073 +(S) @LINE: 1094 >>> Processed Test Case: hanldleSelfTestCheckCRC_CRC_Fail -(I) @LINE: 1081 +(I) @LINE: 1102 >>> Processing Test Case: heandleSetTestEnableEEPROM_FSM_Busy_No_Timeout -(I) @LINE: 1082 +(I) @LINE: 1103 >>> 'false' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 1086 +(S) @LINE: 1107 >>> Processed Test Case: heandleSetTestEnableEEPROM_FSM_Busy_No_Timeout -(I) @LINE: 1092 +(I) @LINE: 1113 >>> Processing Test Case: heandleSetTestEnableEEPROM_FSM_Busy_Timeout_RAM_State_Not_Ready -(I) @LINE: 1093 +(I) @LINE: 1114 >>> 'false' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 1098 +(S) @LINE: 1119 >>> Processed Test Case: heandleSetTestEnableEEPROM_FSM_Busy_Timeout_RAM_State_Not_Ready -(I) @LINE: 1104 +(I) @LINE: 1125 >>> Processing Test Case: heandleSetTestEnableEEPROM_FSM_Ready_RAM_State_Ready -(S) @LINE: 1112 +(S) @LINE: 1133 >>> Processed Test Case: heandleSetTestEnableEEPROM_FSM_Ready_RAM_State_Ready -(I) @LINE: 1120 +(I) @LINE: 1141 >>> Processing Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Idle_RAM_State_Busy -(S) @LINE: 1126 +(S) @LINE: 1147 >>> Processed Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Idle_RAM_State_Busy -(I) @LINE: 1132 +(I) @LINE: 1153 >>> Processing Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Idle_RAM_State_Ready -(S) @LINE: 1139 +(S) @LINE: 1160 >>> Processed Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Idle_RAM_State_Ready -(I) @LINE: 1145 +(I) @LINE: 1166 >>> Processing Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Not_Idle_No_Timeout -(S) @LINE: 1150 +(S) @LINE: 1171 >>> Processed Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Not_Idle_No_Timeout -(I) @LINE: 1156 +(I) @LINE: 1177 >>> Processing Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Not_Idle_Timeout_RAM_State_Ready -(S) @LINE: 1165 +(S) @LINE: 1186 >>> Processed Test Case: handleSelfTestsReadBootloaderFlag_RAM_Status_Not_Idle_Timeout_RAM_State_Ready -(I) @LINE: 1173 +(I) @LINE: 1194 >>> Processing Test Case: handleSelfTestReadCalibrationRecord_FSM_Busy_No_Timeout -(S) @LINE: 1178 +(S) @LINE: 1199 >>> Processed Test Case: handleSelfTestReadCalibrationRecord_FSM_Busy_No_Timeout -(I) @LINE: 1184 +(I) @LINE: 1205 >>> Processing Test Case: handleSelfTestReadCalibrationRecord_FSM_Busy_Timeout_RAM_State_Ready -(S) @LINE: 1191 +(S) @LINE: 1212 >>> Processed Test Case: handleSelfTestReadCalibrationRecord_FSM_Busy_Timeout_RAM_State_Ready -(I) @LINE: 1197 +(I) @LINE: 1218 >>> Processing Test Case: handleSelfTestReadCalibrationRecord_FSM_Ready_No_Timeout_RAM_State_Not_Ready -(S) @LINE: 1203 +(S) @LINE: 1224 >>> Processed Test Case: handleSelfTestReadCalibrationRecord_FSM_Ready_No_Timeout_RAM_State_Not_Ready -(I) @LINE: 1209 +(I) @LINE: 1230 >>> Processing Test Case: handleSelfTestReadCalibrationRecord_FSM_Ready_No_Timeout_RAM_State_Ready -(S) @LINE: 1216 +(S) @LINE: 1237 >>> Processed Test Case: handleSelfTestReadCalibrationRecord_FSM_Ready_No_Timeout_RAM_State_Ready -(I) @LINE: 1224 +(I) @LINE: 1245 >>> Processing Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Idle_RAM_State_Busy -(S) @LINE: 1230 +(S) @LINE: 1251 >>> Processed Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Idle_RAM_State_Busy -(I) @LINE: 1236 +(I) @LINE: 1257 >>> Processing Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Idle_RAM_State_Ready -(S) @LINE: 1243 +(S) @LINE: 1264 >>> Processed Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Idle_RAM_State_Ready -(I) @LINE: 1249 +(I) @LINE: 1270 >>> Processing Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Not_Idle_RAM_State_Busy_Timeout -(S) @LINE: 1255 +(S) @LINE: 1276 >>> Processed Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Not_Idle_RAM_State_Busy_Timeout -(I) @LINE: 1261 +(I) @LINE: 1282 >>> Processing Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Not_Idle_RAM_State_Ready -(S) @LINE: 1267 +(S) @LINE: 1288 >>> Processed Test Case: handleSelfTestReadDGWaterConsumption_RAM_Status_Not_Idle_RAM_State_Ready -(I) @LINE: 1275 +(I) @LINE: 1296 >>> Processing Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Idle_RAM_State_Busy -(S) @LINE: 1282 +(S) @LINE: 1303 >>> Processed Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Idle_RAM_State_Busy -(I) @LINE: 1288 +(I) @LINE: 1309 >>> Processing Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Idle_RAM_State_Ready -(S) @LINE: 1297 +(S) @LINE: 1318 >>> Processed Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Idle_RAM_State_Ready -(I) @LINE: 1303 +(I) @LINE: 1324 >>> Processing Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Not_Idle_RAM_State_Busy_Timeout -(S) @LINE: 1309 +(S) @LINE: 1330 >>> Processed Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Not_Idle_RAM_State_Busy_Timeout -(I) @LINE: 1315 +(I) @LINE: 1336 >>> Processing Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Not_Idle_RAM_State_Ready -(S) @LINE: 1321 +(S) @LINE: 1342 >>> Processed Test Case: handleSelfTestReadHDTreatmentTime_RAM_Status_Not_Idle_RAM_State_Ready -(I) @LINE: 1329 +(I) @LINE: 1350 >>> Processing Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Idle_No_Timeout -(S) @LINE: 1335 +(S) @LINE: 1356 >>> Processed Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Idle_No_Timeout -(I) @LINE: 1341 +(I) @LINE: 1362 >>> Processing Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Not_Idle_No_Timeout -(S) @LINE: 1346 +(S) @LINE: 1367 >>> Processed Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Not_Idle_No_Timeout -(I) @LINE: 1352 +(I) @LINE: 1373 >>> Processing Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Not_Idle_Timeout -(S) @LINE: 1357 +(S) @LINE: 1378 >>> Processed Test Case: handleSelfTestReadLastDisinfectionDate_RAM_Status_Not_Idle_Timeout -(I) @LINE: 1365 +(I) @LINE: 1386 >>> Processing Test Case: handleSelfTestReadLogRecord_RAM_Status_Idle -(S) @LINE: 1371 +(S) @LINE: 1392 >>> Processed Test Case: handleSelfTestReadLogRecord_RAM_Status_Idle -(I) @LINE: 1377 +(I) @LINE: 1398 >>> Processing Test Case: handleSelfTestReadLogRecord_RAM_Status_Not_Idle_Not_Timeout -(S) @LINE: 1382 +(S) @LINE: 1403 >>> Processed Test Case: handleSelfTestReadLogRecord_RAM_Status_Not_Idle_Not_Timeout -(I) @LINE: 1388 +(I) @LINE: 1409 >>> Processing Test Case: handleSelfTestReadLogRecord_RAM_Status_Not_Idle_Timeout -(S) @LINE: 1394 +(S) @LINE: 1415 >>> Processed Test Case: handleSelfTestReadLogRecord_RAM_Status_Not_Idle_Timeout -(I) @LINE: 1402 +(I) @LINE: 1423 >>> Processing Test Case: handleSelfTestReadMfgRecord_FSM_Busy_No_Timeout -(S) @LINE: 1407 +(S) @LINE: 1428 >>> Processed Test Case: handleSelfTestReadMfgRecord_FSM_Busy_No_Timeout -(I) @LINE: 1413 +(I) @LINE: 1434 >>> Processing Test Case: handleSelfTestReadMfgRecord_FSM_Busy_Timeout -(S) @LINE: 1418 +(S) @LINE: 1439 >>> Processed Test Case: handleSelfTestReadMfgRecord_FSM_Busy_Timeout -(I) @LINE: 1424 +(I) @LINE: 1445 >>> Processing Test Case: handleSelfTestReadMfgRecord_FSM_Ready_No_Timeout -(S) @LINE: 1429 +(S) @LINE: 1450 >>> Processed Test Case: handleSelfTestReadMfgRecord_FSM_Ready_No_Timeout -(I) @LINE: 1437 +(I) @LINE: 1458 >>> Processing Test Case: handleSelfTestReadServiceRecord_RAM_Status_Idle_No_Timeout_RAM_State_Ready -(S) @LINE: 1446 +(S) @LINE: 1467 >>> Processed Test Case: handleSelfTestReadServiceRecord_RAM_Status_Idle_No_Timeout_RAM_State_Ready -(I) @LINE: 1452 +(I) @LINE: 1473 >>> Processing Test Case: handleSelfTestReadServiceRecord_RAM_Status_Not_Idle_No_Timeout -(S) @LINE: 1457 +(S) @LINE: 1478 >>> Processed Test Case: handleSelfTestReadServiceRecord_RAM_Status_Not_Idle_No_Timeout -(I) @LINE: 1463 +(I) @LINE: 1484 >>> Processing Test Case: handleSelfTestReadServiceRecord_RAM_Status_Not_Idle_Timeout_RAM_State_Not_Ready -(S) @LINE: 1469 +(S) @LINE: 1490 >>> Processed Test Case: handleSelfTestReadServiceRecord_RAM_Status_Not_Idle_Timeout_RAM_State_Not_Ready -(I) @LINE: 1477 +(I) @LINE: 1498 >>> Processing Test Case: handleSelfTestStart_Start -(S) @LINE: 1480 +(S) @LINE: 1501 >>> Processed Test Case: handleSelfTestStart_Start -(I) @LINE: 1488 +(I) @LINE: 1509 >>> Processing Test Case: initNVDataMgmt_Nominal_Path -(S) @LINE: 1501 +(S) @LINE: 1522 >>> Processed Test Case: initNVDataMgmt_Nominal_Path -(I) @LINE: 1509 +(I) @LINE: 1530 >>> Processing Test Case: isQueueEmpty_isQueueEmpty_False -(S) @LINE: 1513 +(S) @LINE: 1534 >>> Processed Test Case: isQueueEmpty_isQueueEmpty_False -(I) @LINE: 1519 +(I) @LINE: 1540 >>> Processing Test Case: isQueueEmpty_isQueueEmpty_True -(S) @LINE: 1523 +(S) @LINE: 1544 >>> Processed Test Case: isQueueEmpty_isQueueEmpty_True -(I) @LINE: 1531 +(I) @LINE: 1552 >>> Processing Test Case: isQueueFull_isQueueFull_False -(S) @LINE: 1535 +(S) @LINE: 1556 >>> Processed Test Case: isQueueFull_isQueueFull_False -(I) @LINE: 1541 +(I) @LINE: 1562 >>> Processing Test Case: isQueueFull_isQueueFull_True -(S) @LINE: 1545 +(S) @LINE: 1566 >>> Processed Test Case: isQueueFull_isQueueFull_True -(I) @LINE: 1553 +(I) @LINE: 1574 >>> Processing Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Not_Zero_Header_Not_Corrupted -(S) @LINE: 1559 +(S) @LINE: 1580 >>> Processed Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Not_Zero_Header_Not_Corrupted -(I) @LINE: 1565 +(I) @LINE: 1586 >>> Processing Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Wrap_Header_Corrupted_Erase -(S) @LINE: 1574 +(S) @LINE: 1595 >>> Processed Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Wrap_Header_Corrupted_Erase -(I) @LINE: 1580 +(I) @LINE: 1601 >>> Processing Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Wrap_Header_Corrupted_No_Erase -(S) @LINE: 1590 +(S) @LINE: 1611 >>> Processed Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Wrap_Header_Corrupted_No_Erase -(I) @LINE: 1596 +(I) @LINE: 1617 >>> Processing Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Zero_Header_Corrupted_Erase -(S) @LINE: 1605 +(S) @LINE: 1626 >>> Processed Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Zero_Header_Corrupted_Erase -(I) @LINE: 1611 +(I) @LINE: 1632 >>> Processing Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Zero_Header_Not_Corrupted -(S) @LINE: 1618 +(S) @LINE: 1639 >>> Processed Test Case: prepareReadLogJobAndGetStartAddress_NextReadIndex_Zero_Header_Not_Corrupted -(I) @LINE: 1626 +(I) @LINE: 1647 >>> Processing Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Not_Zero -(S) @LINE: 1638 +(S) @LINE: 1659 >>> Processed Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Not_Zero -(I) @LINE: 1644 +(I) @LINE: 1665 >>> Processing Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Not_Zero_Write_Wrap -(S) @LINE: 1656 +(S) @LINE: 1677 >>> Processed Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Not_Zero_Write_Wrap -(I) @LINE: 1662 +(I) @LINE: 1683 >>> Processing Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Zero_No_Write_Wrap -(S) @LINE: 1674 +(S) @LINE: 1695 >>> Processed Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Zero_No_Write_Wrap -(I) @LINE: 1680 +(I) @LINE: 1701 >>> Processing Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Zero_Write_Wrap -(S) @LINE: 1692 +(S) @LINE: 1713 >>> Processed Test Case: prepareWriteLogJobAndGetStartAddress_Modulus_Zero_Write_Wrap -(I) @LINE: 1700 +(I) @LINE: 1721 >>> Processing Test Case: readLogData_Min_Jobs_Available -(S) @LINE: 1704 +(S) @LINE: 1725 >>> Processed Test Case: readLogData_Min_Jobs_Available -(I) @LINE: 1710 +(I) @LINE: 1731 >>> Processing Test Case: readLogData_Min_Jobs_Not_Available -(S) @LINE: 1714 +(S) @LINE: 1735 >>> Processed Test Case: readLogData_Min_Jobs_Not_Available -(I) @LINE: 1722 +(I) @LINE: 1743 >>> Processing Test Case: setBootloaderFlag_Queue_Full -(S) @LINE: 1726 +(S) @LINE: 1747 >>> Processed Test Case: setBootloaderFlag_Queue_Full -(I) @LINE: 1732 +(I) @LINE: 1753 >>> Processing Test Case: setBootloaderFlag_Queue_Not_Full -(S) @LINE: 1736 +(S) @LINE: 1757 >>> Processed Test Case: setBootloaderFlag_Queue_Not_Full -(I) @LINE: 1744 +(I) @LINE: 1765 >>> Processing Test Case: setCalibrationData_Nominal_Path -(S) @LINE: 1766 +(S) @LINE: 1787 >>> Processed Test Case: setCalibrationData_Nominal_Path -(I) @LINE: 1774 +(I) @LINE: 1795 >>> Processing Test Case: setDisinfectionDate_Queue_Full -(S) @LINE: 1777 +(S) @LINE: 1798 >>> Processed Test Case: setDisinfectionDate_Queue_Full -(I) @LINE: 1783 +(I) @LINE: 1804 >>> Processing Test Case: setDisinfectionDate_Queue_Not_Full -(S) @LINE: 1786 +(S) @LINE: 1807 >>> Processed Test Case: setDisinfectionDate_Queue_Not_Full -(I) @LINE: 1794 +(I) @LINE: 1815 >>> Processing Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Not_Zero -(E) @LINE: 1795 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 1816 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1795 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 1843 >>> Processed Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Not_Zero -(I) @LINE: 1822 +(I) @LINE: 1849 >>> Processing Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Zero -(E) @LINE: 1823 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 1837 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1823 TEST.VALUE:NVDataMgmt.<>.jobQueue[0].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 1870 >>> Processed Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Zero -(I) @LINE: 1843 +(I) @LINE: 1876 >>> Processing Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Zero_Wrap -(E) @LINE: 1844 TEST.VALUE:NVDataMgmt.<>.jobQueue[19].startAddress:<> - >>> Value for 'numeric type' out of range - >>> Read "<>" - >>> Setting Value to "0" -(S) @LINE: 1865 +(E) Errors from previous script import(s) + >>> (E) @LINE: 1844 TEST.VALUE:NVDataMgmt.<>.jobQueue[19].startAddress:<> + >>> >>> Value for 'numeric type' out of range + >>> >>> Read "<>" + >>> >>> Setting Value to "0" +(S) @LINE: 1904 >>> Processed Test Case: setMemoryOpsStruct_Queue_Not_Full_Ext_Address_Zero_Wrap -(I) @LINE: 1873 +(I) @LINE: 1912 >>> Processing Test Case: setMfgData_Nominal_Path -(S) @LINE: 1883 +(S) @LINE: 1922 >>> Processed Test Case: setMfgData_Nominal_Path -(I) @LINE: 1891 +(I) @LINE: 1930 >>> Processing Test Case: setServiceDate_Queue_Full -(S) @LINE: 1934 +(S) @LINE: 1973 >>> Processed Test Case: setServiceDate_Queue_Full -(I) @LINE: 1940 +(I) @LINE: 1979 >>> Processing Test Case: setServiceDate_Queue_Not_Full -(S) @LINE: 1953 +(S) @LINE: 1992 >>> Processed Test Case: setServiceDate_Queue_Not_Full -(I) @LINE: 1961 +(I) @LINE: 2000 >>> Processing Test Case: setTreatmentTime_Queue_Full -(S) @LINE: 1967 +(S) @LINE: 2006 >>> Processed Test Case: setTreatmentTime_Queue_Full -(I) @LINE: 1973 +(I) @LINE: 2012 >>> Processing Test Case: setTreatmentTime_Queue_Not_Full -(S) @LINE: 1979 +(S) @LINE: 2018 >>> Processed Test Case: setTreatmentTime_Queue_Not_Full -(I) @LINE: 1987 +(I) @LINE: 2026 >>> Processing Test Case: setWaterConsumption_Queue_Full -(S) @LINE: 1993 +(S) @LINE: 2032 >>> Processed Test Case: setWaterConsumption_Queue_Full -(I) @LINE: 1999 +(I) @LINE: 2038 >>> Processing Test Case: setWaterConsumption_Queue_Not_Full -(S) @LINE: 2005 +(S) @LINE: 2044 >>> Processed Test Case: setWaterConsumption_Queue_Not_Full -(I) @LINE: 2013 +(I) @LINE: 2052 >>> Processing Test Case: signalPowerOffWarning_NominalPath -(S) @LINE: 2016 +(S) @LINE: 2055 >>> Processed Test Case: signalPowerOffWarning_NominalPath -(I) @LINE: 2024 +(I) @LINE: 2063 + >>> Processing Test Case: testResetCalibrationData_InvalidKey +(E) Errors from previous script import(s) + >>> (E) @LINE: 15 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:1.1 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 16 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 17 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.9 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 18 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:-5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min + >>> (E) @LINE: 25 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:1.1 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 26 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 27 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.9 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 28 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:-5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min +(S) @LINE: 2101 + >>> Processed Test Case: testResetCalibrationData_InvalidKey +(I) @LINE: 2107 + >>> Processing Test Case: testResetCalibrationData_NominalPath +(E) Errors from previous script import(s) + >>> (E) @LINE: 40 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:1.1 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 41 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 42 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.9 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 43 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:-5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min + >>> (E) @LINE: 50 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:0.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 51 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:0.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 52 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 53 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:0.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min +(S) @LINE: 2145 + >>> Processed Test Case: testResetCalibrationData_NominalPath +(I) @LINE: 2151 + >>> Processing Test Case: testResetCalibrationData_NotLoggedIn +(E) Errors from previous script import(s) + >>> (E) @LINE: 65 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:1.1 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 66 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 67 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.9 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 68 TEST.VALUE:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:-5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min + >>> (E) @LINE: 75 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowGain:1.1 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowGain + >>> (E) @LINE: 76 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.bloodFlowOffset_mL_min:5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: bloodFlowOffset_mL_min + >>> (E) @LINE: 77 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowGain:0.9 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowGain + >>> (E) @LINE: 78 TEST.EXPECTED:NVDataMgmt.<>.calibrationRecord.calData.dialysateFlowOffset_mL_min:-5.0 + >>> >>> Expected a field name from the record type calibration_Data + >>> >>> Read: dialysateFlowOffset_mL_min +(S) @LINE: 2189 + >>> Processed Test Case: testResetCalibrationData_NotLoggedIn +(I) @LINE: 2197 >>> Processing Test Case: writeLogData_Queue_Full_and_Log_Header_Not_Corrput -(S) @LINE: 2029 +(S) @LINE: 2202 >>> Processed Test Case: writeLogData_Queue_Full_and_Log_Header_Not_Corrput -(I) @LINE: 2035 +(I) @LINE: 2208 >>> Processing Test Case: writeLogData_Queue_Full_and_Log_Header_is_Corrput -(S) @LINE: 2040 +(S) @LINE: 2213 >>> Processed Test Case: writeLogData_Queue_Full_and_Log_Header_is_Corrput -(I) @LINE: 2046 +(I) @LINE: 2219 >>> Processing Test Case: writeLogData_Queue_Not_Full_and_Log_Header_Not_Corrput -(S) @LINE: 2051 +(S) @LINE: 2224 >>> Processed Test Case: writeLogData_Queue_Not_Full_and_Log_Header_Not_Corrput -(I) @LINE: 2057 +(I) @LINE: 2230 >>> Processing Test Case: writeLogData_Queue_Not_Full_and_Log_Header_is_Corrput -(S) @LINE: 2062 +(S) @LINE: 2235 >>> Processed Test Case: writeLogData_Queue_Not_Full_and_Log_Header_is_Corrput -(S) @LINE: 2062 +(S) @LINE: 2235 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-05 23:21:54 +TIME: 2020-12-09 08:34:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20408,6 +21469,28 @@ Processing Execution Data Updating Coverage Data Test Execution Complete + Running all NVDataMgmt.testResetCalibrationData test cases + Running: testResetCalibrationData_InvalidKey + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetCalibrationData_NominalPath + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete + Running: testResetCalibrationData_NotLoggedIn + Preparing Test Data + Running Test Case + Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT/UUT_INST + Processing Execution Data + Updating Coverage Data + Test Execution Complete Running all NVDataMgmt.setServiceDate test cases Running: setServiceDate_Queue_Full Preparing Test Data @@ -21413,7 +22496,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-05 23:21:58 +TIME: 2020-12-09 08:35:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG @@ -21446,9 +22529,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-05 23:22:01 +TIME: 2020-12-09 08:35:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21463,6 +22546,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 50 Processing script line 200 Processing script line 250 @@ -21602,9 +22688,24 @@ >>> Processed Test Case: StandbySoloMode (S) @LINE: 409 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 +TIME: 2020-12-09 08:35:05 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-05 23:22:02 +TIME: 2020-12-09 08:35:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21847,7 +22948,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:22:03 +TIME: 2020-12-09 08:35:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/CCAST_.CFG @@ -21882,7 +22983,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:22:06 +TIME: 2020-12-09 08:35:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21943,7 +23044,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:22:08 +TIME: 2020-12-09 08:35:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21958,7 +23059,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:22:08 +TIME: 2020-12-09 08:35:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22028,7 +23129,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-05 23:22:10 +TIME: 2020-12-09 08:35:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/CCAST_.CFG @@ -22061,9 +23162,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-05 23:22:13 +TIME: 2020-12-09 08:35:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22078,6 +23179,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -22191,9 +23295,24 @@ >>> Processed Test Case: runPIController_NominalPath (S) @LINE: 457 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 +TIME: 2020-12-09 08:35:18 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-05 23:22:14 +TIME: 2020-12-09 08:35:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22370,7 +23489,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-05 23:22:15 +TIME: 2020-12-09 08:35:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG @@ -22403,9 +23522,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-05 23:22:18 +TIME: 2020-12-09 08:35:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22420,6 +23539,9 @@ 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 @@ -22584,9 +23706,24 @@ >>> Processed Test Case: testSetPressuresDataPublishIntervalOverride_Override (S) @LINE: 575 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 +TIME: 2020-12-09 08:35:25 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-05 23:22:19 +TIME: 2020-12-09 08:35:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22865,7 +24002,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-05 23:22:21 +TIME: 2020-12-09 08:35:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG @@ -22898,9 +24035,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-05 23:22:23 +TIME: 2020-12-09 08:35:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -22915,6 +24052,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -23131,9 +24271,24 @@ >>> Processed Test Case: testSetReservoirFillVolumeMlOverride_NotLoggedIn (S) @LINE: 727 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 +TIME: 2020-12-09 08:35:32 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-05 23:22:24 +TIME: 2020-12-09 08:35:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23510,7 +24665,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:22:27 +TIME: 2020-12-09 08:35:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG @@ -23544,9 +24699,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:22:30 +TIME: 2020-12-09 08:35:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23561,6 +24716,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -23742,9 +24900,24 @@ >>> Processed Test Case: testSetTargetROPumpPressureOverride_Override (S) @LINE: 752 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 +TIME: 2020-12-09 08:35:40 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:22:31 +TIME: 2020-12-09 08:35:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23766,7 +24939,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/ROPUMP/ROPUMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:22:31 +TIME: 2020-12-09 08:35:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24086,7 +25259,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-05 23:22:33 +TIME: 2020-12-09 08:35:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/CCAST_.CFG @@ -24120,9 +25293,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-05 23:22:36 +TIME: 2020-12-09 08:35:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24137,6 +25310,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 100 Processing script line 150 Processing script line 200 @@ -24597,9 +25773,24 @@ >>> Processed Test Case: RAM_Not_Idle (S) @LINE: 1554 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e RTC test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 +TIME: 2020-12-09 08:35:49 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-05 23:22:38 +TIME: 2020-12-09 08:35:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25404,7 +26595,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-05 23:22:41 +TIME: 2020-12-09 08:35:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/CCAST_.CFG @@ -25438,9 +26629,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-05 23:22:44 +TIME: 2020-12-09 08:35:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25455,6 +26646,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 50 Script Creation Completed -------------------------------------------------------------------------------- @@ -25500,9 +26694,24 @@ >>> Processed Test Case: testSetSafetyShutdownOverride_NotLoggedIn (S) @LINE: 138 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 +TIME: 2020-12-09 08:35:58 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-05 23:22:45 +TIME: 2020-12-09 08:35:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25582,7 +26791,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-05 23:22:46 +TIME: 2020-12-09 08:36:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/CCAST_.CFG @@ -25615,9 +26824,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-05 23:22:50 +TIME: 2020-12-09 08:36:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25632,9 +26841,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 @@ -26070,7 +27276,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-05 23:22:52 +TIME: 2020-12-09 08:36:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26796,7 +28002,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:22:55 +TIME: 2020-12-09 08:36:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/CCAST_.CFG @@ -26830,9 +28036,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:22:59 +TIME: 2020-12-09 08:36:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26847,9 +28053,6 @@ Opening Types File Environment is Open Processing Script File - Test Script Maintenance Started - Test Script Maintenance Complete (1) - Translated 0 script lines Processing script line 50 Processing script line 100 Processing script line 150 @@ -27559,7 +28762,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES tools import_coverage /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:23:02 +TIME: 2020-12-09 08:36:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -27581,7 +28784,7 @@ >>> File processing completed for /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/environment/SYSTEMCOMMMESSAGES/SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:23:03 +TIME: 2020-12-09 08:36:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28701,7 +29904,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-05 23:23:08 +TIME: 2020-12-09 08:36:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/CCAST_.CFG @@ -28734,9 +29937,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-05 23:23:10 +TIME: 2020-12-09 08:36:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28751,6 +29954,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28763,9 +29969,24 @@ >>> Processed Test Case: taskBackground_NominalPath (S) @LINE: 25 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 +TIME: 2020-12-09 08:36:23 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-05 23:23:11 +TIME: 2020-12-09 08:36:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28785,7 +30006,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-05 23:23:12 +TIME: 2020-12-09 08:36:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/CCAST_.CFG @@ -28818,9 +30039,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-05 23:23:15 +TIME: 2020-12-09 08:36:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28835,6 +30056,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (10) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28847,9 +30071,24 @@ >>> Processed Test Case: taskGeneral_NominalPath (S) @LINE: 26 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 +TIME: 2020-12-09 08:36:29 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-05 23:23:16 +TIME: 2020-12-09 08:36:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28869,7 +30108,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-05 23:23:17 +TIME: 2020-12-09 08:36:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/CCAST_.CFG @@ -28902,9 +30141,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-05 23:23:20 +TIME: 2020-12-09 08:36:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28919,6 +30158,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (7) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -28931,9 +30173,24 @@ >>> Processed Test Case: taskPriority_NominalPath (S) @LINE: 26 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 +TIME: 2020-12-09 08:36:36 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-05 23:23:20 +TIME: 2020-12-09 08:36:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -28953,7 +30210,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-05 23:23:21 +TIME: 2020-12-09 08:36:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG @@ -28986,9 +30243,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-05 23:23:24 +TIME: 2020-12-09 08:36:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29003,6 +30260,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (0) + Translated 0 script lines Script Creation Completed -------------------------------------------------------------------------------- Test Script Log @@ -29015,9 +30275,24 @@ >>> Processed Test Case: taskTimer_NominalPath (S) @LINE: 26 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 +TIME: 2020-12-09 08:36:41 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-05 23:23:25 +TIME: 2020-12-09 08:36:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29037,7 +30312,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:23:26 +TIME: 2020-12-09 08:36:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG @@ -29070,9 +30345,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:23:29 +TIME: 2020-12-09 08:36:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29087,9 +30362,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 250 @@ -29101,11 +30373,9 @@ Processing script line 600 Processing script line 650 Processing script line 700 + Processing script line 800 Processing script line 850 Processing script line 900 - Processing script line 950 - Processing script line 1000 - Processing script line 1050 Processing script line 1100 Processing script line 1150 Script Creation Completed @@ -29239,141 +30509,118 @@ (S) @LINE: 767 >>> Processed Test Case: isADCReadValid_FPGA_Error_Not_Zero (I) @LINE: 773 - >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(S) @LINE: 781 - >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev -(I) @LINE: 787 - >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(S) @LINE: 795 - >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev -(I) @LINE: 801 - >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(S) @LINE: 812 - >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed -(I) @LINE: 818 + >>> Processing Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Not_Equal_To_Prev +(S) @LINE: 785 + >>> Processed Test Case: isADCReadValid_FPGA_No_Error_FPGA_Count_Not_Equal_To_Prev +(I) @LINE: 791 >>> Processing Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(S) @LINE: 826 +(S) @LINE: 803 >>> Processed Test Case: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max -(I) @LINE: 834 +(I) @LINE: 811 >>> Processing Test Case: processADCRead_Index_Wrap_Inlet_Primary_Case_Group -(S) @LINE: 838 +(S) @LINE: 815 >>> Range Value Command VARY FROM:0 TO:9 BY: 1 >>> Results in 10 Iterations. -(S) @LINE: 842 +(S) @LINE: 819 >>> Processed Test Case: processADCRead_Index_Wrap_Inlet_Primary_Case_Group -(I) @LINE: 848 +(I) @LINE: 825 >>> Processing Test Case: processADCRead_No_Index_Wrap_Default -(I) @LINE: 853 +(I) @LINE: 830 >>> 'SW_FAULT_ID_INVALID_TEMPERATURE_SENSOR_SELECTED' was specified as a macro, but it is in the symbol dictionary. -(S) @LINE: 856 +(S) @LINE: 833 >>> Processed Test Case: processADCRead_No_Index_Wrap_Default -(I) @LINE: 862 +(I) @LINE: 839 >>> Processing Test Case: processADCRead_No_Index_Wrap_FPGA_Board -(S) @LINE: 873 +(S) @LINE: 850 >>> Processed Test Case: processADCRead_No_Index_Wrap_FPGA_Board -(I) @LINE: 879 +(I) @LINE: 856 >>> Processing Test Case: processADCRead_No_Index_Wrap_Load_Cell_Group -(S) @LINE: 885 +(S) @LINE: 862 >>> Range Value Command VARY FROM:13 TO:17 BY: 1 >>> Results in 5 Iterations. -(S) @LINE: 890 +(S) @LINE: 867 >>> Processed Test Case: processADCRead_No_Index_Wrap_Load_Cell_Group -(I) @LINE: 898 +(I) @LINE: 875 >>> Processing Test Case: processHtrsTempSnsrsADCRead_Load_Cell_A2 -(S) @LINE: 909 +(S) @LINE: 886 >>> Processed Test Case: processHtrsTempSnsrsADCRead_Load_Cell_A2 -(I) @LINE: 915 +(I) @LINE: 892 >>> Processing Test Case: processHtrsTempSnsrsADCRead_Primay_CJ -(S) @LINE: 925 +(S) @LINE: 902 >>> Processed Test Case: processHtrsTempSnsrsADCRead_Primay_CJ -(I) @LINE: 931 +(I) @LINE: 908 >>> Processing Test Case: processHtrsTempSnsrsADCRead_Primay_TC -(S) @LINE: 941 +(S) @LINE: 918 >>> Processed Test Case: processHtrsTempSnsrsADCRead_Primay_TC -(I) @LINE: 947 +(I) @LINE: 924 >>> Processing Test Case: processHtrsTempSnsrsADCRead_Trimmer_CJ -(S) @LINE: 957 +(S) @LINE: 934 >>> Processed Test Case: processHtrsTempSnsrsADCRead_Trimmer_CJ -(I) @LINE: 963 +(I) @LINE: 940 >>> Processing Test Case: processHtrsTempSnsrsADCRead_Trimmer_TC_FPGA_Error -(S) @LINE: 971 +(S) @LINE: 949 >>> Processed Test Case: processHtrsTempSnsrsADCRead_Trimmer_TC_FPGA_Error -(I) @LINE: 979 +(I) @LINE: 957 >>> Processing Test Case: processTempSnsrsADCRead_FPGA_Error -(S) @LINE: 988 +(S) @LINE: 966 >>> Processed Test Case: processTempSnsrsADCRead_FPGA_Error -(I) @LINE: 994 +(I) @LINE: 972 >>> Processing Test Case: processTempSnsrsADCRead_No_FPGA_Error -(S) @LINE: 1001 +(S) @LINE: 979 >>> Processed Test Case: processTempSnsrsADCRead_No_FPGA_Error -(I) @LINE: 1009 +(I) @LINE: 987 >>> Processing Test Case: publishTemperatureSensorsData_Time_Elapsed -(S) @LINE: 1020 +(S) @LINE: 998 >>> Processed Test Case: publishTemperatureSensorsData_Time_Elapsed -(I) @LINE: 1026 +(I) @LINE: 1004 >>> Processing Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(S) @LINE: 1031 +(S) @LINE: 1009 >>> Processed Test Case: publishTemperatureSensorsData_Time_Not_Elapsed -(I) @LINE: 1039 +(I) @LINE: 1017 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 1044 +(S) @LINE: 1022 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 1050 +(I) @LINE: 1028 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 1060 +(S) @LINE: 1038 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 1066 +(I) @LINE: 1044 >>> Processing Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 1071 +(S) @LINE: 1049 >>> Processed Test Case: testResetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 1079 +(I) @LINE: 1057 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(S) @LINE: 1088 +(S) @LINE: 1066 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Active -(I) @LINE: 1094 +(I) @LINE: 1072 >>> Processing Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(S) @LINE: 1103 +(S) @LINE: 1081 >>> Processed Test Case: testResetTemperatureSensorsPublishIntervalOverride._Log_Not_Active -(I) @LINE: 1111 +(I) @LINE: 1089 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(S) @LINE: 1116 +(S) @LINE: 1094 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Sensor_Not_In_Range -(I) @LINE: 1122 +(I) @LINE: 1100 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(S) @LINE: 1130 +(S) @LINE: 1108 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Activated -(I) @LINE: 1136 +(I) @LINE: 1114 >>> Processing Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(S) @LINE: 1142 +(S) @LINE: 1120 >>> Processed Test Case: testSetMeasuredTemperatureOverride_Test_Not_Activated -(I) @LINE: 1150 +(I) @LINE: 1128 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(S) @LINE: 1159 +(S) @LINE: 1137 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Active -(I) @LINE: 1165 +(I) @LINE: 1143 >>> Processing Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 1174 +(S) @LINE: 1152 >>> Processed Test Case: testSetTemperatureSensorsPublishIntervalOverride_Log_Not_Active -(S) @LINE: 1174 +(S) @LINE: 1152 >>> Script processing completed -COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS.tst -DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:23:31 -TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite -VectorCAST Copyright (C) 1993 - 2020 -**Version 19.sp3 (11/13/19) - Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/CCAST_.CFG - Opening Environment - Opening Parameter/Global File - Opening Types File - Environment is Open - Creating Script File - Building Test Case Script - Test Case Script Created - Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:23:32 +TIME: 2020-12-09 08:36:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29574,27 +30821,13 @@ Processing Execution Data Updating Coverage Data Test Execution Complete - Running: isADCReadValid_FPGA_No_Error_FPGA_Count_Greater_Than_Prev + Running: isADCReadValid_FPGA_No_Error_FPGA_Count_Not_Equal_To_Prev Preparing Test Data Running Test Case Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST Processing Execution Data Updating Coverage Data Test Execution Complete - Running: isADCReadValid_FPGA_No_Error_FPGA_Count_Less_Than_Prev - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete - Running: isADCReadValid_FPGA_Read_Count_Not_Changed - Preparing Test Data - Running Test Case - Running Test with command: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS/UUT_INST - Processing Execution Data - Updating Coverage Data - Test Execution Complete Running: isADCReadValid_FPGA_Read_Count_Not_Changed_Internal_Error_Count_Max Preparing Test Data Running Test Case @@ -29812,7 +31045,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:23:34 +TIME: 2020-12-09 08:36:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/CCAST_.CFG @@ -29847,7 +31080,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:23:37 +TIME: 2020-12-09 08:36:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -29863,7 +31096,7 @@ Environment is Open Processing Script File Test Script Maintenance Started - Test Script Maintenance Complete (1) + Test Script Maintenance Complete (0) Translated 0 script lines Processing script line 50 Processing script line 100 @@ -29872,6 +31105,7 @@ Processing script line 250 Processing script line 300 Processing script line 350 + Processing script line 400 Processing script line 500 Processing script line 550 Script Creation Completed @@ -29970,73 +31204,73 @@ >>> Processed Test Case: initThermistors_NominalPath (I) @LINE: 346 >>> Processing Test Case: monitorThermistors_Temperature_Out_Of_Lower_Range -(S) @LINE: 364 +(S) @LINE: 359 >>> Processed Test Case: monitorThermistors_Temperature_Out_Of_Lower_Range -(I) @LINE: 370 +(I) @LINE: 365 >>> Processing Test Case: monitorThermistors_Temperature_Out_Of_Upper_Range -(S) @LINE: 388 +(S) @LINE: 383 >>> Processed Test Case: monitorThermistors_Temperature_Out_Of_Upper_Range -(I) @LINE: 396 +(I) @LINE: 391 >>> Processing Test Case: publishThermistorsData_Not_Publish_Time -(S) @LINE: 399 +(S) @LINE: 394 >>> Processed Test Case: publishThermistorsData_Not_Publish_Time -(I) @LINE: 405 +(I) @LINE: 400 >>> Processing Test Case: publishThermistorsData_Publish_Time -(S) @LINE: 408 +(S) @LINE: 403 >>> Processed Test Case: publishThermistorsData_Publish_Time -(I) @LINE: 416 +(I) @LINE: 411 >>> Processing Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_In_Range -(S) @LINE: 426 +(S) @LINE: 421 >>> Processed Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_In_Range -(I) @LINE: 432 +(I) @LINE: 427 >>> Processing Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range -(S) @LINE: 437 +(S) @LINE: 432 >>> Processed Test Case: testResetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range -(I) @LINE: 443 +(I) @LINE: 438 >>> Processing Test Case: testResetMeasuredThermistorOverride_Not_Logged_In -(S) @LINE: 448 +(S) @LINE: 443 >>> Processed Test Case: testResetMeasuredThermistorOverride_Not_Logged_In -(I) @LINE: 456 +(I) @LINE: 451 >>> Processing Test Case: testResetThermistorPublishIntervalOverride_Logged_In -(S) @LINE: 465 +(S) @LINE: 460 >>> Processed Test Case: testResetThermistorPublishIntervalOverride_Logged_In -(I) @LINE: 471 +(I) @LINE: 466 >>> Processing Test Case: testResetThermistorPublishIntervalOverride_Not_Logged_In -(S) @LINE: 475 +(S) @LINE: 470 >>> Processed Test Case: testResetThermistorPublishIntervalOverride_Not_Logged_In -(I) @LINE: 483 +(I) @LINE: 478 >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_In_Ranage -(S) @LINE: 493 +(S) @LINE: 488 >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_In_Ranage -(I) @LINE: 499 +(I) @LINE: 494 >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Lower_Ranage -(S) @LINE: 505 +(S) @LINE: 500 >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Lower_Ranage -(I) @LINE: 511 +(I) @LINE: 506 >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Upper_Ranage -(S) @LINE: 517 +(S) @LINE: 512 >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_In_Range_Temp_Upper_Ranage -(I) @LINE: 523 +(I) @LINE: 518 >>> Processing Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range -(S) @LINE: 529 +(S) @LINE: 524 >>> Processed Test Case: testSetMeasuredThermistorOverride_Logged_In_Therm_Not_In_Range -(I) @LINE: 535 +(I) @LINE: 530 >>> Processing Test Case: testSetMeasuredThermistorOverride_Not_Logged_In -(S) @LINE: 541 +(S) @LINE: 536 >>> Processed Test Case: testSetMeasuredThermistorOverride_Not_Logged_In -(I) @LINE: 549 +(I) @LINE: 544 >>> Processing Test Case: testSetThermistorPublishIntervalOverride_Logged_In -(S) @LINE: 558 +(S) @LINE: 553 >>> Processed Test Case: testSetThermistorPublishIntervalOverride_Logged_In -(I) @LINE: 564 +(I) @LINE: 559 >>> Processing Test Case: testSetThermistorPublishIntervalOverride_Not_Logged_In -(S) @LINE: 569 +(S) @LINE: 564 >>> Processed Test Case: testSetThermistorPublishIntervalOverride_Not_Logged_In -(S) @LINE: 569 +(S) @LINE: 564 >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS.tst DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:23:39 +TIME: 2020-12-09 08:36:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30051,7 +31285,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:23:40 +TIME: 2020-12-09 08:36:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30345,7 +31579,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-05 23:23:41 +TIME: 2020-12-09 08:36:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/CCAST_.CFG @@ -30378,9 +31612,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-05 23:23:44 +TIME: 2020-12-09 08:37:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30395,6 +31629,9 @@ 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 -------------------------------------------------------------------------------- @@ -30448,9 +31685,24 @@ >>> Processed Test Case: NominalPath (S) @LINE: 140 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 +TIME: 2020-12-09 08:37:01 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-05 23:23:45 +TIME: 2020-12-09 08:37:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30545,7 +31797,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-05 23:23:46 +TIME: 2020-12-09 08:37:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG @@ -30578,9 +31830,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-05 23:23:49 +TIME: 2020-12-09 08:37:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -30595,6 +31847,9 @@ 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 @@ -30749,9 +32004,24 @@ >>> Processed Test Case: u32DiffWithWrap_Wrap (S) @LINE: 591 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 +TIME: 2020-12-09 08:37:07 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-05 23:23:50 +TIME: 2020-12-09 08:37:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31011,7 +32281,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-05 23:23:51 +TIME: 2020-12-09 08:37:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG @@ -31044,9 +32314,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-05 23:23:54 +TIME: 2020-12-09 08:37:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -31061,6 +32331,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 50 Processing script line 200 Processing script line 250 @@ -31486,9 +32759,24 @@ >>> Processed Test Case: testSetValvesStatesPublishIntervalOverride_Override (S) @LINE: 1341 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e VALVES test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 +TIME: 2020-12-09 08:37:15 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e VALVES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-05 23:23:56 +TIME: 2020-12-09 08:37:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32206,7 +33494,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.env DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-05 23:23:58 +TIME: 2020-12-09 08:37:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG @@ -32239,9 +33527,9 @@ Coverage Initialized Writing VectorCAST Database Files to Disk Environment built Successfully -COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script run /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-05 23:24:01 +TIME: 2020-12-09 08:37:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32256,6 +33544,9 @@ Opening Types File Environment is Open Processing Script File + Test Script Maintenance Started + Test Script Maintenance Complete (18) + Translated 0 script lines Processing script line 200 Processing script line 350 Processing script line 400 @@ -32379,9 +33670,24 @@ >>> Processed Test Case: TestingInactive (S) @LINE: 486 >>> Script processing completed +COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/WATCHDOGMGMT.tst +DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 +TIME: 2020-12-09 08:37:23 +TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite +VectorCAST Copyright (C) 1993 - 2020 +**Version 19.sp3 (11/13/19) + Processing options file /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848/CCAST_.CFG + Opening Environment + Opening Parameter/Global File + Opening Types File + Environment is Open + Creating Script File + Building Test Case Script + Test Case Script Created + Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-05 23:24:02 +TIME: 2020-12-09 08:37:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32611,7 +33917,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-05 23:24:09 +TIME: 2020-12-09 08:37:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32623,7 +33929,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-05 23:24:10 +TIME: 2020-12-09 08:37:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32635,7 +33941,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-05 23:24:11 +TIME: 2020-12-09 08:37:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32647,7 +33953,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-05 23:24:12 +TIME: 2020-12-09 08:37:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32659,7 +33965,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-05 23:24:13 +TIME: 2020-12-09 08:37:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32671,7 +33977,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-05 23:24:14 +TIME: 2020-12-09 08:37:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32683,7 +33989,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-05 23:24:16 +TIME: 2020-12-09 08:37:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32695,7 +34001,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:24:17 +TIME: 2020-12-09 08:37:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32707,7 +34013,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:24:18 +TIME: 2020-12-09 08:37:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32719,7 +34025,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:24:19 +TIME: 2020-12-09 08:37:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32731,7 +34037,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-05 23:24:20 +TIME: 2020-12-09 08:37:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32743,7 +34049,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-05 23:24:21 +TIME: 2020-12-09 08:37:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32755,7 +34061,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-05 23:24:22 +TIME: 2020-12-09 08:37:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32767,7 +34073,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:24:23 +TIME: 2020-12-09 08:37:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32779,7 +34085,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:24:24 +TIME: 2020-12-09 08:37:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32791,7 +34097,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:24:25 +TIME: 2020-12-09 08:37:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32803,7 +34109,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-05 23:24:27 +TIME: 2020-12-09 08:37:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32815,7 +34121,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-05 23:24:28 +TIME: 2020-12-09 08:37:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32827,7 +34133,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-05 23:24:29 +TIME: 2020-12-09 08:37:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32839,7 +34145,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:24:30 +TIME: 2020-12-09 08:37:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32851,7 +34157,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:24:31 +TIME: 2020-12-09 08:37:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32863,7 +34169,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:24:32 +TIME: 2020-12-09 08:37:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32875,7 +34181,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:24:33 +TIME: 2020-12-09 08:37:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32887,7 +34193,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-05 23:24:34 +TIME: 2020-12-09 08:37:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32899,7 +34205,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-05 23:24:35 +TIME: 2020-12-09 08:37:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32911,7 +34217,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:24:36 +TIME: 2020-12-09 08:37:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32923,7 +34229,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-05 23:24:37 +TIME: 2020-12-09 08:37:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32935,7 +34241,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:24:39 +TIME: 2020-12-09 08:37:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32947,7 +34253,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:24:40 +TIME: 2020-12-09 08:37:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32959,7 +34265,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:24:40 +TIME: 2020-12-09 08:37:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32971,7 +34277,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-05 23:24:41 +TIME: 2020-12-09 08:38:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32983,7 +34289,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:24:42 +TIME: 2020-12-09 08:38:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -32995,7 +34301,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:24:43 +TIME: 2020-12-09 08:38:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33007,7 +34313,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:24:44 +TIME: 2020-12-09 08:38:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33019,7 +34325,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-05 23:24:45 +TIME: 2020-12-09 08:38:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33031,7 +34337,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:24:46 +TIME: 2020-12-09 08:38:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33043,7 +34349,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:24:47 +TIME: 2020-12-09 08:38:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33055,7 +34361,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:24:48 +TIME: 2020-12-09 08:38:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33067,7 +34373,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-05 23:24:49 +TIME: 2020-12-09 08:38:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33079,7 +34385,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-05 23:24:51 +TIME: 2020-12-09 08:38:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33091,7 +34397,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-05 23:24:52 +TIME: 2020-12-09 08:38:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33103,7 +34409,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:24:53 +TIME: 2020-12-09 08:38:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33115,7 +34421,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-05 23:24:54 +TIME: 2020-12-09 08:38:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33127,7 +34433,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:24:55 +TIME: 2020-12-09 08:38:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33139,7 +34445,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:24:56 +TIME: 2020-12-09 08:38:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33151,7 +34457,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:24:57 +TIME: 2020-12-09 08:38:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33163,7 +34469,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:24:58 +TIME: 2020-12-09 08:38:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33175,7 +34481,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:24:59 +TIME: 2020-12-09 08:38:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33187,7 +34493,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:25:00 +TIME: 2020-12-09 08:38:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33199,7 +34505,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-05 23:25:01 +TIME: 2020-12-09 08:38:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33211,7 +34517,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-05 23:25:02 +TIME: 2020-12-09 08:38:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33223,7 +34529,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-05 23:25:03 +TIME: 2020-12-09 08:38:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33235,7 +34541,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-05 23:25:04 +TIME: 2020-12-09 08:38:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33247,7 +34553,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:25:05 +TIME: 2020-12-09 08:38:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33259,7 +34565,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:25:06 +TIME: 2020-12-09 08:38:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33271,7 +34577,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:25:07 +TIME: 2020-12-09 08:38:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33283,7 +34589,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:25:08 +TIME: 2020-12-09 08:38:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33295,7 +34601,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-05 23:25:09 +TIME: 2020-12-09 08:38:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33307,7 +34613,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-05 23:25:11 +TIME: 2020-12-09 08:38:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33319,7 +34625,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-05 23:25:12 +TIME: 2020-12-09 08:38:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33331,7 +34637,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-05 23:25:13 +TIME: 2020-12-09 08:38:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33343,7 +34649,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-05 23:25:14 +TIME: 2020-12-09 08:38:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33355,7 +34661,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-05 23:25:15 +TIME: 2020-12-09 08:38:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33367,7 +34673,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-05 23:25:16 +TIME: 2020-12-09 08:38:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33379,7 +34685,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-05 23:25:17 +TIME: 2020-12-09 08:38:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33391,7 +34697,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-05 23:25:18 +TIME: 2020-12-09 08:38:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33403,7 +34709,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-05 23:25:18 +TIME: 2020-12-09 08:38:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33415,7 +34721,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:25:20 +TIME: 2020-12-09 08:38:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33427,7 +34733,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-05 23:25:21 +TIME: 2020-12-09 08:38:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33439,7 +34745,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-05 23:25:22 +TIME: 2020-12-09 08:38:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33451,7 +34757,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:25:23 +TIME: 2020-12-09 08:38:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33463,7 +34769,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-05 23:25:24 +TIME: 2020-12-09 08:38:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33475,7 +34781,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-05 23:25:24 +TIME: 2020-12-09 08:38:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33487,7 +34793,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-05 23:25:26 +TIME: 2020-12-09 08:38:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33499,7 +34805,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:25:27 +TIME: 2020-12-09 08:38:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33511,7 +34817,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-05 23:25:28 +TIME: 2020-12-09 08:38:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33523,7 +34829,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-05 23:25:29 +TIME: 2020-12-09 08:38:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33535,7 +34841,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-05 23:25:30 +TIME: 2020-12-09 08:38:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33547,7 +34853,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:25:31 +TIME: 2020-12-09 08:38:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33559,7 +34865,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-05 23:25:32 +TIME: 2020-12-09 08:38:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33571,7 +34877,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-05 23:25:33 +TIME: 2020-12-09 08:38:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33583,7 +34889,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-05 23:25:34 +TIME: 2020-12-09 08:38:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33595,7 +34901,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:25:35 +TIME: 2020-12-09 08:38:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33607,7 +34913,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-05 23:25:36 +TIME: 2020-12-09 08:38:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33619,7 +34925,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-05 23:25:37 +TIME: 2020-12-09 08:38:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33631,7 +34937,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-05 23:25:38 +TIME: 2020-12-09 08:38:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33643,7 +34949,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-05 23:25:39 +TIME: 2020-12-09 08:38:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33655,7 +34961,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:25:40 +TIME: 2020-12-09 08:38:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33667,7 +34973,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:25:41 +TIME: 2020-12-09 08:38:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33679,7 +34985,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-05 23:25:42 +TIME: 2020-12-09 08:38:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33691,7 +34997,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-05 23:25:43 +TIME: 2020-12-09 08:39:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33703,7 +35009,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-05 23:25:44 +TIME: 2020-12-09 08:39:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33715,7 +35021,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-05 23:25:45 +TIME: 2020-12-09 08:39:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33734,7 +35040,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_DG_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353 -TIME: 2020-12-05 23:25:47 +TIME: 2020-12-09 08:39:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33746,7 +35052,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1290043353/ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791 -TIME: 2020-12-05 23:25:48 +TIME: 2020-12-09 08:39:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33758,7 +35064,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/951818791/ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408 -TIME: 2020-12-05 23:25:49 +TIME: 2020-12-09 08:39:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33770,7 +35076,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491 -TIME: 2020-12-05 23:25:50 +TIME: 2020-12-09 08:39:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33782,7 +35088,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435 -TIME: 2020-12-05 23:25:51 +TIME: 2020-12-09 08:39:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33794,7 +35100,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3101310435/CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748 -TIME: 2020-12-05 23:25:53 +TIME: 2020-12-09 08:39:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33806,7 +35112,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2347984748/CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776 -TIME: 2020-12-05 23:25:54 +TIME: 2020-12-09 08:39:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33818,7 +35124,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084 -TIME: 2020-12-05 23:25:55 +TIME: 2020-12-09 08:39:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33830,7 +35136,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2400209084/DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FANS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048 -TIME: 2020-12-05 23:25:56 +TIME: 2020-12-09 08:39:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33842,7 +35148,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1563218048/FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326 -TIME: 2020-12-05 23:25:57 +TIME: 2020-12-09 08:39:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33854,7 +35160,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139 -TIME: 2020-12-05 23:25:58 +TIME: 2020-12-09 08:39:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33866,7 +35172,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1963167139/HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763 -TIME: 2020-12-05 23:25:59 +TIME: 2020-12-09 08:39:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33878,7 +35184,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3825867763/INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493 -TIME: 2020-12-05 23:26:00 +TIME: 2020-12-09 08:39:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33890,7 +35196,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ACCEL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925 -TIME: 2020-12-05 23:26:02 +TIME: 2020-12-09 08:39:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33902,7 +35208,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2980953925/INT_ACCEL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406 -TIME: 2020-12-05 23:26:03 +TIME: 2020-12-09 08:39:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33914,7 +35220,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098 -TIME: 2020-12-05 23:26:04 +TIME: 2020-12-09 08:39:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33926,7 +35232,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2591524098/INT_COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052 -TIME: 2020-12-05 23:26:05 +TIME: 2020-12-09 08:39:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33938,7 +35244,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONCENTRATEPUMPS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950 -TIME: 2020-12-05 23:26:06 +TIME: 2020-12-09 08:39:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33950,7 +35256,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/87548950/INT_CONCENTRATEPUMPS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CONDUCTIVITYSENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561 -TIME: 2020-12-05 23:26:07 +TIME: 2020-12-09 08:39:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33962,7 +35268,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3065853561/INT_CONDUCTIVITYSENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026 -TIME: 2020-12-05 23:26:08 +TIME: 2020-12-09 08:39:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33974,7 +35280,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3989498026/INT_CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DRAINPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077 -TIME: 2020-12-05 23:26:09 +TIME: 2020-12-09 08:39:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33986,7 +35292,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/194968077/INT_DRAINPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FANS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722 -TIME: 2020-12-05 23:26:11 +TIME: 2020-12-09 08:39:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -33998,7 +35304,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1981101722/INT_FANS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524 -TIME: 2020-12-05 23:26:12 +TIME: 2020-12-09 08:39:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34010,7 +35316,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1233794524/INT_FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_HEATERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348 -TIME: 2020-12-05 23:26:13 +TIME: 2020-12-09 08:39:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34022,7 +35328,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/865302348/INT_HEATERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERNALADC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988 -TIME: 2020-12-05 23:26:14 +TIME: 2020-12-09 08:39:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34034,7 +35340,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1018941988/INT_INTERNALADC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_INTERRUPTS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493 -TIME: 2020-12-05 23:26:15 +TIME: 2020-12-09 08:39:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34046,7 +35352,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1819084493/INT_INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515 -TIME: 2020-12-05 23:26:16 +TIME: 2020-12-09 08:39:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34058,7 +35364,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1672699515/INT_LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179 -TIME: 2020-12-05 23:26:17 +TIME: 2020-12-09 08:39:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34070,7 +35376,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/777223179/INT_MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169 -TIME: 2020-12-05 23:26:18 +TIME: 2020-12-09 08:39:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34082,7 +35388,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/9217169/INT_MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379 -TIME: 2020-12-05 23:26:19 +TIME: 2020-12-09 08:39:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34094,7 +35400,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2748975379/INT_MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824 -TIME: 2020-12-05 23:26:20 +TIME: 2020-12-09 08:39:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34106,7 +35412,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4235259824/INT_MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903 -TIME: 2020-12-05 23:26:21 +TIME: 2020-12-09 08:39:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34118,7 +35424,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2297135903/INT_MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983 -TIME: 2020-12-05 23:26:22 +TIME: 2020-12-09 08:39:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34130,7 +35436,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1843208983/INT_MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909 -TIME: 2020-12-05 23:26:23 +TIME: 2020-12-09 08:39:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34142,7 +35448,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1413348909/INT_MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553 -TIME: 2020-12-05 23:26:24 +TIME: 2020-12-09 08:39:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34154,7 +35460,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1236077553/INT_MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669 -TIME: 2020-12-05 23:26:25 +TIME: 2020-12-09 08:39:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34166,7 +35472,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3003468669/INT_MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509 -TIME: 2020-12-05 23:26:26 +TIME: 2020-12-09 08:39:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34178,7 +35484,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/104031509/INT_MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860 -TIME: 2020-12-05 23:26:27 +TIME: 2020-12-09 08:39:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34190,7 +35496,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3433100860/INT_MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608 -TIME: 2020-12-05 23:26:28 +TIME: 2020-12-09 08:39:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34202,7 +35508,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110 -TIME: 2020-12-05 23:26:29 +TIME: 2020-12-09 08:39:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34214,7 +35520,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522 -TIME: 2020-12-05 23:26:30 +TIME: 2020-12-09 08:39:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34226,7 +35532,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2668912522/INT_PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209 -TIME: 2020-12-05 23:26:31 +TIME: 2020-12-09 08:39:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34238,7 +35544,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/996327209/INT_PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384 -TIME: 2020-12-05 23:26:32 +TIME: 2020-12-09 08:39:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34250,7 +35556,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1468105384/INT_PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484 -TIME: 2020-12-05 23:26:33 +TIME: 2020-12-09 08:39:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34262,7 +35568,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3023750484/INT_RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925 -TIME: 2020-12-05 23:26:34 +TIME: 2020-12-09 08:39:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34274,7 +35580,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3092074925/INT_ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120 -TIME: 2020-12-05 23:26:35 +TIME: 2020-12-09 08:39:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34286,7 +35592,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2486627120/INT_RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471 -TIME: 2020-12-05 23:26:36 +TIME: 2020-12-09 08:39:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34298,7 +35604,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618 -TIME: 2020-12-05 23:26:37 +TIME: 2020-12-09 08:39:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34310,7 +35616,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150 -TIME: 2020-12-05 23:26:39 +TIME: 2020-12-09 08:39:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34322,7 +35628,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829 -TIME: 2020-12-05 23:26:40 +TIME: 2020-12-09 08:39:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34334,7 +35640,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3512906829/INT_TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402 -TIME: 2020-12-05 23:26:41 +TIME: 2020-12-09 08:39:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34346,7 +35652,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2330464402/INT_TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311 -TIME: 2020-12-05 23:26:42 +TIME: 2020-12-09 08:39:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34358,7 +35664,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3515115311/INT_TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002 -TIME: 2020-12-05 23:26:43 +TIME: 2020-12-09 08:39:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34370,7 +35676,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3678416002/INT_TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629 -TIME: 2020-12-05 23:26:44 +TIME: 2020-12-09 08:40:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34382,7 +35688,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2084893629/INT_TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_THERMISTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595 -TIME: 2020-12-05 23:26:45 +TIME: 2020-12-09 08:40:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34394,7 +35700,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2444077595/INT_THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646 -TIME: 2020-12-05 23:26:46 +TIME: 2020-12-09 08:40:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34406,7 +35712,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/189936646/INT_TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653 -TIME: 2020-12-05 23:26:47 +TIME: 2020-12-09 08:40:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34418,7 +35724,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238 -TIME: 2020-12-05 23:26:48 +TIME: 2020-12-09 08:40:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34430,7 +35736,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3585417238/INT_VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182 -TIME: 2020-12-05 23:26:49 +TIME: 2020-12-09 08:40:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34442,7 +35748,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e LOADCELL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880 -TIME: 2020-12-05 23:26:50 +TIME: 2020-12-09 08:40:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34454,7 +35760,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1396715880/LOADCELL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODECHEMICALDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787 -TIME: 2020-12-05 23:26:51 +TIME: 2020-12-09 08:40:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34466,7 +35772,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/92980787/MODECHEMICALDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEDRAIN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248 -TIME: 2020-12-05 23:26:52 +TIME: 2020-12-09 08:40:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34478,7 +35784,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2214729248/MODEDRAIN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFAULT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482 -TIME: 2020-12-05 23:26:53 +TIME: 2020-12-09 08:40:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34490,7 +35796,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/659864482/MODEFAULT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFILL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211 -TIME: 2020-12-05 23:26:54 +TIME: 2020-12-09 08:40:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34502,7 +35808,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3431170211/MODEFILL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEFLUSH report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446 -TIME: 2020-12-05 23:26:55 +TIME: 2020-12-09 08:40:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34514,7 +35820,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/207958446/MODEFLUSH_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEHEATDISINFECT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941 -TIME: 2020-12-05 23:26:56 +TIME: 2020-12-09 08:40:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34526,7 +35832,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/2696398941/MODEHEATDISINFECT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODEINITPOST report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563 -TIME: 2020-12-05 23:26:57 +TIME: 2020-12-09 08:40:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34538,7 +35844,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1280444563/MODEINITPOST_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODERECIRCULATE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081 -TIME: 2020-12-05 23:26:58 +TIME: 2020-12-09 08:40:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34550,7 +35856,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428270081/MODERECIRCULATE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESERVICE report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042 -TIME: 2020-12-05 23:26:59 +TIME: 2020-12-09 08:40:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34562,7 +35868,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1806992042/MODESERVICE_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESOLO report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142 -TIME: 2020-12-05 23:27:00 +TIME: 2020-12-09 08:40:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34574,7 +35880,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/918555142/MODESOLO_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODESTANDBY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795 -TIME: 2020-12-05 23:27:01 +TIME: 2020-12-09 08:40:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34586,7 +35892,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/336674795/MODESTANDBY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785 -TIME: 2020-12-05 23:27:02 +TIME: 2020-12-09 08:40:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34598,7 +35904,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708 -TIME: 2020-12-05 23:27:03 +TIME: 2020-12-09 08:40:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34610,7 +35916,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3573947708/NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158 -TIME: 2020-12-05 23:27:05 +TIME: 2020-12-09 08:40:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34622,7 +35928,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PERSISTENTALARM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194 -TIME: 2020-12-05 23:27:06 +TIME: 2020-12-09 08:40:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34634,7 +35940,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3477059194/PERSISTENTALARM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PICONTROLLERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388 -TIME: 2020-12-05 23:27:07 +TIME: 2020-12-09 08:40:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34646,7 +35952,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/396578388/PICONTROLLERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESSURES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929 -TIME: 2020-12-05 23:27:08 +TIME: 2020-12-09 08:40:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34658,7 +35964,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3540987929/PRESSURES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RESERVOIRS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956 -TIME: 2020-12-05 23:27:09 +TIME: 2020-12-09 08:40:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34670,7 +35976,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/148424956/RESERVOIRS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ROPUMP report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810 -TIME: 2020-12-05 23:27:10 +TIME: 2020-12-09 08:40:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34682,7 +35988,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1091159810/ROPUMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850 -TIME: 2020-12-05 23:27:11 +TIME: 2020-12-09 08:40:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34694,7 +36000,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/428499850/RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383 -TIME: 2020-12-05 23:27:13 +TIME: 2020-12-09 08:40:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34706,7 +36012,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922 -TIME: 2020-12-05 23:27:14 +TIME: 2020-12-09 08:40:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34718,7 +36024,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163 -TIME: 2020-12-05 23:27:15 +TIME: 2020-12-09 08:40:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34730,7 +36036,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKBG report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938 -TIME: 2020-12-05 23:27:18 +TIME: 2020-12-09 08:40:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34742,7 +36048,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/673587938/TASKBG_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKGENERAL report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037 -TIME: 2020-12-05 23:27:19 +TIME: 2020-12-09 08:40:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34754,7 +36060,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1381620037/TASKGENERAL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKPRIORITY report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641 -TIME: 2020-12-05 23:27:20 +TIME: 2020-12-09 08:40:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34766,7 +36072,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3387658641/TASKPRIORITY_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TASKTIMER report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435 -TIME: 2020-12-05 23:27:21 +TIME: 2020-12-09 08:40:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34778,7 +36084,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1607376435/TASKTIMER_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TEMPERATURESENSORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912 -TIME: 2020-12-05 23:27:22 +TIME: 2020-12-09 08:40:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34790,7 +36096,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3934269912/TEMPERATURESENSORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e THERMISTORS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324 -TIME: 2020-12-05 23:27:23 +TIME: 2020-12-09 08:40:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34802,7 +36108,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1226597324/THERMISTORS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705 -TIME: 2020-12-05 23:27:25 +TIME: 2020-12-09 08:40:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34814,7 +36120,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276 -TIME: 2020-12-05 23:27:26 +TIME: 2020-12-09 08:40:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34826,7 +36132,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/3897033276/UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e VALVES report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457 -TIME: 2020-12-05 23:27:27 +TIME: 2020-12-09 08:40:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -34838,7 +36144,7 @@ The HTML report was saved to "/home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/754038457/VALVES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/workspace_dg/dgfirmware/vectorcast/Hercules_RM46_DG_Project/build/1297968848 -TIME: 2020-12-05 23:27:28 +TIME: 2020-12-09 08:40:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) Index: results/cppcheckError.csv =================================================================== diff -u -rfeb93744f73bc0a3d58841bb02bd05c38357f35d -r374bab15ea30aba82ee139e8a494764db312f468 --- results/cppcheckError.csv (.../cppcheckError.csv) (revision feb93744f73bc0a3d58841bb02bd05c38357f35d) +++ results/cppcheckError.csv (.../cppcheckError.csv) (revision 374bab15ea30aba82ee139e8a494764db312f468) @@ -5,7 +5,7 @@ dgfirmware/firmware/App/Controllers/ROPump.c,338,style,unreadVariable,Variable 'tgtPres' is assigned a value that is never used. dgfirmware/firmware/App/Controllers/ROPump.c,339,style,unreadVariable,Variable 'actPres' is assigned a value that is never used. dgfirmware/firmware/App/Controllers/ROPump.c,340,style,unusedVariable,Unused variable: newPWM -dgfirmware/firmware/App/Controllers/TemperatureSensors.c,575,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. +dgfirmware/firmware/App/Controllers/TemperatureSensors.c,578,style,redundantAssignment,Variable 'isADCValid' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,163,style,redundantAssignment,Variable 'isInletWaterReady' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,199,style,redundantAssignment,Variable 'isDialysateProductionGood' is reassigned a value before the old one has been used. dgfirmware/firmware/App/Modes/ModeFill.c,231,style,redundantAssignment,Variable 'isDialysateConductivityBad' is reassigned a value before the old one has been used.