We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd83b2 commit e23c490Copy full SHA for e23c490
test/distributed_exec.jl
@@ -1915,7 +1915,9 @@ include("splitrange.jl")
1915
1916
@testset "Clear all workers for timeout tests (issue #45785)" begin
1917
nprocs() > 1 && rmprocs(workers())
1918
- begin
+
1919
+ # This test requires kill(), and that doesn't work on Windows before 1.11
1920
+ if !(Sys.iswindows() && VERSION < v"1.11")
1921
# First, assert that we get no messages when we close a cooperative worker
1922
w = only(addprocs(1))
1923
@test_nowarn begin
@@ -1933,6 +1935,8 @@ include("splitrange.jl")
1933
1935
end
1934
1936
wait(rmprocs([w]))
1937
1938
+ else
1939
+ @warn "Skipping timeout tests because kill() isn't supported on Windows for this Julia version"
1940
1941
1942
0 commit comments