| 2 | #include "zdb_test.h" |
| 3 | |
| 4 | int main(int argc acl_unused, char *argv[] acl_unused) |
| 5 | { |
| 6 | acl_mem_slice_init(8, 1024, 100000, |
| 7 | ACL_SLICE_FLAG_GC2 | |
| 8 | ACL_SLICE_FLAG_RTGC_OFF | |
| 9 | ACL_SLICE_FLAG_LP64_ALIGN); |
| 10 | if (argc == 2 && strncasecmp(argv[1], "zdb", 3) == 0) { |
| 11 | acl_msg_open("test.log", "zdb_test"); |
| 12 | zdb_test_main(argv[1]); |
| 13 | } else |
| 14 | zdb_test_main("zdb:help"); |
| 15 | return (0); |
| 16 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…