X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=bfile%2Ftstbfile1.c;h=f8ee24c417016d7d3aaa5f428b97f238c12c6b52;hp=45665668eea5b92462be3a9775d23d821af0c052;hb=97a7adeb9e5059463f039495cc01cfa448463a27;hpb=729c4dfa231681232d61ba74f64e2dd70342dd42 diff --git a/bfile/tstbfile1.c b/bfile/tstbfile1.c index 4566566..f8ee24c 100644 --- a/bfile/tstbfile1.c +++ b/bfile/tstbfile1.c @@ -1,8 +1,5 @@ -/* $Id: tstbfile1.c,v 1.2 2005-09-19 09:37:31 adam Exp $ - Copyright (C) 1995-2005 - 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 @@ -15,15 +12,15 @@ 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. +along with this program; if not, write to the Free Software +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,18 +161,35 @@ 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 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +