Staging
v0.5.1
https://github.com/git/git
Revision 8d530c4d64ffcc853889f7b385f554d53db375ed authored by Junio C Hamano on 21 September 2015, 20:26:13 UTC, committed by Junio C Hamano on 21 September 2015, 20:26:13 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 74a844a
Raw File
Tip revision: 8d530c4d64ffcc853889f7b385f554d53db375ed authored by Junio C Hamano on 21 September 2015, 20:26:13 UTC
Git 2.6-rc3
Tip revision: 8d530c4
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