From: Adam Dickmeiss Date: Sat, 25 Mar 2006 15:33:43 +0000 (+0000) Subject: Using yaz/test.h X-Git-Tag: before.bug.529~198 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=f1ec926159c7559f181e7be8dbc9276b9e75f739;p=idzebra-moved-to-github.git Using yaz/test.h --- diff --git a/test/api/t0.c b/test/api/t0.c index 51c92d6..d41cdfb 100644 --- a/test/api/t0.c +++ b/test/api/t0.c @@ -1,4 +1,4 @@ -/* $Id: t0.c,v 1.1 2006-02-21 15:23:11 adam Exp $ +/* $Id: t0.c,v 1.2 2006-03-25 15:33:43 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -23,16 +23,17 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /** t0 - test zebra_start .. */ #include -#include "testlib.h" +#include +#include int main(int argc, char **argv) { ZebraService zs; - start_log(argc, argv); - + YAZ_CHECK_INIT(argc, argv); + zs = zebra_start("xxxxpoiasdfasfd.cfg"); - if (zs) - exit(1); - return 0; + YAZ_CHECK(!zs); + + YAZ_CHECK_TERM; }