blob: b25bcf139b2bf61292eb9910cb4f92d8ce7763bd [file] [log] [blame]
René Scharfe1ecb5ff2013-06-09 19:39:17 +02001#include "cache.h"
2
3int main (int argc, char **argv)
4{
5 int i, cnt = 1;
6 if (argc == 2)
7 cnt = strtol(argv[1], NULL, 0);
8 for (i = 0; i < cnt; i++) {
9 read_cache();
10 discard_cache();
11 }
12 return 0;
13}