Skip to content

Commit e23c490

Browse files
committed
fixup! Add an extension to support Revise
1 parent ecd83b2 commit e23c490

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/distributed_exec.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1915,7 +1915,9 @@ include("splitrange.jl")
19151915

19161916
@testset "Clear all workers for timeout tests (issue #45785)" begin
19171917
nprocs() > 1 && rmprocs(workers())
1918-
begin
1918+
1919+
# This test requires kill(), and that doesn't work on Windows before 1.11
1920+
if !(Sys.iswindows() && VERSION < v"1.11")
19191921
# First, assert that we get no messages when we close a cooperative worker
19201922
w = only(addprocs(1))
19211923
@test_nowarn begin
@@ -1933,6 +1935,8 @@ include("splitrange.jl")
19331935
end
19341936
wait(rmprocs([w]))
19351937
end
1938+
else
1939+
@warn "Skipping timeout tests because kill() isn't supported on Windows for this Julia version"
19361940
end
19371941
end
19381942

0 commit comments

Comments
 (0)