Skip to content

Commit ab8ffc5

Browse files
softwareckiabonislawski
authored andcommitted
module: tester: Ensure tester module is only built when explicitly selected
Prevent the tester module from being built into the image unless explicitly configured, especially when it's configured as a loadable module and llext support is disabled. Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
1 parent de8883c commit ab8ffc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debug/tester/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if(zephyr) ### Zephyr ###
1414
add_subdirectory(llext ${PROJECT_BINARY_DIR}/tester_llext)
1515
add_dependencies(app tester)
1616

17-
elseif(CONFIG_COMP_TESTER)
17+
elseif(CONFIG_COMP_TESTER STREQUAL "y")
1818

1919
zephyr_library_sources(${base_files})
2020

0 commit comments

Comments
 (0)