| 82 | } |
| 83 | |
| 84 | int test_htable_stat(AUT_LINE *test_line acl_unused, void *arg acl_unused) |
| 85 | { |
| 86 | const char *myname = "test_htable_stat"; |
| 87 | |
| 88 | if (__table == NULL) { |
| 89 | printf("%s: __table null\n", myname); |
| 90 | return (-1); |
| 91 | } |
| 92 | |
| 93 | acl_htable_stat(__table); |
| 94 | |
| 95 | return (0); |
| 96 | } |
| 97 | int test_htable_free(AUT_LINE *test_line acl_unused, void *arg acl_unused) |
| 98 | { |
| 99 | if (__table == NULL) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…