| 15 | } while (0) |
| 16 | |
| 17 | static int fill_tree_loc(struct oidtree *ot, const char *hexes[], size_t n) |
| 18 | { |
| 19 | for (size_t i = 0; i < n; i++) { |
| 20 | struct object_id oid; |
| 21 | cl_parse_any_oid(hexes[i], &oid); |
| 22 | oidtree_insert(ot, &oid, NULL); |
| 23 | } |
| 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | static void check_contains(struct oidtree *ot, const char *hex, bool expected) |
| 28 | { |
nothing calls this directly
no test coverage detected