From 9e678d07eb1deabb1cd342c6510512e9c82685cf Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 24 Dec 2003 16:23:43 +0000 Subject: [PATCH] Empty benchmarking application --- util/.cvsignore | 1 + util/Makefile.am | 6 ++++-- util/benchmark.c | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 util/benchmark.c diff --git a/util/.cvsignore b/util/.cvsignore index b750665..c20ce4f 100644 --- a/util/.cvsignore +++ b/util/.cvsignore @@ -14,3 +14,4 @@ srwtst yaz-config yaz-iconv yaz-marcdump +yaz-benchmark diff --git a/util/Makefile.am b/util/Makefile.am index 62796a0..e5a2eaa 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -1,6 +1,6 @@ ## Copyright (C) 1994-2003, Index Data ## All rights reserved. -## $Id: Makefile.am,v 1.23 2003-10-27 12:21:38 adam Exp $ +## $Id: Makefile.am,v 1.24 2003-12-24 16:23:43 mike Exp $ TESTS = $(check_PROGRAMS) @@ -11,7 +11,7 @@ EXTRA_DIST = yaz-asncomp AM_CPPFLAGS=-I$(top_srcdir)/include bin_PROGRAMS = yaz-marcdump yaz-iconv -noinst_PROGRAMS = cclsh cql2pqf cql2xcql srwtst +noinst_PROGRAMS = cclsh cql2pqf cql2xcql srwtst yaz-benchmark # MARC dumper utility yaz_marcdump_LDADD = ../src/libyaz.la @@ -33,4 +33,6 @@ cql2pqf_LDADD = ../src/libyaz.la cql2xcql_SOURCES = cql2xcql.c cql2xcql_LDADD = ../src/libyaz.la +yaz_benchmark_LDADD = ../src/libyaz.la +yaz_benchmark_SOURCES = benchmark.c diff --git a/util/benchmark.c b/util/benchmark.c new file mode 100644 index 0000000..963e510 --- /dev/null +++ b/util/benchmark.c @@ -0,0 +1,18 @@ +/* $Id: benchmark.c,v 1.1 2003-12-24 16:23:43 mike Exp $ + Copyright (C) 2003 + Index Data Aps + + This file is part of the YAZ toolkit. + + See the file LICENSE. +*/ + +#include +#include + +#include + + +int main(int argc, char **argv) +{ +} -- 1.7.10.4