xref: /netbsd-src/external/bsd/unbound/dist/testdata/speed_cache.tdir/makeqs.c (revision 0cd9f4ecf44538bbdd5619b5b2081449960ab3e6)
1 /**
2  * \file
3  * This file creates queries for the speed test
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 /** main program to create queries, pass the number of them. */
main(int argc,char ** argv)8 int main(int argc, char** argv) {
9         int i;
10         int max = atoi(argv[1]);
11         for(i=0; i<max; i++)
12                 printf("a%8.8d.example.com IN A\n", i);
13         return 0;
14 }
15