Changeset 2044


Ignore:
Timestamp:
Jun 17, 2005, 6:32:39 AM (20 years ago)
Author:
bird
Message:

Porting to 64-bit FreeBSD...

Location:
trunk/src/libctests/glibc
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/libctests/glibc/Makefile

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2043 r2044  
    55all: test-logged
    66
     7#
     8# Basic setup.
     9#
     10OUTDIR = ./out
     11TS     = $(shell date '+"%Y-%m-%d-%H-%M-%S"')
     12LOG    = $(OUTDIR)/$(1)-$(TS).log
     13CC     = gcc
     14CFLAGS = -O -D_GNU_SOURCE -std=gnu99 -DOBJPFX=\"$(OUTDIR)/\"
     15ifeq ($(shell uname -m),amd64)
     16CFLAGS+= -I sysdeps/x86_64 -I .
     17else
     18CFLAGS+= -I sysdeps/i386/i686 -I sysdeps/i386 -I .
     19endif
     20
    721
    822#
     
    1024#
    1125ifeq ($(TARGET),)
    12 TARGET     := glibc
     26TARGET     := bsd
    1327endif
    1428
     
    1731EXCEPTIONS :=
    1832_TARGET_OK := ok
     33CFLAGS     += \
     34        -DHAVE_STRNLEN \
     35        -DHAVE_STPNCPY \
     36        -DHAVE_STRCHRNUL \
     37        -DHAVE_RAWMEMCHR \
     38        -DHAVE_MEMRCHR \
     39        -DHAVE_STRSEP \
     40        -DHAVE_STRNDUP \
     41        -DHAVE_MEMPCPY \
     42        -DHAVE_NEWLOCALE
    1943endif
    2044
     
    2650
    2751ifeq ($(TARGET),bsd)
    28 SKIPPED    :=
     52SKIPPED    := \
     53        string/test-mempcpy.c \
     54        string/test-stpncpy.c \
     55        string/tst-bswap.c \
     56        string/tst-strfry.c
    2957EXCEPTIONS :=
    3058_TARGET_OK := ok
     59CFLAGS     += -I sysdeps/unix/bsd -D__BSD__
    3160endif
    3261
     
    3564endif
    3665
    37 
    38 #
    39 # Basic setup.
    40 #
    41 OUTDIR = ./out
    42 TS     = $(shell date '+"%Y-%m-%d-%H-%M-%S"')
    43 LOG    = $(OUTDIR)/$(1)-$(TS).log
    44 CC     = gcc
    45 CFLAGS = -O -D_GNU_SOURCE -std=gnu99 -I sysdeps/i386/i686 -I sysdeps/i386 -I . -DOBJPFX=\"$(OUTDIR)/\"
    4666
    4767nothing:
  • TabularUnified trunk/src/libctests/glibc/string/test-memccpy.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    4848
    4949  if (p != NULL)
     50#if 0
    5051    return mempcpy (dst, src, p - src + 1);
     52#else
     53    {
     54      memcpy (dst, src, p - src + 1);
     55      return (char *)dst + ((char *)p - (char *)src + 1);
     56    }
     57#endif
    5158
    5259  memcpy (dst, src, n);
  • TabularUnified trunk/src/libctests/glibc/string/test-string.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    5252#define GLRO(x) _##x
    5353#include <hp-timing.h>
     54
     55/* bird added for bsd */
     56#ifndef TEMP_FAILURE_RETRY /* special GNU idea */
     57# define TEMP_FAILURE_RETRY(expression) \
     58  (__extension__                                                              \
     59    ({ long int __result;                                                     \
     60       do __result = (long int) (expression);                                 \
     61       while (__result == -1L && errno == EINTR);                             \
     62       __result; }))
     63#endif
     64#ifndef HAVE_STRNLEN
     65static inline size_t strnlen(const char *psz, size_t cch)
     66{
     67    const char *psz2 = psz;
     68    while (cch > 0 && *psz)
     69        cch--, psz++;
     70    return psz - psz2;
     71}
     72#endif
    5473
    5574
  • TabularUnified trunk/src/libctests/glibc/string/testcopy.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    2121#include <stdio.h>
    2222#include <string.h>
    23 #include <malloc.h>
     23/* #include <malloc.h> - <malloc.h> has been replaced by <stdlib.h>" */
    2424
    2525int
  • TabularUnified trunk/src/libctests/glibc/string/tester.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    267267test_stpncpy (void)
    268268{
     269#ifdef HAVE_STPNCPY
    269270  it = "stpncpy";
    270271  memset (one, 'x', sizeof (one));
     
    277278  check (stpncpy (one, "abcd", 6) == one + 4, 7);
    278279  check (one[4] == '\0' && one[5] == '\0' && one[6] == 'x', 8);
     280#endif
    279281}
    280282
     
    466468test_strchrnul (void)
    467469{
     470#ifdef HAVE_STRCHRNUL
    468471  const char *os;
    469472  it = "strchrnul";
     
    495498      }
    496499   }
     500#endif
    497501}
    498502
     
    500504test_rawmemchr (void)
    501505{
     506#ifdef HAVE_RAWMEMCHR
    502507  it = "rawmemchr";
    503508  (void) strcpy (one, "abcd");
     
    522527      }
    523528   }
     529#endif
    524530}
    525531
     
    573579test_memrchr (void)
    574580{
     581#ifdef HAVE_MEMRCHR
    575582  size_t l;
    576583  it = "memrchr";
     
    614621    }
    615622  }
     623 #endif
    616624}
    617625
     
    825833test_strsep (void)
    826834{
     835#ifdef HAVE_STRSEP
    827836  char *ptr;
    828837  it = "strsep";
     
    953962  check(ptr == one , 87);
    954963  check(cp == NULL, 88);
     964#endif
    955965}
    956966
     
    10521062test_mempcpy (void)
    10531063{
     1064#ifdef HAVE_MEMPCPY
    10541065  int i;
    10551066  it = "mempcpy";
     
    10841095      equal (two, "hi there", 12 + (i * 6));
    10851096    }
     1097#endif
    10861098}
    10871099
     
    12631275}
    12641276
     1277
    12651278static void
    12661279test_strndup (void)
    12671280{
     1281#ifdef HAVE_STRNDUP
    12681282  char *p, *q;
    12691283  it = "strndup";
     
    12851299    equal(p, "abc", 6);
    12861300  free (p);
     1301#endif
    12871302}
    12881303
  • TabularUnified trunk/src/libctests/glibc/string/tst-strlen.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    55#include <stdio.h>
    66#include <string.h>
     7
     8#ifndef HAVE_STRNLEN
     9static inline size_t strnlen(const char *psz, size_t cch)
     10{
     11    const char *psz2 = psz;
     12    while (cch > 0 && *psz)
     13        cch--, psz++;
     14    return psz - psz2;
     15}
     16#endif
    717
    818int
  • TabularUnified trunk/src/libctests/glibc/string/tst-strxfrm.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r2043 r2044  
    1616  size_t l;
    1717  char *buf;
     18#ifdef HAVE_NEWLOCALE
    1819  locale_t loc;
     20#endif
    1921  int result = 0;
    2022
     
    4042    }
    4143
     44#ifdef HAVE_NEWLOCALE
    4245  loc = newlocale (1 << LC_ALL, locale, NULL);
    4346
     
    5255
    5356  freelocale (loc);
     57#endif
    5458
    5559  free (buf);
     
    6569
    6670  result |= test ("C");
     71#ifdef __BSD__ /* bsd is missing the aliases. loosers. */
     72  result |= test ("en_US.ISO8859-1");
     73#else
    6774  result |= test ("en_US.ISO-8859-1");
     75#endif
    6876  result |= test ("de_DE.UTF-8");
    6977
  • TabularUnified trunk/src/libctests/glibc/test-skeleton.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r2043 r2044  
    2121#include <errno.h>
    2222#include <getopt.h>
    23 #include <malloc.h>
     23/*#include <malloc.h> - been replaced by <stdlib.h> ages ago */
    2424#include <search.h>
    2525#include <signal.h>
     
    3232#include <sys/param.h>
    3333#include <time.h>
     34
     35/* bird added for bsd */
     36#ifndef TEMP_FAILURE_RETRY /* special GNU idea */
     37# define TEMP_FAILURE_RETRY(expression) \
     38  (__extension__                                                              \
     39    ({ long int __result;                                                     \
     40       do __result = (long int) (expression);                                 \
     41       while (__result == -1L && errno == EINTR);                             \
     42       __result; }))
     43#endif
     44
     45#ifndef HAVE_QELEM
     46struct qelem
     47  {
     48    struct qelem *q_forw;
     49    struct qelem *q_back;
     50    char q_data[1];
     51  };
     52#endif
    3453
    3554/* The test function is normally called `do_test' and it is called
Note: See TracChangeset for help on using the changeset viewer.