Skip to content

Commit

Permalink
Merge pull request #270 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
cFS Bundle Integration candidate: 2021-06-22
  • Loading branch information
astrogeco authored Jun 24, 2021
2 parents c2f1a2e + b391b52 commit 5d80736
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
if: ${{ github.event_name == 'push' && contains(github.ref, 'main')}}
run: |
mkdir deploy
cd ./build/docs/osalguide/latex
cd ./build/docs/osalguide/apiguide/latex
make > build.txt
mv refman.pdf $GITHUB_WORKSPACE/deploy/OSAL_Users_Guide.pdf
# Could add pandoc and convert to github markdown
Expand Down
2 changes: 1 addition & 1 deletion apps/ci_lab
2 changes: 1 addition & 1 deletion apps/sample_app
2 changes: 1 addition & 1 deletion apps/sample_lib
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 40 files
+1 −1 .github/workflows/build-documentation.yml
+106 −0 .github/workflows/functional-tests.yml
+13 −0 README.md
+1 −2 cmake/cfe-common.doxyfile.in
+36 −0 modules/cfe_assert/inc/cfe_assert.h
+60 −0 modules/cfe_assert/src/cfe_assert_init.c
+13 −0 modules/cfe_assert/src/cfe_assert_io.c
+30 −0 modules/cfe_assert/src/cfe_assert_priv.h
+1 −0 modules/cfe_assert/src/cfe_assert_runner.c
+1 −0 modules/cfe_testcase/src/cfe_test.c
+9 −0 modules/cfe_testcase/src/cfe_test.h
+50 −10 modules/cfe_testcase/src/es_cds_test.c
+78 −8 modules/cfe_testcase/src/es_task_test.c
+1 −1 modules/core_api/fsw/inc/cfe_version.h
+309 −84 modules/core_private/ut-stubs/inc/ut_support.h
+242 −32 modules/core_private/ut-stubs/src/ut_support.c
+866 −1,253 modules/es/fsw/inc/cfe_es_events.h
+754 −1,245 modules/es/ut-coverage/es_UT.c
+366 −535 modules/evs/fsw/inc/cfe_evs_events.h
+233 −420 modules/evs/ut-coverage/evs_UT.c
+180 −214 modules/fs/ut-coverage/fs_UT.c
+11 −11 modules/fs/ut-coverage/fs_UT.h
+140 −138 modules/msg/ut-coverage/test_cfe_msg_ccsdsext.c
+171 −171 modules/msg/ut-coverage/test_cfe_msg_ccsdspri.c
+32 −32 modules/msg/ut-coverage/test_cfe_msg_checksum.c
+33 −33 modules/msg/ut-coverage/test_cfe_msg_fc.c
+39 −39 modules/msg/ut-coverage/test_cfe_msg_init.c
+19 −19 modules/msg/ut-coverage/test_cfe_msg_msgid_shared.c
+44 −44 modules/msg/ut-coverage/test_cfe_msg_msgid_v1.c
+42 −42 modules/msg/ut-coverage/test_cfe_msg_msgid_v2.c
+35 −35 modules/msg/ut-coverage/test_cfe_msg_time.c
+634 −774 modules/sb/fsw/inc/cfe_sb_events.h
+729 −720 modules/sb/ut-coverage/sb_UT.c
+11 −11 modules/sbr/ut-coverage/test_cfe_sbr_map_direct.c
+9 −9 modules/sbr/ut-coverage/test_cfe_sbr_map_hash.c
+23 −23 modules/sbr/ut-coverage/test_cfe_sbr_route_unsorted.c
+672 −938 modules/tbl/fsw/inc/cfe_tbl_events.h
+670 −1,103 modules/tbl/ut-coverage/tbl_UT.c
+359 −526 modules/time/fsw/inc/cfe_time_events.h
+355 −598 modules/time/ut-coverage/time_UT.c
2 changes: 1 addition & 1 deletion osal
Submodule osal updated 30 files
+5 −0 README.md
+1 −1 src/os/inc/osapi-filesys.h
+2 −2 src/os/inc/osapi-network.h
+1 −1 src/os/inc/osapi-task.h
+1 −1 src/os/inc/osapi-version.h
+1 −0 src/os/shared/src/osapi-filesys.c
+2 −0 src/os/shared/src/osapi-queue.c
+6 −36 src/tests/file-sys-add-fixed-map-api-test/file-sys-add-fixed-map-api-test.c
+27 −14 src/tests/network-api-test/network-api-test.c
+38 −112 src/tests/time-base-api-test/time-base-api-test.c
+14 −33 src/tests/timer-add-api-test/timer-add-api-test.c
+2 −1 src/unit-test-coverage/shared/src/coveragetest-binsem.c
+2 −1 src/unit-test-coverage/shared/src/coveragetest-countsem.c
+5 −1 src/unit-test-coverage/shared/src/coveragetest-dir.c
+4 −4 src/unit-test-coverage/shared/src/coveragetest-filesys.c
+2 −1 src/unit-test-coverage/shared/src/coveragetest-mutex.c
+4 −0 src/unit-test-coverage/shared/src/coveragetest-queue.c
+8 −2 src/unit-test-coverage/shared/src/coveragetest-task.c
+6 −0 src/unit-tests/oscore-test/ut_oscore_binsem_test.c
+5 −0 src/unit-tests/oscore-test/ut_oscore_countsem_test.c
+4 −0 src/unit-tests/oscore-test/ut_oscore_mutex_test.c
+8 −0 src/unit-tests/oscore-test/ut_oscore_queue_test.c
+4 −0 src/unit-tests/oscore-test/ut_oscore_select_test.c
+3 −0 src/unit-tests/oscore-test/ut_oscore_task_test.c
+3 −0 src/unit-tests/osfile-test/ut_osfile_dirio_test.c
+6 −0 src/unit-tests/osfile-test/ut_osfile_fileio_test.c
+2 −0 src/unit-tests/osloader-test/ut_osloader_module_test.c
+9 −8 src/unit-tests/osloader-test/ut_osloader_symtable_test.c
+1 −1 src/unit-tests/osnetwork-test/ut_osnetwork_misc_test.c
+22 −44 src/unit-tests/ostimer-test/ut_ostimer_timerio_test.c
2 changes: 1 addition & 1 deletion tools/elf2cfetbl
2 changes: 1 addition & 1 deletion tools/tblCRCTool

0 comments on commit 5d80736

Please sign in to comment.