File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -78,9 +78,10 @@ testfiles = sort(filter(istest, readdir(testdir)))
78
78
# Some command as the others, but always use a single process
79
79
run (cmd (1 ))
80
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>.
81
+ # Legacy Intel MPI (before 2020) crashes threads tests:
82
+ # <https://github.com/JuliaParallel/MPI.jl/issues/725>. These tests fail also on
83
+ # 32-bit Windows: <https://github.com/JuliaParallel/MPI.jl/issues/711>.
84
+ if (MPI. MPI_LIBRARY == " IntelMPI" && MPI. MPI_LIBRARY_VERSION < v " 2020" ) || (Sys. iswindows () && Sys. WORD_SIZE == 32 )
84
85
@test_broken false
85
86
else
86
87
withenv (" JULIA_NUM_THREADS" => " 4" ) do
You can’t perform that action at this time.
0 commit comments