Skip to content

Commit

Permalink
IC:2021-08-17, cFE v6.8.0-rc1+dev
Browse files Browse the repository at this point in the history
**Combines**

nasa/cFE#1808, v6.8.0-rc1+dev873

**Includes**

- nasa/cFE#1790, Port "CFE_UtAssert_SuccessCheck" and related macros from coverage test to functional test #1784, add CFE assert macros to functional test
- nasa/cFE#1779, Adds invalid id syslog to for CFE_ES_DeleteApp and CFE_ES_ReloadApp and verifies required reporting
- nasa/cFE#1785, Stop memory leak & add cds size test.
- nasa/cFE#1765, Mark read only inputs as const
- nasa/cFE#1804, Check resource ID idx is less than max
- nasa/cFE#1778, Add ES Application Behavior Functional Tests
- nasa/cFE#1801, Update CFE_ES_RunLoop documentation
- nasa/cFE#1745, Add Message Api Functional Test
- nasa/cFE#1798, update in/out status and nonnull/nonzero tags
- nasa/cFE#1783, Add External Time Source Functional Tests
- nasa/cFE#1800, Add Perf API functional tests

Co-authored-by: Jacob Hageman <[email protected]>
Co-authored-by: Joseph Hickey <[email protected]>
Co-authored-by: Alex Campbell <[email protected]>
Co-authored-by: Niall Mullane <[email protected]>
Co-authored-by: Paul <[email protected]>
  • Loading branch information
6 people committed Aug 17, 2021
1 parent d2b24cd commit c2119ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfe
Submodule cfe updated 36 files
+4 −1 .github/workflows/functional-tests.yml
+15 −0 README.md
+131 −0 modules/cfe_assert/inc/cfe_assert.h
+20 −0 modules/cfe_assert/src/cfe_assert_runner.c
+4 −0 modules/cfe_testcase/CMakeLists.txt
+5 −1 modules/cfe_testcase/src/cfe_test.c
+9 −1 modules/cfe_testcase/src/cfe_test.h
+93 −0 modules/cfe_testcase/src/es_behavior_test.c
+8 −6 modules/cfe_testcase/src/es_cds_test.c
+1 −1 modules/cfe_testcase/src/es_counter_test.c
+6 −6 modules/cfe_testcase/src/es_info_test.c
+2 −0 modules/cfe_testcase/src/es_mempool_test.c
+74 −0 modules/cfe_testcase/src/es_perf_test.c
+7 −0 modules/cfe_testcase/src/es_resource_id_test.c
+2 −2 modules/cfe_testcase/src/es_task_test.c
+3 −3 modules/cfe_testcase/src/fs_header_test.c
+238 −0 modules/cfe_testcase/src/msg_api_test.c
+1 −1 modules/cfe_testcase/src/sb_pipe_mang_test.c
+104 −0 modules/cfe_testcase/src/time_external_test.c
+116 −72 modules/core_api/fsw/inc/cfe_es.h
+8 −3 modules/core_api/fsw/inc/cfe_evs.h
+38 −18 modules/core_api/fsw/inc/cfe_fs.h
+50 −50 modules/core_api/fsw/inc/cfe_msg.h
+5 −1 modules/core_api/fsw/inc/cfe_resourceid.h
+23 −21 modules/core_api/fsw/inc/cfe_sb.h
+30 −14 modules/core_api/fsw/inc/cfe_tbl.h
+7 −1 modules/core_api/fsw/inc/cfe_time.h
+1 −1 modules/core_api/fsw/inc/cfe_version.h
+2 −2 modules/core_api/ut-stubs/src/cfe_es_stubs.c
+2 −2 modules/core_api/ut-stubs/src/cfe_sb_stubs.c
+10 −1 modules/core_private/ut-stubs/inc/ut_osprintf_stubs.h
+9 −0 modules/core_private/ut-stubs/src/ut_osprintf_stubs.c
+69 −57 modules/es/fsw/src/cfe_es_api.c
+30 −0 modules/es/ut-coverage/es_UT.c
+2 −2 modules/sb/fsw/src/cfe_sb_api.c
+1 −1 modules/sb/fsw/src/cfe_sb_priv.h

0 comments on commit c2119ea

Please sign in to comment.