From 22e07495adba034799e6903e3247a54eee44b14d Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 8 Aug 2024 08:14:20 -0400 Subject: [PATCH] Update hypretests.jl for MPI deprecations --- test/hypretests.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/hypretests.jl b/test/hypretests.jl index c41079c1c..da7e7e3a5 100644 --- a/test/hypretests.jl +++ b/test/hypretests.jl @@ -168,7 +168,5 @@ test_interface(HYPREAlgorithm(HYPRE.PCG(comm)), Pl = HYPRE.BoomerAMG()) # Test MPI execution mpitestfile = joinpath(@__DIR__, "hypretests_mpi.jl") -mpiexec() do mpi - r = run(ignorestatus(`$(mpi) -n 2 $(Base.julia_cmd()) $(mpitestfile)`)) - @test r.exitcode == 0 -end +r = run(ignorestatus(`$(mpiexec()) -n 2 $(Base.julia_cmd()) $(mpitestfile)`)) +@test r.exitcode == 0