1744e9a91SKim Phillips // SPDX-License-Identifier: GPL-2.0 2744e9a91SKim Phillips #include <string.h> 3744e9a91SKim Phillips #include "tests/tests.h" 4744e9a91SKim Phillips #include "arch-tests.h" 5744e9a91SKim Phillips 6744e9a91SKim Phillips struct test arch_tests[] = { 7744e9a91SKim Phillips #ifdef HAVE_DWARF_UNWIND_SUPPORT 8744e9a91SKim Phillips { 9744e9a91SKim Phillips .desc = "DWARF unwind", 10744e9a91SKim Phillips .func = test__dwarf_unwind, 11744e9a91SKim Phillips }, 12744e9a91SKim Phillips #endif 13744e9a91SKim Phillips { 14744e9a91SKim Phillips .func = NULL, 15744e9a91SKim Phillips }, 16744e9a91SKim Phillips }; 17