X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=bfile%2Ftstbfile1.c;h=81f3209fe7a42f75024e2e853acd7f612eba23d3;hp=45665668eea5b92462be3a9775d23d821af0c052;hb=aeea139423b8eaf28a4de53b3d7b2ad1f22284e7;hpb=729c4dfa231681232d61ba74f64e2dd70342dd42 diff --git a/bfile/tstbfile1.c b/bfile/tstbfile1.c index 4566566..81f3209 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) 1994-2011 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,18 @@ 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 +#if HAVE_CONFIG_H +#include +#endif #include #include #include +#include void tst1(BFiles bfs) { @@ -32,20 +32,21 @@ void tst1(BFiles bfs) const char *more_info = 0; bf_reset(bfs); - bf = bf_xopen(bfs, "tst", /* block size */ 32, + 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, + + bf = bf_xopen(bfs, "tst", /* block size */ 32, /* wr */ 1, "tstmagic", &version, &more_info); - if (strcmp(more_info, "more info")) - { - fprintf(stderr, "tstbfile1: more info data corrupt more_info=%s\n", - more_info); - exit(1); - } + YAZ_CHECK(bf); + if (!bf) + return; + + YAZ_CHECK(strcmp(more_info, "more info") == 0); bf_xclose(bf, version, 0 /* no more info */); } @@ -57,37 +58,27 @@ void tst2(BFiles bfs) BFile bf; bf_reset(bfs); - bf = bf_xopen(bfs, "tst", /* block size */ 32, + 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,31 +151,49 @@ 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 { bf_xclose(bf, version, 0); - bf = bf_xopen(bfs, "tst", /* block size */ 32, + bf = bf_xopen(bfs, "tst", /* block size */ 32, /* wr */ 1, "tstmagic", &version, 0 /* more_info */); } } 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 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +