forked from nasa/fprime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix other review issues pertaining to unit tests and argument checks …
…in the SmSignalBuffer constructors
- Loading branch information
watney
committed
Sep 19, 2024
1 parent
fe98ac6
commit f5eef35
Showing
6 changed files
with
29 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
set(SOURCE_FILES | ||
"${CMAKE_CURRENT_LIST_DIR}/SmTest.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/SmTest.fpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/DeviceSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/HackSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/DeviceSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/HackSm.cpp" | ||
) | ||
set(MOD_DEPS Fw/Sm) | ||
|
||
register_fprime_module() | ||
|
||
set(UT_SOURCE_FILES | ||
"${CMAKE_CURRENT_LIST_DIR}/SmTest.fpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/test/ut/TestMain.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/test/ut/Tester.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/test/ut/TesterHelpers.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/DeviceSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/HackSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/test/ut/SmTestTestMain.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/test/ut/SmTestTester.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/DeviceSm.cpp" | ||
"${CMAKE_CURRENT_LIST_DIR}/HackSm.cpp" | ||
) | ||
|
||
set(UT_MOD_DEPS STest) | ||
set(UT_AUTO_HELPERS ON) | ||
register_fprime_ut() |
6 changes: 3 additions & 3 deletions
6
FppTest/state_machine/test/ut/TestMain.cpp → .../state_machine/test/ut/SmTestTestMain.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters