Skip to content

Commit 60ce7e4

Browse files
committed
Skip threads tests also on Windows
1 parent fef360f commit 60ce7e4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/runtests.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ testfiles = sort(filter(istest, readdir(testdir)))
7878
# Some command as the others, but always use a single process
7979
run(cmd(1))
8080
elseif f == "test_threads.jl"
81-
if MPI.MPI_LIBRARY == "IntelMPI" && MPI.MPI_LIBRARY_VERSION < v"2020"
82-
# Legacy Intel MPI (before 2020) crashes threads tests:
83-
# <https://github.com/JuliaParallel/MPI.jl/issues/725>.
81+
# Legacy Intel MPI (before 2020) crashes threads tests:
82+
# <https://github.com/JuliaParallel/MPI.jl/issues/725>. These tests fail also on
83+
# Windows: <https://github.com/JuliaParallel/MPI.jl/issues/711>
84+
if (MPI.MPI_LIBRARY == "IntelMPI" && MPI.MPI_LIBRARY_VERSION < v"2020") || Sys.iswindows()
8485
@test_broken false
8586
else
8687
withenv("JULIA_NUM_THREADS" => "4") do

0 commit comments

Comments
 (0)