X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Fbertorture.c;h=599e26f4df5bb6c67d2a976f8b404cffe233f140;hp=756512338b416dd5b21c1936538618f2e00a6bed;hb=787368da704bbde501d20b8846b5fed3e3a81a9a;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/client/bertorture.c b/client/bertorture.c index 7565123..599e26f 100644 --- a/client/bertorture.c +++ b/client/bertorture.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. - * - * $Id: bertorture.c,v 1.5 2007-01-03 08:42:13 adam Exp $ */ #include @@ -28,6 +26,7 @@ static int stop = 0; +/* static int send_packet(const char *host) { char buf[PACKET_SIZE]; @@ -53,7 +52,9 @@ static int send_packet(const char *host) cs_close(cs); return 0; } +*/ +/* static void test_file(const char *fname) { Z_GDU *req; @@ -63,7 +64,7 @@ static void test_file(const char *fname) int fd =open(fname, O_RDONLY, 0666); if (fd == -1) { - yaz_log(LOG_ERRNO|LOG_FATAL, "open %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "open %s", fname); exit (1); } while (off < sizeof(buf)) @@ -71,7 +72,7 @@ static void test_file(const char *fname) ssize_t rd; rd = read(fd, buf+off, sizeof(buf)-off); if (rd == -1) { - yaz_log(LOG_ERRNO|LOG_FATAL, "read %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "read %s", fname); exit (1); } if (rd == 0) @@ -80,7 +81,7 @@ static void test_file(const char *fname) } if (close(fd) == -1) { - yaz_log(LOG_ERRNO|LOG_FATAL, "close %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "close %s", fname); exit (1); } odr_setbuf(odr, buf, off, 0); @@ -88,6 +89,7 @@ static void test_file(const char *fname) odr_destroy(odr); } +*/ static void test_random(int run, const char *fname, const char *fname2, int *estat) @@ -113,7 +115,6 @@ static void test_random(int run, const char *fname, const char *fname2, char *mbuf; ODR odr; - nmem_init(); odr = odr_createmem(ODR_DECODE); if (fname) { @@ -121,7 +122,7 @@ static void test_random(int run, const char *fname, const char *fname2, int fd =open(fname, O_TRUNC|O_CREAT|O_WRONLY, 0666); if (fd == -1) { - yaz_log(LOG_ERRNO|LOG_FATAL, "open %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "open %s", fname); exit (1); } while (sizeof(buf)-j-off > 0) @@ -129,14 +130,14 @@ static void test_random(int run, const char *fname, const char *fname2, ssize_t wrote; wrote = write(fd, buf+off+j, sizeof(buf)-j-off); if (wrote <= 0) { - yaz_log(LOG_ERRNO|LOG_FATAL, "write %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "write %s", fname); exit (1); } off += wrote; } if (close(fd) == -1) { - yaz_log(LOG_ERRNO|LOG_FATAL, "close %s", fname); + yaz_log(YLOG_ERRNO|YLOG_FATAL, "close %s", fname); exit (1); } } @@ -156,7 +157,6 @@ static void test_random(int run, const char *fname, const char *fname2, free(mbuf); odr_reset(odr); odr_destroy(odr); - nmem_exit(); } if (dumpfile && dumpfile != stdout) fclose(dumpfile); @@ -224,6 +224,7 @@ int main(int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab