Revision b9aeafa171e13609b3d47f8a1d75d83c0148a991 authored by Daniel Karrasch on 13 April 2024, 20:07:01 UTC, committed by GitHub on 13 April 2024, 20:07:01 UTC
1 parent a721658
Raw File
channel_threadpool.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

using Test
using Base.Threads

@testset "Task threadpools" begin
    c = Channel{Symbol}() do c; put!(c, threadpool(current_task())); end
    @test take!(c) === threadpool(current_task())
    c = Channel{Symbol}(spawn = true) do c; put!(c, threadpool(current_task())); end
    @test take!(c) === :default
    c = Channel{Symbol}(threadpool = :interactive) do c; put!(c, threadpool(current_task())); end
    @test take!(c) === :interactive
    @test_throws ArgumentError Channel{Symbol}(threadpool = :foo) do c; put!(c, :foo); end
end
back to top