Staging
v0.5.1
https://github.com/git/git
Revision 7c181d627c136cbc67ef0f722e74e34017e662f0 authored by Junio C Hamano on 09 November 2008, 01:33:50 UTC, committed by Junio C Hamano on 09 November 2008, 05:29:22 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ee5391c
Raw File
Tip revision: 7c181d627c136cbc67ef0f722e74e34017e662f0 authored by Junio C Hamano on 09 November 2008, 01:33:50 UTC
GIT 1.6.0.4
Tip revision: 7c181d6
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