Blame gnulib-tests/test-verify.c

Packit 709fb3
/* Test the "verify" module.
Packit 709fb3
Packit 709fb3
   Copyright (C) 2005, 2009-2017 Free Software Foundation, Inc.
Packit 709fb3
Packit 709fb3
   This program is free software: you can redistribute it and/or modify
Packit 709fb3
   it under the terms of the GNU General Public License as published by
Packit 709fb3
   the Free Software Foundation; either version 3 of the License, or
Packit 709fb3
   (at your option) any later version.
Packit 709fb3
Packit 709fb3
   This program is distributed in the hope that it will be useful,
Packit 709fb3
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 709fb3
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 709fb3
   GNU General Public License for more details.
Packit 709fb3
Packit 709fb3
   You should have received a copy of the GNU General Public License
Packit 709fb3
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 709fb3
Packit 709fb3
/* Written by Bruno Haible.  */
Packit 709fb3
Packit 709fb3
#include <config.h>
Packit 709fb3
Packit 709fb3
#include "verify.h"
Packit 709fb3
Packit 709fb3
#ifndef EXP_FAIL
Packit 709fb3
# define EXP_FAIL 0
Packit 709fb3
#endif
Packit 709fb3
Packit 709fb3
int x;
Packit 709fb3
enum { a, b, c };
Packit 709fb3
Packit 709fb3
#if EXP_FAIL == 1
Packit 709fb3
verify (x >= 0);                  /* should give ERROR: non-constant expression */
Packit 709fb3
#endif
Packit 709fb3
verify (c == 2);                  /* should be ok */
Packit 709fb3
#if EXP_FAIL == 2
Packit 709fb3
verify (1 + 1 == 3);              /* should give ERROR */
Packit 709fb3
#endif
Packit 709fb3
verify (1 == 1); verify (1 == 1); /* should be ok */
Packit 709fb3
Packit 709fb3
enum
Packit 709fb3
{
Packit 709fb3
  item = verify_true (1 == 1) * 0 + 17 /* should be ok */
Packit 709fb3
};
Packit 709fb3
Packit 709fb3
static int
Packit 709fb3
function (int n)
Packit 709fb3
{
Packit 709fb3
#if EXP_FAIL == 3
Packit 709fb3
  verify (n >= 0);                  /* should give ERROR: non-constant expression */
Packit 709fb3
#endif
Packit 709fb3
  verify (c == 2);                  /* should be ok */
Packit 709fb3
#if EXP_FAIL == 4
Packit 709fb3
  verify (1 + 1 == 3);              /* should give ERROR */
Packit 709fb3
#endif
Packit 709fb3
  verify (1 == 1); verify (1 == 1); /* should be ok */
Packit 709fb3
Packit 709fb3
  if (n)
Packit 709fb3
    return ((void) verify_expr (1 == 1, 1), verify_expr (1 == 1, 8)); /* should be ok */
Packit 709fb3
#if EXP_FAIL == 5
Packit 709fb3
  return verify_expr (1 == 2, 5); /* should give ERROR */
Packit 709fb3
#endif
Packit 709fb3
  return 0;
Packit 709fb3
}
Packit 709fb3
Packit 709fb3
int
Packit 709fb3
main (void)
Packit 709fb3
{
Packit 709fb3
  return !(function (0) == 0 && function (1) == 8);
Packit 709fb3
}