Blame stdlib/tst-width.c

Packit 6c4009
/* Test integer width macros.
Packit 6c4009
   Copyright (C) 2016-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 <limits.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
Packit 6c4009
#define CHECK_WIDTH(TYPE, MAX, WIDTH)					\
Packit 6c4009
  do									\
Packit 6c4009
    {									\
Packit 6c4009
      if ((MAX >> ((TYPE) -1 < 0 ? (WIDTH - 2) : (WIDTH - 1))) != 1)	\
Packit 6c4009
	{								\
Packit 6c4009
	  puts ("bad width of " #TYPE);					\
Packit 6c4009
	  result = 1;							\
Packit 6c4009
	}								\
Packit 6c4009
      else								\
Packit 6c4009
	puts ("width of " #TYPE " OK");					\
Packit 6c4009
    }									\
Packit 6c4009
  while (0)
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  int result = 0;
Packit 6c4009
#ifndef CHAR_WIDTH
Packit 6c4009
# error "missing CHAR_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (char, CHAR_MAX, CHAR_WIDTH);
Packit 6c4009
#ifndef SCHAR_WIDTH
Packit 6c4009
# error "missing SCHAR_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (signed char, SCHAR_MAX, SCHAR_WIDTH);
Packit 6c4009
#ifndef UCHAR_WIDTH
Packit 6c4009
# error "missing UCHAR_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (unsigned char, UCHAR_MAX, UCHAR_WIDTH);
Packit 6c4009
#ifndef SHRT_WIDTH
Packit 6c4009
# error "missing SHRT_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (signed short, SHRT_MAX, SHRT_WIDTH);
Packit 6c4009
#ifndef USHRT_WIDTH
Packit 6c4009
# error "missing USHRT_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (unsigned short, USHRT_MAX, USHRT_WIDTH);
Packit 6c4009
#ifndef INT_WIDTH
Packit 6c4009
# error "missing INT_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (signed int, INT_MAX, INT_WIDTH);
Packit 6c4009
#ifndef UINT_WIDTH
Packit 6c4009
# error "missing UINT_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (unsigned int, UINT_MAX, UINT_WIDTH);
Packit 6c4009
#ifndef LONG_WIDTH
Packit 6c4009
# error "missing LONG_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (signed long, LONG_MAX, LONG_WIDTH);
Packit 6c4009
#ifndef ULONG_WIDTH
Packit 6c4009
# error "missing ULONG_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (unsigned long, ULONG_MAX, ULONG_WIDTH);
Packit 6c4009
#ifndef LLONG_WIDTH
Packit 6c4009
# error "missing LLONG_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (signed long long, LLONG_MAX, LLONG_WIDTH);
Packit 6c4009
#ifndef ULLONG_WIDTH
Packit 6c4009
# error "missing ULLONG_WIDTH"
Packit 6c4009
#endif
Packit 6c4009
  CHECK_WIDTH (unsigned long long, ULLONG_MAX, ULLONG_WIDTH);
Packit 6c4009
  return result;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#define TEST_FUNCTION do_test ()
Packit 6c4009
#include "../test-skeleton.c"