Extended test suite to be run for C++ Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
19 lines
249 B
C
19 lines
249 B
C
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <ztest.h>
|
|
#include <string.h>
|
|
|
|
#include "test.inc"
|
|
|
|
void test_cxx(void);
|
|
void test_cc(void);
|
|
|
|
void test_main(void)
|
|
{
|
|
test_cc();
|
|
test_cxx();
|
|
}
|