X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=test%2Fapi%2Ft1.c;h=867a681c78a50edd61a4fa2e31e43f5db58c7990;hp=c276d4df1ec6d063d4734212b2565fffd6f633a8;hb=ecb3935e78cd9bcfdebafdee0834cfb1060d7b5e;hpb=7e75317bed8eecabcb57e59b16093a32238738e2 diff --git a/test/api/t1.c b/test/api/t1.c index c276d4d..867a681 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.15 2006-05-10 08:13:35 adam Exp $ + Copyright (C) 1995-2005 + 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 Zebra; see the file LICENSE.zebra. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. +*/ + +/** t1 - just start and stop */ + +#include +#include "testlib.h" - nmem_init(); - zs = zebra_start("t1.cfg"); - zh = zebra_open (zs); +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 + */ +