Browse Source

Fix deprecation warning from mpiexec do-block

pull/26/head
Fredrik Ekre 1 year ago
parent
commit
c9ee918f5a
No known key found for this signature in database
GPG Key ID: DE82E6D5E364C0A2
  1. 6
      test/runtests.jl

6
test/runtests.jl

@ -756,9 +756,7 @@ end @@ -756,9 +756,7 @@ end
"test_assembler.jl",
])
for file in testfiles
mpiexec() do mpi
r = run(ignorestatus(`$(mpi) -n 2 $(Base.julia_cmd()) $(file)`))
@test r.exitcode == 0
end
r = run(ignorestatus(`$(mpiexec()) -n 2 $(Base.julia_cmd()) $(file)`))
@test r.exitcode == 0
end
end

Loading…
Cancel
Save