X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft1.c;h=fa092abc17f214a7cb19c9ea4ba283558404165f;hb=a479e3c7f966848a6fc71ac2c2c7f5db7068351b;hp=c276d4df1ec6d063d4734212b2565fffd6f633a8;hpb=7e75317bed8eecabcb57e59b16093a32238738e2;p=idzebra-moved-to-github.git diff --git a/test/api/t1.c b/test/api/t1.c index c276d4d..fa092ab 100644 --- a/test/api/t1.c +++ b/test/api/t1.c @@ -1,21 +1,45 @@ -/* - * $Id: t1.c,v 1.1 2002-02-20 17:30:02 adam Exp $ - */ +/* $Id: t1.c,v 1.17 2007-01-15 15:10:20 adam Exp $ + Copyright (C) 1995-2007 + Index Data ApS -#include +This file is part of the Zebra server. -int main(int argc, char **argv) -{ - ZebraService zs; - ZebraHandle zh; +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +/** t1 - just start and stop */ - nmem_init(); - zs = zebra_start("t1.cfg"); - zh = zebra_open (zs); +#include +#include "testlib.h" + +static void tst(int argc, char **argv) +{ + ZebraService zs = tl_start_up(0, argc, argv); + ZebraHandle zh = zebra_open(zs, 0); - zebra_close (zh); - zebra_stop (zs); - nmem_exit (); - xmalloc_trav ("x"); - exit (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 + */ +