| 48 | } |
| 49 | |
| 50 | int main(int argc acl_unused, char *argv[] acl_unused) |
| 51 | { |
| 52 | bool use_slice; |
| 53 | |
| 54 | if (argc >= 2 && strcasecmp(argv[1], "slice") == 0) |
| 55 | use_slice = true; |
| 56 | else |
| 57 | use_slice = false; |
| 58 | fifo_test(use_slice); |
| 59 | getchar(); |
| 60 | return (0); |
| 61 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…