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
51
52
53
54
|
/*
20000422-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if !defined(__SDCC_pdk14) // Lack of memory
int ops[13] =
{
11, 12, 46, 3, 2, 2, 3, 2, 1, 3, 2, 1, 2
};
int correct[13] =
{
46, 12, 11, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1
};
#endif
int num = 13;
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) // Lack of memory
int i;
for (i = 0; i < num; i++)
{
int j;
for (j = num - 1; j > i; j--)
{
if (ops[j-1] < ops[j])
{
int op = ops[j];
ops[j] = ops[j-1];
ops[j-1] = op;
}
}
}
for (i = 0; i < num; i++)
if (ops[i] != correct[i])
ASSERT (0);
return;
#endif
}
|