X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft9.c;fp=test%2Fapi%2Ft9.c;h=bd91356ad41e94c0b829bf091015ae26485247b4;hb=f84ad20a7a6a45d02da7f162fa6bb1137e79a07f;hp=07d1f4579d8984eec9f2deaaffce116e7ea5f91f;hpb=7a3e232fcaa32abd41ddcdc66fe7155827d47836;p=idzebra-moved-to-github.git diff --git a/test/api/t9.c b/test/api/t9.c index 07d1f45..bd91356 100644 --- a/test/api/t9.c +++ b/test/api/t9.c @@ -1,4 +1,4 @@ -/* $Id: t9.c,v 1.2 2004-10-28 15:24:36 heikki Exp $ +/* $Id: t9.c,v 1.3 2004-10-29 13:02:39 heikki Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -22,33 +22,21 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /** t9.c - test rank-1 */ -#include -#include -#include #include "testlib.h" #include "rankingrecords.h" #define qry(zh,query,hits,string,score) \ - RankingQuery(__LINE__,(zh),(query),(hits),(string),(score)) + ranking_query(__LINE__,(zh),(query),(hits),(string),(score)) int main(int argc, char **argv) { - ZebraService zs; - ZebraHandle zh; + ZebraService zs = start_up(0, argc, argv); + ZebraHandle zh = zebra_open (zs); - yaz_log_init_file("t9.log"); - /* yaz_log_init_level(LOG_ALL); */ - - nmem_init (); - - zs = start_service(""); /* default to zebra.cfg */ - zh = zebra_open (zs); init_data(zh, recs); - zebra_select_database(zh, "Default"); - qry( zh, "@attr 1=1016 @attr 2=102 the", 3, "first title", 872 ); @@ -61,11 +49,5 @@ int main(int argc, char **argv) 3, "third title", 895 ); - zebra_close (zh); - zebra_stop (zs); - - nmem_exit (); - xmalloc_trav ("x"); - logf(LOG_LOG,"============ ALL TESTS PASSED OK ============"); - exit(0); + return close_down(zh,zs,0); }