X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft1.c;h=22cc18218550bccebd76dd26e5b77e8769ee98d7;hb=5437b50633032595afe6f87dc0f989bc92a5aea8;hp=c276d4df1ec6d063d4734212b2565fffd6f633a8;hpb=7e75317bed8eecabcb57e59b16093a32238738e2;p=idzebra-moved-to-github.git diff --git a/test/api/t1.c b/test/api/t1.c index c276d4d..22cc182 100644 --- a/test/api/t1.c +++ b/test/api/t1.c @@ -1,21 +1,34 @@ -/* - * $Id: t1.c,v 1.1 2002-02-20 17:30:02 adam Exp $ - */ +/* $Id: t1.c,v 1.10 2004-10-29 13:02:39 heikki Exp $ + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002 + Index Data Aps -#include +This file is part of the Zebra server. +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 "testlib.h" + + int main(int argc, char **argv) { - ZebraService zs; - ZebraHandle zh; - - nmem_init(); - zs = zebra_start("t1.cfg"); - zh = zebra_open (zs); + ZebraService zs = start_up(0, argc, argv); + ZebraHandle zh = zebra_open (zs); - zebra_close (zh); - zebra_stop (zs); - nmem_exit (); - xmalloc_trav ("x"); - exit (0); + return close_down(zh,zs,0); }