Skip to content

Commit

Permalink
Fix JuliaLang#10265: Remove outdated FIXME's from test/numbers.jl
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
garrison committed Feb 21, 2015
1 parent c8d8bb3 commit cf991b5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/numbers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,6 @@ end
@test div(typemin(Int64) , 1) == -9223372036854775807-1
@test div(typemin(Int64) , 2) == -4611686018427387904
@test div(typemin(Int64) , 7) == -1317624576693539401
#@test div(typemin(Int64) ,-1) == -9223372036854775807-1 # FIXME!
@test div(typemin(Int64) ,-2) == 4611686018427387904
@test div(typemin(Int64) ,-7) == 1317624576693539401
@test div(typemin(Int64)+1, 1) == -9223372036854775807
Expand Down Expand Up @@ -1244,7 +1243,6 @@ end
@test fld(typemin(Int64) , 1) == -9223372036854775807-1
@test fld(typemin(Int64) , 2) == -4611686018427387904
@test fld(typemin(Int64) , 7) == -1317624576693539402
#@test fld(typemin(Int64) ,-1) == -9223372036854775807-1 # FIXME!
@test fld(typemin(Int64) ,-2) == 4611686018427387904
@test fld(typemin(Int64) ,-7) == 1317624576693539401
@test fld(typemin(Int64)+1, 1) == -9223372036854775807
Expand Down Expand Up @@ -1288,7 +1286,6 @@ end
@test cld(typemin(Int64) , 1) == -9223372036854775807-1
@test cld(typemin(Int64) , 2) == -4611686018427387904
@test cld(typemin(Int64) , 7) == -1317624576693539401
#@test cld(typemin(Int64) ,-1) == -9223372036854775807-1 # FIXME!
@test cld(typemin(Int64) ,-2) == 4611686018427387904
@test cld(typemin(Int64) ,-7) == 1317624576693539402
@test cld(typemin(Int64)+1, 1) == -9223372036854775807
Expand Down

0 comments on commit cf991b5

Please sign in to comment.