Skip to content

Commit

Permalink
cFS bundle IC:2021-03-30, Includes:
Browse files Browse the repository at this point in the history
nasa/cFE#1237 - Fix #1180, Removes impossible conditions
nasa/cFE#1240 - Fix #1002, Remove deprecated elements
nasa/cFE#1253 - Fix #1252, Squash potentially uninitialized variable warnings
nasa/cFE#1241 - Fix #1185, Squash possible uninitialized variable false alarms
nasa/cFE#1247 - Fix #1246, Typo in CFE_TBL_Validate AppName
nasa/cFE#1234 - Fix #1192, Initialize TotalMsgSize in CFE_SB_GetUserDataLength
nasa/cFE#1245 - Fix #1187, Increment CreatePipeErrorCounter for all create pipe errors
nasa/cFE#1236 - Fix #1186, Remove useless assignments/checks
nasa/cFE#1237 - Fix #1180, Removes impossible conditions
nasa/cFE#1240 - Fix #1002, Remove deprecated elements
nasa/cFE#1253 - Fix #1252, Squash potentially uninitialized variable warnings
nasa/cFE#1241 - Fix #1185, Squash possible uninitialized variable false alarms
nasa/cFE#1247 - Fix #1246, Typo in CFE_TBL_Validate AppName
nasa/cFE#1234 - Fix #1192, Initialize TotalMsgSize in CFE_SB_GetUserDataLength
nasa/cFE#1245 - Fix #1187, Increment CreatePipeErrorCounter for all create pipe errors
nasa/cFE#1236 - Fix #1186, Remove useless assignments/checks
nasa/cFE#1262 - Fix #1239, scrub include header guards
nasa/cFE#1256 - Fix #1194, check for NULL in SlotUsed helpers
nasa/cFE#1263 - Fix #1261, removed redundant checks for CFE_SUCCESS
nasa/cFE#1250 - Fix #1215, remove task registration calls
nasa/cFE#1242 - Fix #1223, shorten TestRunner function name
nasa/cFE#1242 - Fix #1264, Convert functional test startup script example to use "simple" filenames
nasa/cFE#1229 - Fix #1164, use FS file name parser for commands
nasa/cFE#1257 - Fix #1155, clean up zero copy API
nasa/cFE#1254 - Fix #1181, global variable cleanup
nasa/cFE#1255 - Fix #1206, report PSP version in ES HK TLM
nasa/cFE#1271 - Fix #1270, limit check in pool validation
nasa/cFE#1268 - Fix #1267, add null pointer check
nasa/cFE#1268 - Fix #1269, replace CFE_ES_ERR_BUFFER return for invalid null pointer arguments
nasa/cFE#1260 - Fix #1259, adds --branch-coverage option to genhtml line in lcov Makefile rule

nasa/osal#878 - Fix #843, remove BIG/LITTLE bit order macros
nasa/osal#918 - Fix #846, Minor clean up and clarification in comments/namin
nasa/osal#923 - Fix #831, Finish os-impl-bsd-socket.c coverage testing
nasa/osal#915 - Fix #888, better return codes from OS_SymbolTableDump_Impl
nasa/osal#926 - Fix #853, remove OS_TaskRegister
nasa/osal#935 - Fix #934, Remove unused SCRIPT_MODE flag
nasa/osal#930 - Fix #929, use test function for osal_id_t

nasa/PSP#276 - Fix #275, Adds a UT stub for CFE_PSP_GetKernelTextSegmentInfo
nasa/PSP#278 - Fix #277, add version file

nasa/ci_lab#83 - Fix #82, remove app registration
nasa/ci_lab#84 - Fix #73, use zero copy API

nasa/sample_app#139 - Fix #138, remove app registration
nasa/sample_app#143 - Fix #142, scrub header guards

nasa/sch_lab#75 - Fix #74, remove app registration

nasa/to_lab#96 - Fix #95, remove app registration
  • Loading branch information
astrogeco committed Apr 1, 2021
1 parent 3238e9a commit 9335754
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/ci_lab
2 changes: 1 addition & 1 deletion apps/sch_lab
2 changes: 1 addition & 1 deletion apps/to_lab
2 changes: 1 addition & 1 deletion cfe
Submodule cfe updated 165 files
2 changes: 1 addition & 1 deletion osal
Submodule osal updated 42 files
+11 −0 README.md
+0 −6 src/examples/tasking-example/tasking-example.c
+0 −28 src/os/inc/common_types.h
+1 −1 src/os/inc/osapi-dir.h
+1 −0 src/os/inc/osapi-error.h
+4 −0 src/os/inc/osapi-select.h
+1 −12 src/os/inc/osapi-task.h
+1 −1 src/os/inc/osapi-version.h
+14 −13 src/os/portable/os-impl-bsd-select.c
+1 −1 src/os/portable/os-impl-posix-dirs.c
+1 −1 src/os/shared/inc/os-shared-task.h
+1 −11 src/os/shared/src/osapi-common.c
+1 −1 src/os/shared/src/osapi-idmap.c
+1 −4 src/os/shared/src/osapi-printf.c
+3 −3 src/os/shared/src/osapi-queue.c
+15 −0 src/os/shared/src/osapi-select.c
+0 −19 src/os/shared/src/osapi-task.c
+1 −0 src/os/vxworks/src/os-impl-console.c
+12 −1 src/os/vxworks/src/os-impl-symtab.c
+1 −1 src/os/vxworks/src/os-impl-tasks.c
+2 −2 src/os/vxworks/src/os-impl-timebase.c
+0 −4 src/tests/CMakeLists.txt
+0 −3 src/tests/bin-sem-flush-test/bin-sem-flush-test.c
+0 −2 src/tests/bin-sem-test/bin-sem-test.c
+0 −2 src/tests/bin-sem-timeout-test/bin-sem-timeout-test.c
+0 −3 src/tests/count-sem-test/count-sem-test.c
+2 −4 src/tests/file-api-test/file-api-test.c
+0 −3 src/tests/mutex-test/mutex-test.c
+0 −2 src/tests/osal-core-test/osal-core-test.c
+0 −2 src/tests/queue-test/queue-test.c
+0 −2 src/tests/sem-speed-test/sem-speed-test.c
+355 −1 src/unit-test-coverage/portable/src/coveragetest-bsd-sockets.c
+0 −12 src/unit-test-coverage/shared/src/coveragetest-task.c
+10 −1 src/unit-test-coverage/ut-stubs/src/arpa-inet-stubs.c
+17 −2 src/unit-test-coverage/ut-stubs/src/osapi-select-impl-stubs.c
+45 −0 src/unit-test-coverage/ut-stubs/src/sys-socket-stubs.c
+1 −0 src/unit-test-coverage/vxworks/adaptors/inc/ut-adaptor-symtab.h
+8 −0 src/unit-test-coverage/vxworks/adaptors/src/ut-adaptor-symtab.c
+27 −1 src/unit-test-coverage/vxworks/src/coveragetest-symtab.c
+0 −114 src/unit-tests/oscore-test/ut_oscore_task_test.c
+0 −1 src/unit-tests/oscore-test/ut_oscore_test.c
+0 −25 src/ut-stubs/osapi-utstub-task.c

0 comments on commit 9335754

Please sign in to comment.