Skip to content

Commit 7fd99de

Browse files
committed
Allow Fujitsu MPI to fal custom error handler tests
1 parent 9a6b96f commit 7fd99de

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/runtests.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ testfiles = sort(filter(istest, readdir(testdir)))
4848
elseif f == "test_error.jl"
4949
r = run(ignorestatus(cmd))
5050
@test !success(r)
51-
elseif f == "test_errorhandler.jl" && MPI.identify_implementation()[1] == MPI.UnknownMPI
51+
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"))
5254
try
5355
run(cmd)
5456
catch e

0 commit comments

Comments
 (0)