arch-tests.c 264 B

1234567891011121314151617
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <string.h>
  3. #include "tests/tests.h"
  4. #include "arch-tests.h"
  5. struct test arch_tests[] = {
  6. #ifdef HAVE_DWARF_UNWIND_SUPPORT
  7. {
  8. .desc = "DWARF unwind",
  9. .func = test__dwarf_unwind,
  10. },
  11. #endif
  12. {
  13. .func = NULL,
  14. },
  15. };