X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=test-path-utils.c;h=e7671593df6bf014f3a9d8bd5173d1edcfd6545b;hb=909ca7b9ac11711478aaa5dd4ab17a0d1dabe075;hp=a0bcb0e210523124fa977c8bf46667cf25d0335f;hpb=4d9e42f8f11c57b32b976a943c8ddaf6214e64b8;p=git.git diff --git a/test-path-utils.c b/test-path-utils.c index a0bcb0e21..e7671593d 100644 --- a/test-path-utils.c +++ b/test-path-utils.c @@ -2,25 +2,37 @@ int main(int argc, char **argv) { - if (argc == 3 && !strcmp(argv[1], "normalize_absolute_path")) { - char *buf = xmalloc(strlen(argv[2])+1); - int rv = normalize_absolute_path(buf, argv[2]); - assert(strlen(buf) == rv); + if (argc == 3 && !strcmp(argv[1], "normalize_path_copy")) { + char *buf = xmalloc(PATH_MAX + 1); + int rv = normalize_path_copy(buf, argv[2]); + if (rv) + buf = "++failed++"; puts(buf); + return 0; } - if (argc >= 2 && !strcmp(argv[1], "make_absolute_path")) { + if (argc >= 2 && !strcmp(argv[1], "real_path")) { while (argc > 2) { - puts(make_absolute_path(argv[2])); + puts(real_path(argv[2])); argc--; argv++; } + return 0; } if (argc == 4 && !strcmp(argv[1], "longest_ancestor_length")) { int len = longest_ancestor_length(argv[2], argv[3]); printf("%d\n", len); + return 0; } - return 0; + if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) { + char *prefix = strip_path_suffix(argv[2], argv[3]); + printf("%s\n", prefix ? prefix : "(null)"); + return 0; + } + + fprintf(stderr, "%s: unknown function name: %s\n", argv[0], + argv[1] ? argv[1] : "(there was none)"); + return 1; }