Skip to content

Commit 2df27ad

Browse files
committed
Fixed different Item size depending on alloc feature
1 parent 99932bf commit 2df27ad

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

src/format/strftime.rs

+20-2
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ mod tests {
11991199
}
12001200

12011201
#[test]
1202-
#[cfg(all(feature = "unstable-locales", target_pointer_width = "64"))]
1202+
#[cfg(all(feature = "unstable-locales", feature = "alloc", target_pointer_width = "64"))]
12031203
fn test_type_sizes() {
12041204
use core::mem::size_of;
12051205
assert_eq!(size_of::<Item>(), 32);
@@ -1208,14 +1208,32 @@ mod tests {
12081208
}
12091209

12101210
#[test]
1211-
#[cfg(all(feature = "unstable-locales", target_pointer_width = "32"))]
1211+
#[cfg(all(feature = "unstable-locales", not(feature = "alloc"), target_pointer_width = "64"))]
1212+
fn test_type_sizes() {
1213+
use core::mem::size_of;
1214+
assert_eq!(size_of::<Item>(), 24);
1215+
assert_eq!(size_of::<StrftimeItems>(), 56);
1216+
assert_eq!(size_of::<Locale>(), 2);
1217+
}
1218+
1219+
#[test]
1220+
#[cfg(all(feature = "unstable-locales", feature = "alloc", target_pointer_width = "32"))]
12121221
fn test_type_sizes() {
12131222
use core::mem::size_of;
12141223
assert_eq!(size_of::<Item>(), 16);
12151224
assert_eq!(size_of::<StrftimeItems>(), 28);
12161225
assert_eq!(size_of::<Locale>(), 2);
12171226
}
12181227

1228+
#[test]
1229+
#[cfg(all(feature = "unstable-locales", not(feature = "alloc"), target_pointer_width = "32"))]
1230+
fn test_type_sizes() {
1231+
use core::mem::size_of;
1232+
assert_eq!(size_of::<Item>(), 12);
1233+
assert_eq!(size_of::<StrftimeItems>(), 28);
1234+
assert_eq!(size_of::<Locale>(), 2);
1235+
}
1236+
12191237
#[test]
12201238
#[cfg(any(feature = "alloc", feature = "std"))]
12211239
fn test_strftime_parse() {

0 commit comments

Comments
 (0)