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