Staging
v0.5.1
https://github.com/git/git
Revision 537f6c7fb40257776a513128043112ea43b5cdb8 authored by Junio C Hamano on 06 April 2010, 22:00:01 UTC, committed by Junio C Hamano on 06 April 2010, 22:00:01 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b807c52
Raw File
Tip revision: 537f6c7fb40257776a513128043112ea43b5cdb8 authored by Junio C Hamano on 06 April 2010, 22:00:01 UTC
Git 1.7.1-rc0
Tip revision: 537f6c7
test-path-utils.c
#include "cache.h"

int main(int argc, char **argv)
{
	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")) {
		while (argc > 2) {
			puts(make_absolute_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;
	}

	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;
}
back to top