X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fxpath%2Fxpath2.c;h=4590bf8259ad754d51c47107fd7c9b22df49a282;hb=7f417885b90eff084fc83be569b98e30dad4a056;hp=1d8e40f1dafc6517a55508c24452758e13e7180c;hpb=6c9fcd3b5d3108702fa1ffc92dab4ab6060f9a19;p=idzebra-moved-to-github.git diff --git a/test/xpath/xpath2.c b/test/xpath/xpath2.c index 1d8e40f..4590bf8 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.6 2006-05-10 08:13:41 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -69,14 +69,25 @@ 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 + +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +