tests: Add mbedtls_test_ prefix to platform_* functions
Add mbedtls_test_ prefix to platform_setup() and platform_teardown() test helper functions. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
2058d56fcc
commit
e9c09f1efc
3 changed files with 6 additions and 6 deletions
|
@ -24,7 +24,7 @@
|
|||
static mbedtls_platform_context platform_ctx;
|
||||
#endif
|
||||
|
||||
int platform_setup( void )
|
||||
int mbedtls_test_platform_setup( void )
|
||||
{
|
||||
int ret = 0;
|
||||
#if defined(MBEDTLS_PLATFORM_C)
|
||||
|
@ -33,7 +33,7 @@ int platform_setup( void )
|
|||
return( ret );
|
||||
}
|
||||
|
||||
void platform_teardown( void )
|
||||
void mbedtls_test_platform_teardown( void )
|
||||
{
|
||||
#if defined(MBEDTLS_PLATFORM_C)
|
||||
mbedtls_platform_teardown( &platform_ctx );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue