summaryrefslogtreecommitdiff
path: root/test-path-utils.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2009-03-21 22:59:19 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2009-03-21 22:59:19 -0700
commite10d48de74ec8c01d0528217abf465af7bbf5a56 (patch)
treee1a72297641e6d83de8aa23525949022bb466bff /test-path-utils.c
parentMerge branch 'jc/maint-1.6.0-pack-directory' into maint-1.6.1 (diff)
parentRemove unused normalize_absolute_path() (diff)
downloadtgif-e10d48de74ec8c01d0528217abf465af7bbf5a56.tar.xz
Merge branch 'js/maint-1.6.0-path-normalize' into maint-1.6.1
* js/maint-1.6.0-path-normalize: Remove unused normalize_absolute_path() Test and fix normalize_path_copy() Fix GIT_CEILING_DIRECTORIES on Windows Move sanitary_path_copy() to path.c and rename it to normalize_path_copy() Make test-path-utils more robust against incorrect use
Diffstat (limited to 'test-path-utils.c')
-rw-r--r--test-path-utils.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/test-path-utils.c b/test-path-utils.c
index 2c0f5a37e8..5168a8e3df 100644
--- a/test-path-utils.c
+++ b/test-path-utils.c
@@ -2,11 +2,13 @@
int main(int argc, char **argv)
{
- if (argc == 3 && !strcmp(argv[1], "normalize_absolute_path")) {
+ if (argc == 3 && !strcmp(argv[1], "normalize_path_copy")) {
char *buf = xmalloc(PATH_MAX + 1);
- int rv = normalize_absolute_path(buf, argv[2]);
- assert(strlen(buf) == rv);
+ 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")) {
@@ -15,12 +17,16 @@ int main(int argc, char **argv)
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;
+ fprintf(stderr, "%s: unknown function name: %s\n", argv[0],
+ argv[1] ? argv[1] : "(there was none)");
+ return 1;
}