Skip to content

Commit 83d14bd

Browse files
committed
Disable the 80-year-difference test on 32-bit-time_t platforms.
1 parent 7560265 commit 83d14bd

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/libstd/time/mod.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -520,9 +520,12 @@ mod tests {
520520

521521
assert_almost_eq!(a - second + second, a);
522522

523-
let eighty_years = second * 60 * 60 * 24 * 365 * 80;
524-
assert_almost_eq!(a - eighty_years + eighty_years, a);
525-
assert_almost_eq!(a - (eighty_years * 10) + (eighty_years * 10), a);
523+
// A difference of 80 and 800 years cannot fit inside a 32-bit time_t
524+
if !(cfg!(unix) && ::mem::size_of::<::libc::time_t>() <= 4) {
525+
let eighty_years = second * 60 * 60 * 24 * 365 * 80;
526+
assert_almost_eq!(a - eighty_years + eighty_years, a);
527+
assert_almost_eq!(a - (eighty_years * 10) + (eighty_years * 10), a);
528+
}
526529

527530
let one_second_from_epoch = UNIX_EPOCH + Duration::new(1, 0);
528531
let one_second_from_epoch2 = UNIX_EPOCH + Duration::new(0, 500_000_000)

0 commit comments

Comments
 (0)