1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Fix tests to work with DEPRECATED_REMOVED

This commit is contained in:
Manuel Pégourié-Gonnard
2015-03-23 13:59:10 +01:00
parent c70581c272
commit e46c6c38c9
3 changed files with 7 additions and 7 deletions

View File

@ -203,17 +203,16 @@ int main( int argc, char *argv[] )
return( ret );
#endif
/* Slow tests last */
#if defined(POLARSSL_PBKDF2_C)
#if defined(POLARSSL_PBKDF2_C) && !defined(POLARSSL_DEPRECATED_REMOVED)
if( ( ret = pbkdf2_self_test( v ) ) != 0 )
return( ret );
#else
#endif
#if defined(POLARSSL_PKCS5_C)
if( ( ret = pkcs5_self_test( v ) ) != 0 )
return( ret );
#endif
#endif
/* Slow tests last */
/* Not stable enough on Windows and FreeBSD yet */
#if __linux__ && defined(POLARSSL_TIMING_C)