zephyr/tests/unit/list/main.c
Anas Nashif 8ff5417dfc Revert "tests: dlist to add a testcase and add some tags"
This reverts commit 2c92af5a80.

See #26619

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2020-07-02 14:40:20 -05:00

22 lines
389 B
C

/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_slist(void);
extern void test_sflist(void);
extern void test_dlist(void);
void test_main(void)
{
ztest_test_suite(dlist,
ztest_unit_test(test_dlist),
ztest_unit_test(test_slist),
ztest_unit_test(test_sflist)
);
ztest_run_test_suite(dlist);
}