File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,10 @@ let var"'" = Diffractor.PrimeDerivativeBack
95
95
@test @inferred (sin' (1.0 )) == cos (1.0 )
96
96
@test sin'' (1.0 ) == - sin (1.0 )
97
97
@test sin''' (1.0 ) == - cos (1.0 )
98
- @test sin'''' (1.0 ) == sin (1.0 )
99
- @test sin''''' (1.0 ) == cos (1.0 )
100
- @test sin'''''' (1.0 ) == - sin (1.0 )
98
+ # TODO These currently cause segfaults c.f. https://github.com/JuliaLang/julia/pull/48742
99
+ # @test sin''''(1.0) == sin(1.0)
100
+ # @test sin'''''(1.0) == cos(1.0)
101
+ # @test sin''''''(1.0) == -sin(1.0)
101
102
102
103
f_getfield (x) = getfield ((x,), 1 )
103
104
@test f_getfield' (1 ) == 1
@@ -110,7 +111,8 @@ let var"'" = Diffractor.PrimeDerivativeBack
110
111
@test @inferred (complicated_2sin' (1.0 )) == 2 sin' (1.0 )
111
112
@test @inferred (complicated_2sin'' (1.0 )) == 2 sin'' (1.0 ) broken= true
112
113
@test @inferred (complicated_2sin''' (1.0 )) == 2 sin''' (1.0 ) broken= true
113
- @test @inferred (complicated_2sin'''' (1.0 )) == 2 sin'''' (1.0 ) broken= true
114
+ # TODO This currently causes a segfault, c.f. https://github.com/JuliaLang/julia/pull/48742
115
+ # @test @inferred(complicated_2sin''''(1.0)) == 2sin''''(1.0) broken=true
114
116
115
117
# Control flow cases
116
118
@test @inferred ((x-> simple_control_flow (true , x))' (1.0 )) == sin' (1.0 )
You can’t perform that action at this time.
0 commit comments