https://github.com/git/git
Raw File
Tip revision: e46fe3df01435bf523d2ab4f2755556c0e4e6f78 authored by Junio C Hamano on 14 April 2015, 18:57:13 UTC
Git 2.4.0-rc2
Tip revision: e46fe3d
test-read-cache.c
#include "cache.h"

int main (int argc, char **argv)
{
	int i, cnt = 1;
	if (argc == 2)
		cnt = strtol(argv[1], NULL, 0);
	for (i = 0; i < cnt; i++) {
		read_cache();
		discard_cache();
	}
	return 0;
}
back to top