update nearly all FSF copyright year lists to include 2009
[gnulib.git] / tests / test-verify.c
1 /* Test the "verify" module.
2
3    Copyright (C) 2005, 2009 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Bruno Haible.  */
19
20 #include <config.h>
21
22 #include "verify.h"
23
24 int x;
25 enum { a, b, c };
26
27 verify (x >= 0);                  /* should give ERROR: non-constant expression */
28 verify (c == 2);                  /* should be ok */
29 verify (1 + 1 == 3);              /* should give ERROR */
30 verify (1 == 1); verify (1 == 1); /* should be ok */
31
32 enum
33 {
34   item = verify_true (1 == 1) * 0 + 17 /* should be ok */
35 };
36
37 int function (int n)
38 {
39   verify (n >= 0);                  /* should give ERROR: non-constant expression */
40   verify (c == 2);                  /* should be ok */
41   verify (1 + 1 == 3);              /* should give ERROR */
42   verify (1 == 1); verify (1 == 1); /* should be ok */
43
44   if (n)
45     return (verify_true (1 == 1), verify_true (1 == 1), 7); /* should be ok */
46   else
47     return (verify_true (1 == 2), 5); /* should give ERROR */
48 }