X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft0.c;h=15ddb77bc67e45caf9097c7d11f0b92681f1a2e5;hb=b61682c79e8311e1ec73d22872a56ff934c9b249;hp=51c92d69f31bc636e0e427beca9737a67eca63e7;hpb=38bd819ed5b2c30a9bc302412d04f9cb8d345f02;p=idzebra-moved-to-github.git diff --git a/test/api/t0.c b/test/api/t0.c index 51c92d6..15ddb77 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.4 2006-05-10 08:13:35 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -22,17 +22,20 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA /** t0 - test zebra_start .. */ -#include #include "testlib.h" - -int main(int argc, char **argv) + +static void tst(int argc, char **argv) { - ZebraService zs; + tl_start_log(argc, argv); + YAZ_CHECK(!zebra_start("xxxxpoiasdfasfd.cfg")); /* should fail */ +} - start_log(argc, argv); +TL_MAIN +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ - zs = zebra_start("xxxxpoiasdfasfd.cfg"); - if (zs) - exit(1); - return 0; -}