1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
enum-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
typedef enum
{
END = -1,
EMPTY = (1 << 8 ) ,
BACKREF,
BEGLINE,
ENDLINE,
BEGWORD,
ENDWORD,
LIMWORD,
NOTLIMWORD,
QMARK,
STAR,
PLUS,
REPMN,
CAT,
OR,
ORTOP,
LPAREN,
RPAREN,
CSET
} token;
static token tok;
static int
atom ()
{
if ((tok >= 0 && tok < (1 << 8 ) ) || tok >= CSET || tok == BACKREF
|| tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
|| tok == ENDWORD || tok == LIMWORD || tok == NOTLIMWORD)
return 1;
else
return 0;
}
void
testTortureExecute (void)
{
tok = 0;
if (atom () != 1)
ASSERT (0);
return;
}
|