Skip to content

Commit

Permalink
Mark 1.10 whocallsmorethan30args test as known failure
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Dec 17, 2023
1 parent ec4e96f commit 8a1ba6e
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1211,14 +1211,18 @@ end

R = zeros(6,6)
dR = zeros(6, 6)
autodiff(Reverse, whocallsmorethan30args, Active, Duplicated(R, dR))

@test 1.0 dR[1, 1]
@test 1.0 dR[2, 2]
@test 1.0 dR[3, 3]
@test 1.0 dR[4, 4]
@test 1.0 dR[5, 5]
@test 0.0 dR[6, 6]

@static if VERSION v"1.10-"
@test_broken autodiff(Reverse, whocallsmorethan30args, Active, Duplicated(R, dR))
else
autodiff(Reverse, whocallsmorethan30args, Active, Duplicated(R, dR))
@test 1.0 dR[1, 1]
@test 1.0 dR[2, 2]
@test 1.0 dR[3, 3]
@test 1.0 dR[4, 4]
@test 1.0 dR[5, 5]
@test 0.0 dR[6, 6]
end
end

@testset "invoke" begin
Expand Down

0 comments on commit 8a1ba6e

Please sign in to comment.