Test struct sizes on 32-bit too.

This commit is contained in:
Emmanuel Gil Peyrot 2018-10-28 13:10:48 +01:00
commit 7a2dcbee01
37 changed files with 338 additions and 0 deletions

View file

@ -268,6 +268,17 @@ impl From<DataForm> for Element {
mod tests {
use super::*;
#[cfg(target_pointer_width = "32")]
#[test]
fn test_size() {
assert_size!(Option_, 24);
assert_size!(FieldType, 1);
assert_size!(Field, 64);
assert_size!(DataFormType, 1);
assert_size!(DataForm, 52);
}
#[cfg(target_pointer_width = "64")]
#[test]
fn test_size() {
assert_size!(Option_, 48);