mvapich2/tests/sanity.sh
Honggang Li b8c2d50f04 build mvapich2-2.3.5-2.tar.gz for RHEL9
Resolves: rhbz#1923559

Signed-off-by: Honggang Li <honli@redhat.com>
2021-02-18 09:36:33 +08:00

18 lines
246 B
Bash
Executable File

#!/bin/bash
#
# This is a simple sanity test to satisfy the RHEL8.1 onboard gating
# requirement.
ret=$?
source /etc/profile.d/modules.sh
module load mpi/mvapich2-x86_64
mpichversion
let ret=$ret+$?
mpirun hostname
let ret=$ret+$?
exit $ret