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 65fac37 commit 40e7cf7Copy full SHA for 40e7cf7
test/runtests.jl
@@ -50,7 +50,9 @@ testfiles = sort(filter(istest, readdir(testdir)))
50
elseif f == "test_error.jl"
51
r = run(ignorestatus(cmd))
52
@test !success(r)
53
- elseif f == "test_errorhandler.jl" && MPI.identify_implementation()[1] == MPI.UnknownMPI
+ elseif f == "test_errorhandler.jl" && (MPI.identify_implementation()[1] == MPI.UnknownMPI ||
54
+ # Fujitsu MPI is known to not work with custom error handlers
55
+ startswith(MPI.MPI_LIBRARY_VERSION_STRING, "FUJITSU MPI"))
56
try
57
run(cmd)
58
catch e
0 commit comments