Blame tests/mpz/t-oddeven.c

Packit 5c3484
/* Test mpz_odd_p and mpz_even_p.
Packit 5c3484
Packit 5c3484
Copyright 2000, 2001 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
This file is part of the GNU MP Library test suite.
Packit 5c3484
Packit 5c3484
The GNU MP Library test suite is free software; you can redistribute it
Packit 5c3484
and/or modify it under the terms of the GNU General Public License as
Packit 5c3484
published by the Free Software Foundation; either version 3 of the License,
Packit 5c3484
or (at your option) any later version.
Packit 5c3484
Packit 5c3484
The GNU MP Library test suite is distributed in the hope that it will be
Packit 5c3484
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 5c3484
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit 5c3484
Public License for more details.
Packit 5c3484
Packit 5c3484
You should have received a copy of the GNU General Public License along with
Packit 5c3484
the GNU MP Library test suite.  If not, see https://www.gnu.org/licenses/.  */
Packit 5c3484
Packit 5c3484
#include <stdio.h>
Packit 5c3484
#include <stdlib.h>
Packit 5c3484
#include "gmp.h"
Packit 5c3484
#include "gmp-impl.h"
Packit 5c3484
#include "tests.h"
Packit 5c3484
Packit 5c3484
void
Packit 5c3484
check_data (void)
Packit 5c3484
{
Packit 5c3484
  static const struct {
Packit 5c3484
    const char  *n;
Packit 5c3484
    int          odd, even;
Packit 5c3484
  } data[] = {
Packit 5c3484
    {   "0", 0, 1 },
Packit 5c3484
    {   "1", 1, 0 },
Packit 5c3484
    {   "2", 0, 1 },
Packit 5c3484
    {   "3", 1, 0 },
Packit 5c3484
    {   "4", 0, 1 },
Packit 5c3484
Packit 5c3484
    {  "-4", 0, 1 },
Packit 5c3484
    {  "-3", 1, 0 },
Packit 5c3484
    {  "-2", 0, 1 },
Packit 5c3484
    {  "-1", 1, 0 },
Packit 5c3484
Packit 5c3484
    {  "0x1000000000000000000000000000000000000000000000000000", 0, 1 },
Packit 5c3484
    {  "0x1000000000000000000000000000000000000000000000000001", 1, 0 },
Packit 5c3484
    {  "0x1000000000000000000000000000000000000000000000000002", 0, 1 },
Packit 5c3484
    {  "0x1000000000000000000000000000000000000000000000000003", 1, 0 },
Packit 5c3484
Packit 5c3484
    { "-0x1000000000000000000000000000000000000000000000000004", 0, 1 },
Packit 5c3484
    { "-0x1000000000000000000000000000000000000000000000000003", 1, 0 },
Packit 5c3484
    { "-0x1000000000000000000000000000000000000000000000000002", 0, 1 },
Packit 5c3484
    { "-0x1000000000000000000000000000000000000000000000000001", 1, 0 },
Packit 5c3484
  };
Packit 5c3484
Packit 5c3484
  mpz_t  n;
Packit 5c3484
  int    i;
Packit 5c3484
Packit 5c3484
  mpz_init (n);
Packit 5c3484
  for (i = 0; i < numberof (data); i++)
Packit 5c3484
    {
Packit 5c3484
      mpz_set_str_or_abort (n, data[i].n, 0);
Packit 5c3484
Packit 5c3484
      if ((mpz_odd_p (n) != 0) != data[i].odd)
Packit 5c3484
	{
Packit 5c3484
	  printf ("mpz_odd_p wrong on data[%d]\n", i);
Packit 5c3484
	  abort();
Packit 5c3484
	}
Packit 5c3484
Packit 5c3484
      if ((mpz_even_p (n) != 0) != data[i].even)
Packit 5c3484
	{
Packit 5c3484
	  printf ("mpz_even_p wrong on data[%d]\n", i);
Packit 5c3484
	  abort();
Packit 5c3484
	}
Packit 5c3484
    }
Packit 5c3484
Packit 5c3484
  mpz_clear (n);
Packit 5c3484
}
Packit 5c3484
Packit 5c3484
int
Packit 5c3484
main (void)
Packit 5c3484
{
Packit 5c3484
  tests_start ();
Packit 5c3484
Packit 5c3484
  check_data ();
Packit 5c3484
Packit 5c3484
  tests_end ();
Packit 5c3484
  exit (0);
Packit 5c3484
}