X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstnmem.c;h=2ed2e56a85ed1d089111cad64d586399b0d582c5;hb=9cc8f4a4d0fd7f1e4bd6c9d5c85ef2dccaab5743;hp=54048c812fe18ff9ee516a42cd2b597fb37eb447;hpb=7bfa924f0f58b494c4aba33320183374ffd594cd;p=yaz-moved-to-github.git diff --git a/test/tstnmem.c b/test/tstnmem.c index 54048c8..2ed2e56 100644 --- a/test/tstnmem.c +++ b/test/tstnmem.c @@ -1,8 +1,8 @@ /* - * Copyright (c) 2002-2004, Index Data + * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: tstnmem.c,v 1.2 2004-09-29 20:15:48 adam Exp $ + * $Id: tstnmem.c,v 1.4 2005-01-15 19:47:15 adam Exp $ */ #if HAVE_CONFIG_H @@ -31,6 +31,14 @@ int main (int argc, char **argv) cp = nmem_malloc(n, j); if (!cp) exit(2); + if (sizeof(long) >= j) + *(long*) cp = 123L; +#if HAVE_LONG_LONG + if (sizeof(long long) >= j) + *(long long*) cp = 123L; +#endif + if (sizeof(double) >= j) + *(double*) cp = 12.2; } for (j = 2000; j<20000; j+= 2000)