mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 07:45:43 +01:00
17 lines
374 B
Plaintext
17 lines
374 B
Plaintext
/* 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 */
|