unbound/testdata/speed_cache.tdir/makeqs.c
Wouter Wijngaards 5165e14802 tests in tdir format.
git-svn-id: file:///svn/unbound/trunk@4264 be551aaa-1e26-0410-a405-d3ace91eadb9
2017-07-06 13:27:30 +00:00

9 lines
226 B
C

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
int i;
int max = atoi(argv[1]);
for(i=0; i<max; i++)
printf("a%8.8d.example.com IN A\n", i);
return 0;
}