summaryrefslogtreecommitdiff
path: root/tests/expectations/tests/allowlist-file.rs
blob: e737fe82513b4d547b95167e10f6079350d9fbeb (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#![allow(
    dead_code,
    non_snake_case,
    non_camel_case_types,
    non_upper_case_globals
)]

pub const SOME_DEFUN: u32 = 123;
extern "C" {
    #[link_name = "\u{1}_Z12SomeFunctionv"]
    pub fn SomeFunction();
}
extern "C" {
    pub static mut someVar: ::std::os::raw::c_int;
}
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct someClass {
    pub _address: u8,
}
#[test]
fn bindgen_test_layout_someClass() {
    assert_eq!(
        ::std::mem::size_of::<someClass>(),
        1usize,
        concat!("Size of: ", stringify!(someClass))
    );
    assert_eq!(
        ::std::mem::align_of::<someClass>(),
        1usize,
        concat!("Alignment of ", stringify!(someClass))
    );
}
extern "C" {
    #[link_name = "\u{1}_ZN9someClass16somePublicMethodEi"]
    pub fn someClass_somePublicMethod(
        this: *mut someClass,
        foo: ::std::os::raw::c_int,
    );
}
impl someClass {
    #[inline]
    pub unsafe fn somePublicMethod(&mut self, foo: ::std::os::raw::c_int) {
        someClass_somePublicMethod(self, foo)
    }
}
extern "C" {
    pub fn ExternFunction();
}
extern "C" {
    #[link_name = "\u{1}_ZN3foo18NamespacedFunctionEv"]
    pub fn foo_NamespacedFunction();
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct StructWithAllowlistedDefinition {
    pub other: *mut StructWithAllowlistedFwdDecl,
}
#[test]
fn bindgen_test_layout_StructWithAllowlistedDefinition() {
    assert_eq!(
        ::std::mem::size_of::<StructWithAllowlistedDefinition>(),
        8usize,
        concat!("Size of: ", stringify!(StructWithAllowlistedDefinition))
    );
    assert_eq!(
        ::std::mem::align_of::<StructWithAllowlistedDefinition>(),
        8usize,
        concat!("Alignment of ", stringify!(StructWithAllowlistedDefinition))
    );
    fn test_field_other() {
        assert_eq!(
            unsafe {
                let uninit = ::std::mem::MaybeUninit::<
                    StructWithAllowlistedDefinition,
                >::uninit();
                let ptr = uninit.as_ptr();
                ::std::ptr::addr_of!((*ptr).other) as usize - ptr as usize
            },
            0usize,
            concat!(
                "Offset of field: ",
                stringify!(StructWithAllowlistedDefinition),
                "::",
                stringify!(other)
            )
        );
    }
    test_field_other();
}
impl Default for StructWithAllowlistedDefinition {
    fn default() -> Self {
        let mut s = ::std::mem::MaybeUninit::<Self>::uninit();
        unsafe {
            ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1);
            s.assume_init()
        }
    }
}
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct StructWithAllowlistedFwdDecl {
    pub b: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_StructWithAllowlistedFwdDecl() {
    assert_eq!(
        ::std::mem::size_of::<StructWithAllowlistedFwdDecl>(),
        4usize,
        concat!("Size of: ", stringify!(StructWithAllowlistedFwdDecl))
    );
    assert_eq!(
        ::std::mem::align_of::<StructWithAllowlistedFwdDecl>(),
        4usize,
        concat!("Alignment of ", stringify!(StructWithAllowlistedFwdDecl))
    );
    fn test_field_b() {
        assert_eq!(
            unsafe {
                let uninit = ::std::mem::MaybeUninit::<
                    StructWithAllowlistedFwdDecl,
                >::uninit();
                let ptr = uninit.as_ptr();
                ::std::ptr::addr_of!((*ptr).b) as usize - ptr as usize
            },
            0usize,
            concat!(
                "Offset of field: ",
                stringify!(StructWithAllowlistedFwdDecl),
                "::",
                stringify!(b)
            )
        );
    }
    test_field_b();
}
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct AllowlistMe {
    pub foo: ::std::os::raw::c_int,
}
#[test]
fn bindgen_test_layout_AllowlistMe() {
    assert_eq!(
        ::std::mem::size_of::<AllowlistMe>(),
        4usize,
        concat!("Size of: ", stringify!(AllowlistMe))
    );
    assert_eq!(
        ::std::mem::align_of::<AllowlistMe>(),
        4usize,
        concat!("Alignment of ", stringify!(AllowlistMe))
    );
    fn test_field_foo() {
        assert_eq!(
            unsafe {
                let uninit = ::std::mem::MaybeUninit::<AllowlistMe>::uninit();
                let ptr = uninit.as_ptr();
                ::std::ptr::addr_of!((*ptr).foo) as usize - ptr as usize
            },
            0usize,
            concat!(
                "Offset of field: ",
                stringify!(AllowlistMe),
                "::",
                stringify!(foo)
            )
        );
    }
    test_field_foo();
}