Skip to content

Commit 2dcb8f0

Browse files
committed
3 tests are broken due to disabling slow path
1 parent e6e86ac commit 2dcb8f0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/subtype.jl

+5-3
Original file line numberDiff line numberDiff line change
@@ -2272,8 +2272,9 @@ abstract type P47654{A} end
22722272
@test_broken typeintersect(Tuple{Vector{VT}, Vector{VT}} where {N1, VT<:AbstractVector{N1}},
22732273
Tuple{Vector{VN} where {N, VN<:AbstractVector{N}}, Vector{Vector{Float64}}}) !== Union{}
22742274
#issue 40865
2275-
@test Tuple{Set{Ref{Int}}, Set{Ref{Int}}} <: Tuple{Set{KV}, Set{K}} where {K,KV<:Union{K,Ref{K}}}
2276-
@test Tuple{Set{Val{Int}}, Set{Val{Int}}} <: Tuple{Set{KV}, Set{K}} where {K,KV<:Union{K,Val{K}}}
2275+
#broken due to 49857 and 49875
2276+
@test_broken Tuple{Set{Ref{Int}}, Set{Ref{Int}}} <: Tuple{Set{KV}, Set{K}} where {K,KV<:Union{K,Ref{K}}}
2277+
@test_broken Tuple{Set{Val{Int}}, Set{Val{Int}}} <: Tuple{Set{KV}, Set{K}} where {K,KV<:Union{K,Val{K}}}
22772278

22782279
#issue 39099
22792280
A = Tuple{Tuple{Int, Int, Vararg{Int, N}}, Tuple{Int, Vararg{Int, N}}, Tuple{Vararg{Int, N}}} where N
@@ -2310,7 +2311,8 @@ end
23102311

23112312
# try to fool a greedy algorithm that picks X=Int, Y=String here
23122313
@test Tuple{Ref{Union{Int,String}}, Ref{Union{Int,String}}} <: Tuple{Ref{Union{X,Y}}, Ref{X}} where {X,Y}
2313-
@test Tuple{Ref{Union{Int,String,Missing}}, Ref{Union{Int,String}}} <: Tuple{Ref{Union{X,Y}}, Ref{X}} where {X,Y}
2314+
# broken due to 49857 and 49875
2315+
@test_broken Tuple{Ref{Union{Int,String,Missing}}, Ref{Union{Int,String}}} <: Tuple{Ref{Union{X,Y}}, Ref{X}} where {X,Y}
23142316

23152317
@test !(Tuple{Any, Any, Any} <: Tuple{Any, Vararg{T}} where T)
23162318

0 commit comments

Comments
 (0)