| 370 | } |
| 371 | |
| 372 | static int |
| 373 | test_lf_stack(void) |
| 374 | { |
| 375 | #if defined(RTE_STACK_LF_SUPPORTED) |
| 376 | return __test_stack(RTE_STACK_F_LF); |
| 377 | #else |
| 378 | return TEST_SKIPPED; |
| 379 | #endif |
| 380 | } |
| 381 | |
| 382 | REGISTER_FAST_TEST(stack_autotest, false, true, test_stack); |
| 383 | REGISTER_FAST_TEST(stack_lf_autotest, false, true, test_lf_stack); |
nothing calls this directly
no test coverage detected