summaryrefslogtreecommitdiff
path: root/test-string-list.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2012-10-28 16:16:27 (GMT)
committerJeff King <peff@peff.net>2012-10-29 06:34:58 (GMT)
commit059b37934c611b1b9b735e0310ba282a0c7f5eba (patch)
treec1438784babc6ee81faae36311bc31d52fb5e5e4 /test-string-list.c
parent1b77d83cab798668d8a54a05b3fa0262486f7dfc (diff)
downloadgit-059b37934c611b1b9b735e0310ba282a0c7f5eba.zip
git-059b37934c611b1b9b735e0310ba282a0c7f5eba.tar.gz
git-059b37934c611b1b9b735e0310ba282a0c7f5eba.tar.bz2
string_list_longest_prefix(): remove function
This function was added in f103f95b11d087f07c0c48bf784cd9197e18f203 in the erroneous expectation that it would be used in the reimplementation of longest_ancestor_length(). But it turned out to be easier to use a function specialized for comparing path prefixes (i.e., one that knows about slashes and root paths) than to prepare the paths in such a way that a generic string prefix comparison function can be used. So delete string_list_longest_prefix() and its documentation and test cases. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'test-string-list.c')
-rw-r--r--test-string-list.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/test-string-list.c b/test-string-list.c
index 4693295..00ce6c9 100644
--- a/test-string-list.c
+++ b/test-string-list.c
@@ -97,26 +97,6 @@ int main(int argc, char **argv)
return 0;
}
- if (argc == 4 && !strcmp(argv[1], "longest_prefix")) {
- /* arguments: <colon-separated-prefixes>|- <string> */
- struct string_list prefixes = STRING_LIST_INIT_DUP;
- int retval;
- const char *prefix_string = argv[2];
- const char *string = argv[3];
- const char *match;
-
- parse_string_list(&prefixes, prefix_string);
- match = string_list_longest_prefix(&prefixes, string);
- if (match) {
- printf("%s\n", match);
- retval = 0;
- }
- else
- retval = 1;
- string_list_clear(&prefixes, 0);
- return retval;
- }
-
fprintf(stderr, "%s: unknown function name: %s\n", argv[0],
argv[1] ? argv[1] : "(there was none)");
return 1;