Skip to content

Commit 66e8c3b

Browse files
committedJan 29, 2024
tests: Disable SharedArray tests due to Bus Error
1 parent 52fdc3d commit 66e8c3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎test/array.jl

+2
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,12 @@ end
281281
@test !isempty(Dagger.show_plan(Dagger.spawn(()->10)))
282282
end=#
283283

284+
#= FIXME: Unreliable, may segfault/bus error
284285
@testset "sharedarray" begin
285286
A = SharedArray{Int}((1024,))
286287
B = SharedArray{Int}((1024,))
287288
C = Dagger.merge_sorted(Base.Order.Forward, A, B)
288289
@test length(C) === length(A) + length(B)
289290
@test typeof(C) === (Dagger.use_shared_array[] ? SharedArray{Int,1} : Array{Int,1})
290291
end
292+
=#

0 commit comments

Comments
 (0)
Please sign in to comment.