blob: 8a6408c2648ad9fce0f9cc537d606c5414a03890 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/** setjmp/longjmp tests.
*/
#include <testfwk.h>
#include <setjmp.h>
unsigned int global_int = 0;
unsigned int *gpInt;
#if defined(__SDCC_mcs51)
#include <8052.h>
void
T2_isr (void) __interrupt 5 //no using
{
//do not clear flag TF2 so it keeps interrupting !
(*gpInt)++;
}
#endif
#if defined(__SDCC_pic14)
#define SKIP
#endif
#ifndef SKIP
void
try_fun (jmp_buf catch, int except)
{
longjmp (catch, except);
}
jmp_buf buf;
void g(void)
{
longjmp(buf, 0); // When called with an argument of 0, longjmp() makes setjmp() return 1 instead.
g();
}
void f1(void)
{
static int i;
int j;
i= 0;
j= setjmp(buf);
ASSERT(i == j);
i++;
if(!j)
g();
}
#else
#warning Skipped setjmp/longjmp test
#endif
void
testJmp (void)
{
#ifndef SKIP
jmp_buf catch;
int exception;
#if defined(__SDCC_mcs51)
gpInt = &global_int;
//enable the interrupt and set it's flag to generate some heavy stack usage
ET2 = 1;
EA = 1;
TF2 = 1;
#endif
exception = setjmp (catch);
if (exception == 0)
{
try_fun (catch, 1);
//should not get here!
ASSERT (0);
}
ASSERT (exception == 1);
f1();
#endif
// C99 might require setjmp to be a macro. The standard seems self-contradicting on this issue.
//#ifndef setjmp
// ASSERT(0);
//#endif
}
|