1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Add test_suite_memory_buffer_alloc

This commit is contained in:
Manuel Pégourié-Gonnard
2014-11-27 11:55:27 +01:00
committed by Paul Bakker
parent 5ba1d52f96
commit 765bb31d24
5 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
/* BEGIN_HEADER */
#include <polarssl/memory_buffer_alloc.h>
#define TEST_SUITE_MEMORY_BUFFER_ALLOC
/* END_HEADER */
/* BEGIN_DEPENDENCIES
* depends_on:POLARSSL_MEMORY_BUFFER_ALLOC_C
* END_DEPENDENCIES
*/
/* BEGIN_CASE depends_on:POLARSSL_SELF_TEST */
void memory_buffer_alloc_self_test( )
{
TEST_ASSERT( memory_buffer_alloc_self_test( 0 ) == 0 );
}
/* END_CASE */