X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=bfile%2Ftstbfile1.c;h=f8ee24c417016d7d3aaa5f428b97f238c12c6b52;hp=c0da22e358e0da66546e474cd616ce36cd746134;hb=97a7adeb9e5059463f039495cc01cfa448463a27;hpb=4478d785b7769691261005c98063b98a5a5971b3 diff --git a/bfile/tstbfile1.c b/bfile/tstbfile1.c index c0da22e..f8ee24c 100644 --- a/bfile/tstbfile1.c +++ b/bfile/tstbfile1.c @@ -1,8 +1,5 @@ -/* $Id: tstbfile1.c,v 1.4 2006-08-14 10:40:05 adam Exp $ - Copyright (C) 1995-2006 - Index Data ApS - -This file is part of the Zebra server. +/* This file is part of the Zebra server. + Copyright (C) 1995-2008 Index Data 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 @@ -20,10 +17,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include #include #include #include +#include void tst1(BFiles bfs) { @@ -34,18 +31,19 @@ void tst1(BFiles bfs) bf_reset(bfs); bf = bf_xopen(bfs, "tst", /* block size */ 32, /* wr */ 1, "tstmagic", &version, 0 /* more_info */); - + YAZ_CHECK(bf); + if (!bf) + return; bf_xclose(bf, version, "more info"); bf = bf_xopen(bfs, "tst", /* block size */ 32, /* wr */ 1, "tstmagic", &version, &more_info); + + YAZ_CHECK(bf); + if (!bf) + return; - if (strcmp(more_info, "more info")) - { - fprintf(stderr, "tstbfile1: more info data corrupt more_info=%s\n", - more_info); - exit(1); - } + YAZ_CHECK(strcmp(more_info, "more info") == 0); bf_xclose(bf, version, 0 /* no more info */); } @@ -59,35 +57,25 @@ void tst2(BFiles bfs) bf = bf_xopen(bfs, "tst", /* block size */ 32, /* wr */ 1, "tstmagic", &version, 0 /* more_info */); - + YAZ_CHECK(bf); + if (!bf) + return; bno = 0; for (i = 1; i<30; i++) { int j; for (j = 0; j= 0 && no_in_use <= BLOCKS); + YAZ_CHECK(no_in_use >= 0); + YAZ_CHECK(no_in_use <= BLOCKS); if (r < 5 && (BLOCKS - no_in_use) > 0) { /* alloc phase */ @@ -157,7 +148,7 @@ void tst3(BFiles bfs) j++; } } - assert(tblocks[to_free-start-1]); + YAZ_CHECK(tblocks[to_free-start-1]); bf_free(bf, to_free - start, tblocks); } else @@ -170,21 +161,30 @@ void tst3(BFiles bfs) bf_xclose(bf, version, 0); } -int main(int argc, char **argv) +static void tst(void) { BFiles bfs = bfs_create(0, /* register: current dir, no limit */ 0 /* base: current dir */ ); + YAZ_CHECK(bfs); if (!bfs) - exit(1); + return; tst1(bfs); tst2(bfs); tst3(bfs); bf_reset(bfs); bfs_destroy(bfs); - exit(0); } + +int main(int argc, char **argv) +{ + YAZ_CHECK_INIT(argc, argv); + YAZ_CHECK_LOG(); + tst(); + YAZ_CHECK_TERM; +} + /* * Local variables: * c-basic-offset: 4