blob: 86e2bd2ba16157a3014fd822055c185a5eee800c (
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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* Basic test of versioning. The idea with this is that we define
* a bunch of definitions of the same symbol, and we can theoretically
* then link applications against varying sets of these.
*/
#include "vers.h"
const char * show_bar1 = "asdf";
const char * show_bar2 = "asdf";
extern int new2_foo();
extern int bar33();
int
bar()
{
return 3;
}
/*
* The 'hide' prefix is something so that we can automatically search the
* symbol table and verify that none of these symbols were actually exported.
*/
int
hide_original_foo()
{
return 1+bar();
}
int
hide_old_foo()
{
return 10+bar();
}
int
hide_old_foo1()
{
return 100+bar();
}
int
hide_new_foo()
{
return 1000+bar();
}
SYMVER(hide_original_foo, show_foo@);
SYMVER(hide_old_foo, show_foo@VERS_1.1);
SYMVER(hide_old_foo1, show_foo@VERS_1.2);
SYMVER(hide_new_foo, show_foo@@VERS_2.0);
#ifdef DO_TEST10
/* In test 10, we try and define a non-existant version node. The linker
* should catch this and complain. */
int
hide_new_bogus_foo()
{
return 1000+bar();
}
SYMVER(hide_new_bogus_foo, show_foo@VERS_2.2);
#endif
#ifdef DO_TEST11
/*
* This test is designed to catch a couple of syntactic errors. The assembler
* should complain about both of the directives below.
*/
void
xyzzz()
{
new2_foo();
bar33();
}
SYMVER(new2_foo, fooVERS_2.0);
SYMVER(bar33, bar@@VERS_2.0);
#endif
#ifdef DO_TEST12
/*
* This test is designed to catch a couple of syntactic errors. The assembler
* should complain about both of the directives below.
*/
void
xyzzz()
{
new2_foo();
bar33();
}
SYMVER(bar33, bar@@VERS_2.0);
#endif
|