Skip to content

Commit 40e7cf7

Browse files
committed
Allow Fujitsu MPI to fal custom error handler tests
1 parent 65fac37 commit 40e7cf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ testfiles = sort(filter(istest, readdir(testdir)))
5050
elseif f == "test_error.jl"
5151
r = run(ignorestatus(cmd))
5252
@test !success(r)
53-
elseif f == "test_errorhandler.jl" && MPI.identify_implementation()[1] == MPI.UnknownMPI
53+
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"))
5456
try
5557
run(cmd)
5658
catch e

0 commit comments

Comments
 (0)