| 1002 | } |
| 1003 | |
| 1004 | static int |
| 1005 | testsuite_setup(void) |
| 1006 | { |
| 1007 | TEST_ASSERT_SUCCESS(read_test_vector(), "Test suite setup failed\n"); |
| 1008 | |
| 1009 | if (populate_active_devices() == 0) { |
| 1010 | printf("No suitable devices found!\n"); |
| 1011 | return TEST_SKIPPED; |
| 1012 | } |
| 1013 | |
| 1014 | return TEST_SUCCESS; |
| 1015 | } |
| 1016 | |
| 1017 | static int |
| 1018 | interrupt_testsuite_setup(void) |
nothing calls this directly
no test coverage detected