Bump year. Change Aps->ApS
[idzebra-moved-to-github.git] / test / api / t9.c
index 07d1f45..014045d 100644 (file)
@@ -1,6 +1,6 @@
-/* $Id: t9.c,v 1.2 2004-10-28 15:24:36 heikki Exp $
-   Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
-   Index Data Aps
+/* $Id: t9.c,v 1.5 2005-01-15 19:38:35 adam Exp $
+   Copyright (C) 1995-2005
+   Index Data ApS
 
 This file is part of the Zebra server.
 
@@ -22,33 +22,20 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 
 /** t9.c - test rank-1 */
 
-#include <yaz/log.h>
-#include <yaz/pquery.h>
-#include <idzebra/api.h>
-
 #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;
-
-    yaz_log_init_file("t9.log");
-    /* yaz_log_init_level(LOG_ALL); */
+    ZebraService zs = start_up(0, argc, argv);
+    ZebraHandle zh = zebra_open(zs);
 
-    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 );
 
@@ -60,12 +47,5 @@ int main(int argc, char **argv)
     qry( zh, "@attr 1=1016 @attr 2=102 @or @or the foo bar",
             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);
 }