X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fxpath%2Fxpath2.c;h=8ec8f350d60bcf12c5738a67c1c21f2fe8a5e34c;hb=74fdf8a15af7bb827a256d9df3ecc34a57d2120f;hp=bf60694185809dd6acea9c5ecbf60be35c203b00;hpb=cf7ec53452a6180dad6592df0458ac56a3b7963b;p=idzebra-moved-to-github.git diff --git a/test/xpath/xpath2.c b/test/xpath/xpath2.c index bf60694..8ec8f35 100644 --- a/test/xpath/xpath2.c +++ b/test/xpath/xpath2.c @@ -1,6 +1,6 @@ -/* $Id: xpath2.c,v 1.2 2004-12-15 13:07:07 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(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 +