xmpp-parsers: Fix size tests on AArch32

This commit is contained in:
Emmanuel Gil Peyrot 2020-10-29 18:39:22 +01:00
commit 5cd7d5fe57
7 changed files with 10 additions and 12 deletions

View file

@ -507,11 +507,10 @@ mod tests {
#[cfg(target_pointer_width = "32")]
#[test]
#[ignore]
fn test_size() {
assert_size!(XhtmlIm, 0);
assert_size!(Child, 0);
assert_size!(Tag, 0);
assert_size!(XhtmlIm, 32);
assert_size!(Child, 56);
assert_size!(Tag, 52);
}
#[cfg(target_pointer_width = "64")]