X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=isamb%2Ftstisamb.c;h=be9823d3aa9ae95f45655fb9492a26e51863f6a6;hp=048e6cbd21562a0534f24385d964013f1398c8ac;hb=89d3a004b7c651fd5673abfc192e1472dc4d4197;hpb=506e2c39ef2e84e1bfdf96715fdd98d00dade948 diff --git a/isamb/tstisamb.c b/isamb/tstisamb.c index 048e6cb..be9823d 100644 --- a/isamb/tstisamb.c +++ b/isamb/tstisamb.c @@ -1,5 +1,5 @@ -/* $Id: tstisamb.c,v 1.22 2005-10-27 09:09:52 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: tstisamb.c,v 1.28 2007-01-15 15:10:17 adam Exp $ + Copyright (C) 1995-2007 Index Data ApS This file is part of the Zebra server. @@ -15,11 +15,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 + */ +#if HAVE_SYS_TIMES_H +#include +#endif +#if HAVE_SYS_TIME_H +#include +#endif + #include #include #include @@ -27,16 +34,18 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #include +static int log_level = 0; + static void log_item(int level, const void *b, const char *txt) { int x; memcpy(&x, b, sizeof(int)); - yaz_log(YLOG_DEBUG, "%s %d", txt, x); + yaz_log(log_level, "%s %d", txt, x); } static void log_pr(const char *txt) { - yaz_log(YLOG_DEBUG, "%s", txt); + yaz_log(log_level, "%s", txt); } int compare_item(const void *a, const void *b) @@ -52,7 +61,7 @@ int compare_item(const void *a, const void *b) return 0; } -void *code_start() +void *code_start(void) { return 0; } @@ -96,8 +105,8 @@ int code_read(void *vp, char **dst, int *insertMode) ri->val = ri->val + ri->step; *insertMode = ri->insertMode; -#if 1 - yaz_log(YLOG_DEBUG, "%d %5d", ri->insertMode, x); +#if 0 + yaz_log(log_level, "%d %5d", ri->insertMode, x); #endif return 1; } @@ -140,7 +149,7 @@ void tst_insert(ISAMB isb, int n) nerrs++; } else if (nerrs) - yaz_log(YLOG_LOG, "isamb_pp_read. n=%d Got %d", + yaz_log(log_level, "isamb_pp_read. n=%d Got %d", n, x); ri.val++; @@ -556,7 +565,6 @@ int main(int argc, char **argv) yaz_log(YLOG_WARN, "isamb_open failed"); exit(2); } -#if 1 tst_insert(isb, 1); tst_insert(isb, 2); tst_insert(isb, 20); @@ -569,7 +577,6 @@ int main(int argc, char **argv) tst_x(isb); tst_append(isb, 1000); -#endif if (0) identical_keys_tests(isb); @@ -581,3 +588,11 @@ int main(int argc, char **argv) exit(0); return 0; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +