File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -520,9 +520,12 @@ mod tests {
520
520
521
521
assert_almost_eq ! ( a - second + second, a) ;
522
522
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
+ }
526
529
527
530
let one_second_from_epoch = UNIX_EPOCH + Duration :: new ( 1 , 0 ) ;
528
531
let one_second_from_epoch2 = UNIX_EPOCH + Duration :: new ( 0 , 500_000_000 )
You can’t perform that action at this time.
0 commit comments