blob: aa6c48ef10fca494a70089726b00186aa8745718 (
plain) (
blame)
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
|
/*
20010123-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
// TODO: Enable when supported by sdcc!
struct s
{
int value;
char *string;
};
void
testTortureExecute (void)
{
#if 0
int i;
for (i = 0; i < 4; i++)
{
struct s *t = & (struct s) { 3, "hey there" };
if (t->value != 3)
ASSERT (0);
t->value = 4;
if (t->value != 4)
ASSERT (0);
}
return;
#endif
}
|