We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a6b96f commit 7fd99deCopy full SHA for 7fd99de
test/runtests.jl
@@ -48,7 +48,9 @@ testfiles = sort(filter(istest, readdir(testdir)))
48
elseif f == "test_error.jl"
49
r = run(ignorestatus(cmd))
50
@test !success(r)
51
- elseif f == "test_errorhandler.jl" && MPI.identify_implementation()[1] == MPI.UnknownMPI
+ elseif f == "test_errorhandler.jl" && (MPI.identify_implementation()[1] == MPI.UnknownMPI ||
52
+ # Fujitsu MPI is known to not work with custom error handlers
53
+ startswith(MPI.MPI_LIBRARY_VERSION_STRING, "FUJITSU MPI"))
54
try
55
run(cmd)
56
catch e
0 commit comments