mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-02-05 19:26:31 +08:00
To-be-expanded suite of tests for libmetal using system-agnostic API instead of system specific tests. Signed-off-by: Lefteris Ntafotis <lntaf@ics.forth.gr>
20 lines
257 B
C
20 lines
257 B
C
/*
|
|
* Copyright (c) 2025, CARV ICS FORTH.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file assert.c
|
|
* @brief Cross-platform tests for assert interface
|
|
*/
|
|
|
|
#include <metal/assert.h>
|
|
|
|
int test_assert(void)
|
|
{
|
|
metal_assert(1);
|
|
|
|
return 0;
|
|
}
|