X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=test%2Fapi%2Ftestlib.h;h=9b59e153c4a9a893ff4832fd3b97ae94876478e5;hp=c6ceb79a1aaff950fc23447b707ca63641b780a7;hb=97a7adeb9e5059463f039495cc01cfa448463a27;hpb=6db760372765ddc1ebf4f00f1b3b85832abb1048 diff --git a/test/api/testlib.h b/test/api/testlib.h index c6ceb79..9b59e15 100644 --- a/test/api/testlib.h +++ b/test/api/testlib.h @@ -1,8 +1,5 @@ -/* $Id: testlib.h,v 1.22 2006-08-23 07:37:02 adam Exp $ - Copyright (C) 1995-2006 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1995-2008 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -28,6 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include #include +#include /** * tl_start_up : Does all the usual start functions @@ -43,7 +41,7 @@ ZebraService tl_start_up(char *cfgname, int argc, char **argv); * get_srcdir : returns the source dir. Most often ".", but when * making distcheck, some other dir */ -const char *tl_get_srcdir(); +const char *tl_get_srcdir(void); /** * start_log: open a log file @@ -122,6 +120,18 @@ int tl_meta_query(ZebraHandle zh, char *query, int exphits, */ void tl_check_filter(ZebraService zs, const char *name); +ZEBRA_RES tl_fetch_first_compare(ZebraHandle zh, + const char *element_set, + const Odr_oid *format, const char *cmp_rec); + +ZEBRA_RES tl_fetch(ZebraHandle zh, + int position, const char *element_set, + const Odr_oid * format, ODR odr, + const char **rec_buf, size_t *rec_len); +ZEBRA_RES tl_fetch_compare(ZebraHandle zh, + int position, const char *element_set, + const Odr_oid *format, const char *cmp_rec); + #define TL_MAIN int main(int argc, char **argv) { \ YAZ_CHECK_INIT(argc, argv); YAZ_CHECK_LOG(); tst(argc, argv); YAZ_CHECK_TERM; } /*