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

@ -277,6 +277,19 @@ mod tests {
use std::str::FromStr;
use compare_elements::NamespaceAwareCompare;
#[cfg(target_pointer_width = "32")]
#[test]
fn test_size() {
assert_size!(Type, 1);
assert_size!(Mode, 1);
assert_size!(CandidateId, 12);
assert_size!(StreamId, 12);
assert_size!(Candidate, 80);
assert_size!(TransportPayload, 16);
assert_size!(Transport, 44);
}
#[cfg(target_pointer_width = "64")]
#[test]
fn test_size() {
assert_size!(Type, 1);