swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 8befc50c49e8a271fd3cd7fb34258fe88d1dfcad authored by Johannes Schindelin on 14 December 2008, 22:10:52 UTC
Get rid of the last remnants of GIT_CONFIG_LOCAL
Tip revision: 8befc50
test-path-utils.c
#include "cache.h"

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);
		puts(buf);
	}

	if (argc >= 2 && !strcmp(argv[1], "make_absolute_path")) {
		while (argc > 2) {
			puts(make_absolute_path(argv[2]));
			argc--;
			argv++;
		}
	}

	if (argc == 4 && !strcmp(argv[1], "longest_ancestor_length")) {
		int len = longest_ancestor_length(argv[2], argv[3]);
		printf("%d\n", len);
	}

	return 0;
}
back to top