blob: b278748765b7ca7dca9da69e04e050a56887f4b6 (
plain)
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
|
/*
pr34415.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 84
#endif
const char *
foo (const char *p)
{
const char *end;
int len = 1;
for (;;)
{
int c = *p;
c = (c >= 'a' && c <= 'z' ? c - 'a' + 'A' : c);
if (c == 'B')
end = p;
else if (c == 'A')
{
end = p;
do
p++;
while (*p == '+');
}
else
break;
p++;
len++;
}
if (len > 2 && *p == ':')
p = end;
return p;
}
void
testTortureExecute (void)
{
const char *input = "Bbb:";
ASSERT (!(foo (input) != input + 2));
}
|