X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft3.c;h=be6188e772c5b95b020b30b0611fbe483d457e31;hb=ec214819d7b9e2f5c362584d8e38f83e13aae600;hp=771b95c8268af7a0e588bdf0009e0f3eb748afd2;hpb=6059368fdd11d7671beb904d6a4c6c98871e489c;p=idzebra-moved-to-github.git diff --git a/test/api/t3.c b/test/api/t3.c index 771b95c..be6188e 100644 --- a/test/api/t3.c +++ b/test/api/t3.c @@ -1,5 +1,5 @@ -/* $Id: t3.c,v 1.1 2003-05-19 21:37:38 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 +/* $Id: t3.c,v 1.9 2004-08-25 09:23:39 adam Exp $ + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps This file is part of the Zebra server. @@ -20,10 +20,19 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - +#include #include -#include +#include +/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */ +static ZebraService start_service() +{ + char cfg[256]; + char *srcdir = getenv("srcdir"); + sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : ""); + return zebra_start(cfg); +} + int main(int argc, char **argv) { int i; @@ -33,14 +42,18 @@ int main(int argc, char **argv) "\n" " My title\n" "\n"; + + yaz_log_init_file("t3.log"); + nmem_init (); - zs = zebra_start("t2.cfg"); + zs = start_service(); zh = zebra_open (zs); zebra_select_database(zh, "Default"); + zebra_init(zh); zebra_begin_trans (zh, 1); - zebra_record_insert (zh, myrec, strlen(myrec)); + zebra_add_record (zh, myrec, strlen(myrec)); zebra_end_trans (zh); for (i = 0; i<4; i++) @@ -61,7 +74,7 @@ int main(int argc, char **argv) zebra_begin_trans (zh, 0); sprintf(setname, "s%d", i+1); - zebra_search_rpn (zh, odr_input, odr_output, query, setname, &hits); + zebra_search_RPN (zh, odr_input, query, setname, &hits); zebra_end_trans (zh); zebra_end_trans (zh);