| 660 | } |
| 661 | |
| 662 | int main(int ac, char **av) |
| 663 | { |
| 664 | int n = TEST_ITEMS; |
| 665 | start(); |
| 666 | while (n--) { |
| 667 | test(); |
| 668 | } |
| 669 | report(); |
| 670 | #if defined(DEV_BUILD) && defined(FIRESTR) |
| 671 | getDefaultMemoryPool()->print_contents(stdout, 0); |
| 672 | #endif |
| 673 | printf("Press enter to continue\n"); |
| 674 | getchar(); |
| 675 | return 0; |
| 676 | } |
nothing calls this directly
no test coverage detected