]> git.ipfire.org Git - thirdparty/git.git/blob - test-path-utils.c
i18n: add no-op _() and N_() wrappers
[thirdparty/git.git] / test-path-utils.c
1 #include "cache.h"
2
3 int main(int argc, char **argv)
4 {
5 if (argc == 3 && !strcmp(argv[1], "normalize_path_copy")) {
6 char *buf = xmalloc(PATH_MAX + 1);
7 int rv = normalize_path_copy(buf, argv[2]);
8 if (rv)
9 buf = "++failed++";
10 puts(buf);
11 return 0;
12 }
13
14 if (argc >= 2 && !strcmp(argv[1], "make_absolute_path")) {
15 while (argc > 2) {
16 puts(make_absolute_path(argv[2]));
17 argc--;
18 argv++;
19 }
20 return 0;
21 }
22
23 if (argc == 4 && !strcmp(argv[1], "longest_ancestor_length")) {
24 int len = longest_ancestor_length(argv[2], argv[3]);
25 printf("%d\n", len);
26 return 0;
27 }
28
29 if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) {
30 char *prefix = strip_path_suffix(argv[2], argv[3]);
31 printf("%s\n", prefix ? prefix : "(null)");
32 return 0;
33 }
34
35 fprintf(stderr, "%s: unknown function name: %s\n", argv[0],
36 argv[1] ? argv[1] : "(there was none)");
37 return 1;
38 }