| 340 | } |
| 341 | |
| 342 | static int |
| 343 | __test_stack(uint32_t flags) |
| 344 | { |
| 345 | if (test_stack_basic(flags) < 0) |
| 346 | return -1; |
| 347 | |
| 348 | if (test_lookup_null() < 0) |
| 349 | return -1; |
| 350 | |
| 351 | if (test_free_null() < 0) |
| 352 | return -1; |
| 353 | |
| 354 | if (test_stack_name_reuse(flags) < 0) |
| 355 | return -1; |
| 356 | |
| 357 | if (test_stack_name_length(flags) < 0) |
| 358 | return -1; |
| 359 | |
| 360 | if (test_stack_multithreaded(flags) < 0) |
| 361 | return -1; |
| 362 | |
| 363 | return 0; |
| 364 | } |
| 365 | |
| 366 | static int |
| 367 | test_stack(void) |
no test coverage detected