X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fxpath%2Fxpath2.c;h=8ec8f350d60bcf12c5738a67c1c21f2fe8a5e34c;hb=74fdf8a15af7bb827a256d9df3ecc34a57d2120f;hp=394c117b08c8a373dcea01e7b8fe99d2f9c439a2;hpb=a34c87ac6c08ec62534e4068a5bd1fac93df8abe;p=idzebra-moved-to-github.git diff --git a/test/xpath/xpath2.c b/test/xpath/xpath2.c index 394c117..8ec8f35 100644 --- a/test/xpath/xpath2.c +++ b/test/xpath/xpath2.c @@ -1,6 +1,6 @@ -/* $Id: xpath2.c,v 1.1 2004-12-02 14:05:04 adam Exp $ - Copyright (C) 2003,2004 - Index Data Aps +/* $Id: xpath2.c,v 1.5 2006-03-31 15:58:10 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -69,14 +69,17 @@ const char *myrec[] = { 0}; -int main(int argc, char **argv) +static void tst(int argc, char **argv) { - ZebraService zs = start_up("zebraxpath.cfg", argc, argv); - ZebraHandle zh = zebra_open (zs); - init_data(zh, myrec); + ZebraService zs = tl_start_up(0, argc, argv); + ZebraHandle zh = zebra_open(zs, 0); + YAZ_CHECK(tl_init_data(zh, myrec)); - do_query(__LINE__,zh, "@attr 1=/Zthes/termName Sauropoda", 1); - do_query(__LINE__,zh, "@attr 1=/Zthes/relation/termName Sauropoda",1); + YAZ_CHECK(tl_query(zh, "@attr 1=/Zthes/termName Sauropoda", 1)); + YAZ_CHECK(tl_query(zh, "@attr 1=/Zthes/relation/termName Sauropoda", 1)); - return close_down(zh, zs, 0); + YAZ_CHECK(tl_close_down(zh, zs)); } + +TL_MAIN +