sequencer.c: fix overflow & segfault in parse_strategy_opts()
[git.git] / t / helper / test-oid-array.c
blobd1324d086a24c0575e6beadaeef2ce1e8b6a80f0
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "oid-array.h"
5 static int print_oid(const struct object_id *oid, void *data)
7 puts(oid_to_hex(oid));
8 return 0;
11 int cmd__oid_array(int argc, const char **argv)
13 struct oid_array array = OID_ARRAY_INIT;
14 struct strbuf line = STRBUF_INIT;
15 int nongit_ok;
17 setup_git_directory_gently(&nongit_ok);
19 while (strbuf_getline(&line, stdin) != EOF) {
20 const char *arg;
21 struct object_id oid;
23 if (skip_prefix(line.buf, "append ", &arg)) {
24 if (get_oid_hex(arg, &oid))
25 die("not a hexadecimal oid: %s", arg);
26 oid_array_append(&array, &oid);
27 } else if (skip_prefix(line.buf, "lookup ", &arg)) {
28 if (get_oid_hex(arg, &oid))
29 die("not a hexadecimal oid: %s", arg);
30 printf("%d\n", oid_array_lookup(&array, &oid));
31 } else if (!strcmp(line.buf, "clear"))
32 oid_array_clear(&array);
33 else if (!strcmp(line.buf, "for_each_unique"))
34 oid_array_for_each_unique(&array, print_oid, NULL);
35 else
36 die("unknown command: %s", line.buf);
39 strbuf_release(&line);
40 oid_array_clear(&array);
42 return 0;