We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef360f commit 60ce7e4Copy full SHA for 60ce7e4
test/runtests.jl
@@ -78,9 +78,10 @@ testfiles = sort(filter(istest, readdir(testdir)))
78
# Some command as the others, but always use a single process
79
run(cmd(1))
80
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>.
+ # Legacy Intel MPI (before 2020) crashes threads tests:
+ # <https://github.com/JuliaParallel/MPI.jl/issues/725>. These tests fail also on
+ # Windows: <https://github.com/JuliaParallel/MPI.jl/issues/711>
84
+ if (MPI.MPI_LIBRARY == "IntelMPI" && MPI.MPI_LIBRARY_VERSION < v"2020") || Sys.iswindows()
85
@test_broken false
86
else
87
withenv("JULIA_NUM_THREADS" => "4") do
0 commit comments