X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fbenchmark.c;h=942742c16f15e085a06059ed82a4d12dfe4f5d26;hb=942203900c897670ff5b764a1d128b190653e334;hp=2d36326de31103b5a4f3e1d74569a9cb56f3655b;hpb=ccd8958b42e2d3d6aee55dd1201d56eb7a278b56;p=yaz-moved-to-github.git diff --git a/util/benchmark.c b/util/benchmark.c index 2d36326..942742c 100644 --- a/util/benchmark.c +++ b/util/benchmark.c @@ -1,4 +1,4 @@ -/* $Id: benchmark.c,v 1.4 2004-01-26 21:05:34 mike Exp $ +/* $Id: benchmark.c,v 1.6 2004-06-15 09:58:13 adam Exp $ * Copyright (C) 2003-2004 Index Data Aps * * This file is part of the YAZ toolkit. @@ -39,8 +39,7 @@ struct options { static int test(char *host, int port); -static void dprintf(int level, char *fmt, ...); - +static void db_printf(int level, char *fmt, ...); int main(int argc, char **argv) { @@ -84,12 +83,12 @@ int main(int argc, char **argv) port = atoi(argv[optind+1]); for (i = 0; i < options.nconnect; i++) { - dprintf(2, "iteration %d of %d", i+1, options.nconnect); + db_printf(2, "iteration %d of %d", i+1, options.nconnect); ok = test(host, port); if (ok) nok++; } - dprintf(1, "passed %d of %d tests", nok, options.nconnect); + db_printf(1, "passed %d of %d tests", nok, options.nconnect); if (nok < options.nconnect) printf("Failed %d of %d tests\n", options.nconnect-nok, options.nconnect); @@ -115,8 +114,7 @@ static int test(char *host, int port) return 1; } - -static void dprintf(int level, char *fmt, ...) +static void db_printf(int level, char *fmt, ...) { va_list ap;