X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft4.c;h=b38a9a5fa9df44b132e1b3ef7854ff9b601a19e5;hb=e172ced0dcc937dfc433a33c7e20962b9e6b5ea0;hp=59331b8393b683713483c91ba3aac6d8a4b680de;hpb=ae2d0647bd3a555df77397b6c2f9c129fda0733a;p=idzebra-moved-to-github.git diff --git a/test/api/t4.c b/test/api/t4.c index 59331b8..b38a9a5 100644 --- a/test/api/t4.c +++ b/test/api/t4.c @@ -1,5 +1,5 @@ -/* $Id: t4.c,v 1.3 2003-06-23 15:36:12 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 +/* $Id: t4.c,v 1.11 2004-10-29 13:02:39 heikki 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,36 +20,32 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#include -#include +/* t4 - insert a small pile of records, search and fetch them */ +#include "testlib.h" + +const char *myrec[] = { + "\n" + " My title\n" + "\n", + 0}; + int main(int argc, char **argv) { int i; - ZebraService zs; - ZebraHandle zh; - const char *myrec = - "\n" - " My title\n" - "\n"; + ZebraService zs = start_up(0, argc, argv);; + ZebraHandle zh = zebra_open (zs); - yaz_log_init_file("t3.log"); - - nmem_init (); - - zs = zebra_start("t2.cfg"); - zh = zebra_open (zs); - zebra_select_database(zh, "Default"); + init_data(zh,myrec); zebra_begin_trans (zh, 1); for (i = 0; i<1200; i++) - zebra_record_insert (zh, myrec, strlen(myrec),0); + zebra_add_record (zh, myrec[0], strlen(myrec[0])); zebra_end_trans (zh); zebra_close(zh); zebra_stop(zs); - zs = zebra_start("t2.cfg"); + zs = start_service(""); zh = zebra_open (zs); zebra_select_database(zh, "Default"); @@ -87,10 +83,5 @@ int main(int argc, char **argv) } zebra_commit (zh); - zebra_close (zh); - zebra_stop (zs); - - nmem_exit (); - xmalloc_trav ("x"); - exit (0); + return close_down(zh,zs,0); }