Skip to content

Commit

Permalink
Always set JULIA_BINDIR when running mpiexecjl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Aug 6, 2024
1 parent 6a1b182 commit f617bb5
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions test/mpiexecjl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,16 @@ using MPI
# Test a run of mpiexec
nprocs_str = get(ENV, "JULIA_MPI_TEST_NPROCS", "")
nprocs = nprocs_str == "" ? clamp(Sys.CPU_THREADS, 2, 4) : parse(Int, nprocs_str)
mpiexecjl = joinpath(dir, "mpiexecjl")
env = ["JULIA_BINDIR" => Sys.BINDIR]
mpiexecjl = addenv(joinpath(dir, "mpiexecjl"), env...)
# `Base.julia_cmd()` ensures keeping consistent flags when running subprocesses.
julia = Base.julia_cmd()
example = joinpath(@__DIR__, "..", "docs", "examples", "01-hello.jl")
env = ["JULIA_BINDIR" => Sys.BINDIR]
p = withenv(env...) do
run(`$(mpiexecjl) -n $(nprocs) --project=$(dir) $(julia) --startup-file=no -q $(example)`)
end
p = run(`$(mpiexecjl) -n $(nprocs) --project=$(dir) $(julia) --startup-file=no -q $(example)`)
@test success(p)
# Test help messages
for help_flag in ("-h", "--help")
help_message = withenv(env...) do
read(`$(mpiexecjl) --project=$(dir) --help`, String)
end
help_message = read(`$(mpiexecjl) --project=$(dir) --help`, String)
@test occursin(r"Usage:.*MPIEXEC_ARGUMENTS", help_message)
end
# Without arguments, or only with the `--project` option, the wrapper will fail
Expand Down

0 comments on commit f617bb5

Please sign in to comment.