-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #1784, add CFE assert macros to functional test #1790
Fix #1784, add CFE assert macros to functional test #1790
Conversation
4daa2f0
to
82d4843
Compare
82d4843
to
97790b2
Compare
d44b91c
to
59eed74
Compare
Updated per discussion in today's tag-up to remove SETUP and TEARDOWN macros. Side note / food for thought -- my preference has always been to err toward including too much information in test logs, as you can always ignore the extra detail if it isn't relevant to your goals. However, you can't go the other way, and use information you don't have in the log. Therefore, I still would prefer to keep SETUP/TEARDOWN macros, as it only affects the details in the log file - which can be ignored/discarded when the goal is to show system-level functionality. But I still do think there are cases where this detail can be useful in the log file, and you can't use it if its not there. |
Probably also worth noting that the OSAL functional tests also have UT_SETUP and UT_TEARDOWN macros for this same purpose, and this is the same type/level of functional test. So I still think it should be there for consistency with all of our other tests. |
|
59eed74
to
5b02dc9
Compare
The latest update changes the name of the SUCCESS/NOT_SUCCESS asserts to CFE_UtAssert_STATUS_OK and CFE_UtAssert_STATUS_ERROR respectively. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Log message update requested
5b02dc9
to
4f9d3df
Compare
Adds the following macros to CFE assert library in cfe_assert.h: - CFE_UtAssert_STATUS_OK - CFE_UtAssert_STATUS_ERROR - CFE_UtAssert_RESOURCEID_EQ - CFE_UtAssert_RESOURCEID_UNDEFINED - CFE_UtAssert_MEMOFFSET_EQ - CFE_UtAssert_MSGID_EQ
Change cFE_FTAssert macros defined in cfe_testcase to use the macros now provided in cfe_assert.h instead.
4f9d3df
to
c2d0ee7
Compare
Last push was for whitespace/clang-format fixup ... 7th time is the charm on this hopefully |
*Combines* nasa/cFE#1808 *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 Co-authored-by: Jacob Hageman <skliper@users.noreply.github.com> Co-authored-by: Joseph Hickey <jphickey@users.noreply.github.com>
Describe the contribution
Adds the following macros to CFE assert library in cfe_assert.h:
Fixes #1784
Testing performed
Build and run all tests (including with some new test cases that use the new macros) and confirm all is working as expected.
Expected behavior changes
None right now, these are new macros that test cases are not using yet.
System(s) tested on
Ubuntu
Additional context
Provides improved feature parity with coverage test environment, gives a common macro to use for common tests/asserts, and more consistent naming convention.
Contributor Info - All information REQUIRED for consideration of pull request
Joseph Hickey, Vantage Systems, Inc