X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft0.c;h=15ddb77bc67e45caf9097c7d11f0b92681f1a2e5;hb=651974e51cda5f503b3cbecbe11370a329d6b7e4;hp=d41cdfbc9709f80e49d34fd9e640ee08a01aa3b5;hpb=f1ec926159c7559f181e7be8dbc9276b9e75f739;p=idzebra-moved-to-github.git diff --git a/test/api/t0.c b/test/api/t0.c index d41cdfb..15ddb77 100644 --- a/test/api/t0.c +++ b/test/api/t0.c @@ -1,4 +1,4 @@ -/* $Id: t0.c,v 1.2 2006-03-25 15:33:43 adam Exp $ +/* $Id: t0.c,v 1.4 2006-05-10 08:13:35 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -22,18 +22,20 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /** t0 - test zebra_start .. */ -#include -#include -#include - -int main(int argc, char **argv) +#include "testlib.h" + +static void tst(int argc, char **argv) { - ZebraService zs; + tl_start_log(argc, argv); + YAZ_CHECK(!zebra_start("xxxxpoiasdfasfd.cfg")); /* should fail */ +} - YAZ_CHECK_INIT(argc, argv); - - zs = zebra_start("xxxxpoiasdfasfd.cfg"); - YAZ_CHECK(!zs); +TL_MAIN +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ - YAZ_CHECK_TERM; -}