Files
libmetal/test/assert.c
Lefteris Ntafotis 1c3410be76 Add cross-platform tests for libmetal
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>
2025-11-04 15:13:26 +01:00

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;
}