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-05 21:17:59 +05:00
|
|
|
struct test_suite *arch_tests[] = {
|
2021-10-27 18:46:41 +05:00
|
|
|
#ifdef HAVE_DWARF_UNWIND_SUPPORT
|
2022-03-05 21:17:59 +05:00
|
|
|
&suite__dwarf_unwind,
|
2021-10-27 18:46:41 +05:00
|
|
|
#endif
|
2022-03-05 21:17:59 +05:00
|
|
|
&suite__vectors_page,
|
|
|
|
NULL,
|
2021-10-27 18:46:41 +05:00
|
|
|
};
|