Blame resolv/tst-p_secstodate.c

Packit 6c4009
/* Test __p_secstodate compat symbol.
Packit 6c4009
   Copyright (C) 2017-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <array_length.h>
Packit 6c4009
#include <limits.h>
Packit 6c4009
#include <resolv.h>
Packit 6c4009
#include <stdbool.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
Packit 6c4009
#include <shlib-compat.h>
Packit 6c4009
Packit 6c4009
#if TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)
Packit 6c4009
Packit 6c4009
char *__p_secstodate (unsigned long int);
Packit 6c4009
compat_symbol_reference (libresolv, __p_secstodate, __p_secstodate, GLIBC_2_0);
Packit 6c4009
Packit 6c4009
struct test
Packit 6c4009
{
Packit 6c4009
  /* Argument to __p_secstodate.  */
Packit 6c4009
  unsigned long int in;
Packit 6c4009
  /* Expected output.  */
Packit 6c4009
  const char *out;
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
static const struct test tests[] =
Packit 6c4009
  {
Packit 6c4009
    { 0UL, "19700101000000" },
Packit 6c4009
    { 12345UL, "19700101032545" },
Packit 6c4009
    { 999999999UL, "20010909014639" },
Packit 6c4009
    { 2147483647UL, "20380119031407" },
Packit 6c4009
    { 2147483648UL, "<overflow>" },
Packit 6c4009
    { 4294967295UL, "<overflow>" },
Packit 6c4009
# if ULONG_MAX > 0xffffffffUL
Packit 6c4009
    { 4294967296UL, "<overflow>" },
Packit 6c4009
    { 9999999999UL, "<overflow>" },
Packit 6c4009
    { LONG_MAX, "<overflow>" },
Packit 6c4009
    { ULONG_MAX, "<overflow>" },
Packit 6c4009
# endif
Packit 6c4009
  };
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  int ret = 0;
Packit 6c4009
  for (size_t i = 0; i < array_length (tests); i++)
Packit 6c4009
    {
Packit 6c4009
      char *p = __p_secstodate (tests[i].in);
Packit 6c4009
      printf ("Test %zu: %lu -> %s\n", i, tests[i].in, p);
Packit 6c4009
      if (strcmp (p, tests[i].out) != 0)
Packit 6c4009
	{
Packit 6c4009
	  printf ("test %zu failed", i);
Packit 6c4009
	  ret = 1;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  return ret;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#else
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  return 77;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#include <support/test-driver.c>