summaryrefslogtreecommitdiff
path: root/test-sha1-array.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2016-04-13 20:22:42 +0700
committerJunio C Hamano <gitster@pobox.com>2016-04-15 10:12:19 -0700
commite6e7530d10b74d763b4311ea93e0a831b810d6c2 (patch)
tree7ac83d3fecd39d6076f24eaddd6719a24c3b6ce8 /test-sha1-array.c
parent7897d84b8240720352e23030c35db461581b68e3 (diff)
downloadgit-e6e7530d10b74d763b4311ea93e0a831b810d6c2.tar.gz
test helpers: move test-* to t/helper/ subdirectory
This keeps top dir a bit less crowded. And because these programs are for testing purposes, it makes sense that they stay somewhere in t/ Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-sha1-array.c')
-rw-r--r--test-sha1-array.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/test-sha1-array.c b/test-sha1-array.c
deleted file mode 100644
index 60ea1d5f14..0000000000
--- a/test-sha1-array.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#include "cache.h"
-#include "sha1-array.h"
-
-static void print_sha1(const unsigned char sha1[20], void *data)
-{
- puts(sha1_to_hex(sha1));
-}
-
-int main(int argc, char **argv)
-{
- struct sha1_array array = SHA1_ARRAY_INIT;
- struct strbuf line = STRBUF_INIT;
-
- while (strbuf_getline(&line, stdin) != EOF) {
- const char *arg;
- unsigned char sha1[20];
-
- if (skip_prefix(line.buf, "append ", &arg)) {
- if (get_sha1_hex(arg, sha1))
- die("not a hexadecimal SHA1: %s", arg);
- sha1_array_append(&array, sha1);
- } else if (skip_prefix(line.buf, "lookup ", &arg)) {
- if (get_sha1_hex(arg, sha1))
- die("not a hexadecimal SHA1: %s", arg);
- printf("%d\n", sha1_array_lookup(&array, sha1));
- } else if (!strcmp(line.buf, "clear"))
- sha1_array_clear(&array);
- else if (!strcmp(line.buf, "for_each_unique"))
- sha1_array_for_each_unique(&array, print_sha1, NULL);
- else
- die("unknown command: %s", line.buf);
- }
- return 0;
-}