mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Remove test_valgrind_constant_flow_psa_no_asm
+ typo fix Signed-off-by: Elena Uziunaite <elena.uziunaite@arm.com>
This commit is contained in:
@ -248,7 +248,7 @@
|
|||||||
#error "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN requires building with MemorySanitizer"
|
#error "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN requires building with MemorySanitizer"
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_HAS_MEMSAN) && defined(MBEDTLS_HAVE_ASM)
|
#if defined(MBEDTLS_HAS_MEMSAN) && defined(MBEDTLS_HAVE_ASM)
|
||||||
#error "MEMSAN does not support assembly implementation"
|
#error "MemorySanitizer does not support assembly implementation"
|
||||||
#endif
|
#endif
|
||||||
#undef MBEDTLS_HAS_MEMSAN // temporary macro defined above
|
#undef MBEDTLS_HAS_MEMSAN // temporary macro defined above
|
||||||
|
|
||||||
|
@ -151,31 +151,6 @@ component_release_test_valgrind_constant_flow_psa () {
|
|||||||
make memcheck
|
make memcheck
|
||||||
}
|
}
|
||||||
|
|
||||||
component_release_test_valgrind_constant_flow_psa_no_asm () {
|
|
||||||
# This tests both (1) everything that valgrind's memcheck usually checks
|
|
||||||
# (heap buffer overflows, use of uninitialized memory, use-after-free,
|
|
||||||
# etc.) and (2) branches or memory access depending on secret values,
|
|
||||||
# which will be reported as uninitialized memory. To distinguish between
|
|
||||||
# secret and actually uninitialized:
|
|
||||||
# - unset MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND - does the failure persist?
|
|
||||||
# - or alternatively, build with debug info and manually run the offending
|
|
||||||
# test suite with valgrind --track-origins=yes, then check if the origin
|
|
||||||
# was TEST_CF_SECRET() or something else.
|
|
||||||
msg "build: cmake release GCC, full config minus MBEDTLS_HAVE_ASM with constant flow testing"
|
|
||||||
scripts/config.py full
|
|
||||||
scripts/config.py set MBEDTLS_TEST_CONSTANT_FLOW_VALGRIND
|
|
||||||
scripts/config.py unset MBEDTLS_AESNI_C
|
|
||||||
scripts/config.py unset MBEDTLS_HAVE_ASM
|
|
||||||
skip_suites_without_constant_flow
|
|
||||||
cmake -D CMAKE_BUILD_TYPE:String=Release .
|
|
||||||
make
|
|
||||||
|
|
||||||
# this only shows a summary of the results (how many of each type)
|
|
||||||
# details are left in Testing/<date>/DynamicAnalysis.xml
|
|
||||||
msg "test: some suites (full minus MBEDTLS_HAVE_ASM, valgrind + constant flow)"
|
|
||||||
make memcheck
|
|
||||||
}
|
|
||||||
|
|
||||||
component_test_tsan () {
|
component_test_tsan () {
|
||||||
msg "build: TSan (clang)"
|
msg "build: TSan (clang)"
|
||||||
scripts/config.py full
|
scripts/config.py full
|
||||||
|
Reference in New Issue
Block a user