arch-tests.c 233 B

12345678910111213141516
  1. #include <string.h>
  2. #include "tests/tests.h"
  3. #include "arch-tests.h"
  4. struct test arch_tests[] = {
  5. #ifdef HAVE_DWARF_UNWIND_SUPPORT
  6. {
  7. .desc = "Test dwarf unwind",
  8. .func = test__dwarf_unwind,
  9. },
  10. #endif
  11. {
  12. .func = NULL,
  13. },
  14. };