1. Exclude the file regress.c from the Zephyr testing sample. The test
   is covered in many other environments already. The test needs some
   retooling to fit in with the Zephyr build, as it is a standalone
   application with a main() function and it depends on a testing build
   of libwolfssh.
2. Whitespace.
pull/855/head
John Safranek 2025-12-09 09:17:47 -08:00
parent 2e5484f36f
commit 03ca9221a3
1 changed files with 6 additions and 2 deletions

View File

@ -4,8 +4,12 @@ find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(wolfssl_tests)
FILE(GLOB app_sources ../../../tests/*.c ../../../examples/client/client.c
../../../examples/client/common.c ../../../examples/echoserver/echoserver.c
../../../examples/sftpclient/sftpclient.c tests.c)
../../../examples/client/common.c ../../../examples/echoserver/echoserver.c
../../../examples/sftpclient/sftpclient.c tests.c)
# Remove the file regress.c from the list of test app sources. The regression
# test is covered in many other environments.
list(REMOVE_ITEM app_sources
"${CMAKE_CURRENT_SOURCE_DIR}/../../../tests/regress.c")
target_sources(app PRIVATE ${app_sources})
add_definitions(-DWOLFSSL_ZEPHYR)
add_definitions(-DWOLFSSL_USER_SETTINGS)