mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-07 15:09:28 +01:00
- Added CMake makefiles as alternative to regular Makefiles.
- Added preliminary Code Coverage tests for AES, ARC4, Base64, MPI, SHA-family, MD-family and HMAC-SHA-family.
This commit is contained in:
parent
48eab260e9
commit
367dae44b2
27 changed files with 4201 additions and 0 deletions
21
tests/CMakeLists.txt
Normal file
21
tests/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
function(add_test_suite suite_name)
|
||||
add_custom_command(
|
||||
OUTPUT test_suite_${suite_name}.c
|
||||
COMMAND scripts/generate_code.pl suites test_suite_${suite_name}
|
||||
DEPENDS scripts/generate_code.pl polarssl fct.h suites/helpers.function suites/test_suite_${suite_name}.function suites/test_suite_${suite_name}.data
|
||||
)
|
||||
|
||||
add_executable(test_suite_${suite_name} test_suite_${suite_name}.c)
|
||||
target_link_libraries(test_suite_${suite_name} polarssl)
|
||||
add_test(${suite_name}-suite test_suite_${suite_name})
|
||||
endfunction(add_test_suite)
|
||||
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-function -Wno-unused-value")
|
||||
|
||||
add_test_suite(mpi)
|
||||
add_test_suite(base64)
|
||||
add_test_suite(arc4)
|
||||
add_test_suite(mdx)
|
||||
add_test_suite(shax)
|
||||
add_test_suite(hmac_shax)
|
||||
add_test_suite(aes)
|
||||
Loading…
Add table
Add a link
Reference in a new issue