2021-10-27 18:46:41 +05:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <string.h>
|
|
|
|
#include "tests/tests.h"
|
|
|
|
#include "arch-tests.h"
|
|
|
|
|
2022-03-15 21:16:25 +05:00
|
|
|
struct test arch_tests[] = {
|
2021-10-27 18:46:41 +05:00
|
|
|
#ifdef HAVE_DWARF_UNWIND_SUPPORT
|
2022-03-15 21:16:25 +05:00
|
|
|
{
|
|
|
|
.desc = "DWARF unwind",
|
|
|
|
.func = test__dwarf_unwind,
|
|
|
|
},
|
2021-10-27 18:46:41 +05:00
|
|
|
#endif
|
2022-03-15 21:16:25 +05:00
|
|
|
{
|
|
|
|
.desc = "Vectors page",
|
|
|
|
.func = test__vectors_page,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.func = NULL,
|
|
|
|
},
|
2021-10-27 18:46:41 +05:00
|
|
|
};
|