Skip to content

Commit

Permalink
Fix nasa#1150, Set OSAL Loader unit test number of modules to OSAL_CO…
Browse files Browse the repository at this point in the history
…NFIG_MAX_MODULES.
  • Loading branch information
dzbaker committed Jul 6, 2022
1 parent 419c673 commit 02aa1d2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/unit-tests/osloader-test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ add_osal_ut_exe(osal_loader_UT ${TEST_MODULE_FILES})

# build many copies of the test module
# we need to have unique modules to load up to OS_MAX_MODULES
# This will cover up to 32 -- extras are ignored. If needed this can be increased.
set(MOD 32)
# This will cover up to $OSAL_CONFIG_MAX_MODULES + 1. If needed
# this can be increased by increasing $OSAL_CONFIG_MAX_MODULES.
math(EXPR MOD "${OSAL_CONFIG_MAX_MODULES} + 1")
while(MOD GREATER 0)
math(EXPR MOD "${MOD} - 1")
add_library(MODULE${MOD} SHARED ut_module.c)
Expand Down

0 comments on commit 02aa1d2

Please sign in to comment.