Enhancements: Crypto
Details : Re-structure test data structures across tests and in turn
re-use the test data effectively.
Reduce overall RAM requirement(.data and .bss) which
effectively minimize the overall boot time.
The RAM consumption reduced to ~12K from ~105K.
With modified test data structures, the test logic code looks
cleaner and readable.
Note : Re-work for some of the left out tests will be done as part
of future release.
Signed-off-by: Vinay Kumar Kotegowder <vinaykumar.kotegowder@arm.com>
diff --git a/api-tests/tools/cmake/compiler/GNUARM.cmake b/api-tests/tools/cmake/compiler/GNUARM.cmake
index 62a0b76..20102e1 100644
--- a/api-tests/tools/cmake/compiler/GNUARM.cmake
+++ b/api-tests/tools/cmake/compiler/GNUARM.cmake
@@ -58,6 +58,6 @@
set(TARGET_SWITCH "-march=armv8-m.base -mcmse")
endif()
-set(CMAKE_C_FLAGS "${TARGET_SWITCH} -Wall -Werror -Wextra -fdata-sections -ffunction-sections -mno-unaligned-access")
+set(CMAKE_C_FLAGS "${TARGET_SWITCH} -g -Wall -Werror -Wextra -fdata-sections -ffunction-sections -mno-unaligned-access")
set(CMAKE_ASM_FLAGS "${TARGET_SWITCH} -mthumb")
set(CMAKE_EXE_LINKER_FLAGS "-Xlinker --fatal-warnings -Xlinker --gc-sections -z max-page-size=0x400 -lgcc -lc -lnosys")