2018-04-11 00:16:24 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <string.h>
|
|
|
|
#include "tests/tests.h"
|
|
|
|
#include "arch-tests.h"
|
|
|
|
|
2021-11-04 06:41:51 +00:00
|
|
|
struct test_suite *arch_tests[] = {
|
2018-04-11 00:16:24 +00:00
|
|
|
#ifdef HAVE_DWARF_UNWIND_SUPPORT
|
2021-11-04 06:41:50 +00:00
|
|
|
&suite__dwarf_unwind,
|
2018-04-11 00:16:24 +00:00
|
|
|
#endif
|
2021-11-04 06:41:50 +00:00
|
|
|
&suite__vectors_page,
|
2021-11-04 06:41:49 +00:00
|
|
|
NULL,
|
2018-04-11 00:16:24 +00:00
|
|
|
};
|