mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 13:38:24 +00:00
Widens test bounds on memory alloc tests
This commit is contained in:
parent
80119c5d28
commit
a557cfb9ad
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ void memory_buffer_alloc_oom_test()
|
|||
TEST_ASSERT( ptr_c == NULL );
|
||||
|
||||
mbedtls_memory_buffer_alloc_cur_get( &reported_bytes, &reported_blocks );
|
||||
TEST_ASSERT( reported_bytes == 864 );
|
||||
TEST_ASSERT( reported_bytes >= 864 && reported_bytes <= sizeof(buf) );
|
||||
|
||||
mbedtls_free( ptr_a );
|
||||
ptr_a = NULL;
|
||||
|
|
Loading…
Reference in a new issue