Bump year. Change Aps->ApS
[idzebra-moved-to-github.git] / test / api / t1.c
index c276d4d..3f6a7ca 100644 (file)
@@ -1,21 +1,34 @@
-/*
- * $Id: t1.c,v 1.1 2002-02-20 17:30:02 adam Exp $
- */
+/* $Id: t1.c,v 1.12 2005-01-15 19:38:35 adam Exp $
+   Copyright (C) 1995-2005
+   Index Data ApS
 
-#include <zebraapi.h>
+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);
 }