X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fxpath%2Fxpath2.c;h=8ec8f350d60bcf12c5738a67c1c21f2fe8a5e34c;hb=74fdf8a15af7bb827a256d9df3ecc34a57d2120f;hp=1d8e40f1dafc6517a55508c24452758e13e7180c;hpb=6c9fcd3b5d3108702fa1ffc92dab4ab6060f9a19;p=idzebra-moved-to-github.git diff --git a/test/xpath/xpath2.c b/test/xpath/xpath2.c index 1d8e40f..8ec8f35 100644 --- a/test/xpath/xpath2.c +++ b/test/xpath/xpath2.c @@ -1,4 +1,4 @@ -/* $Id: xpath2.c,v 1.3 2005-01-15 19:38:40 adam Exp $ +/* $Id: xpath2.c,v 1.5 2006-03-31 15:58:10 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -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(0, 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 +