mvapich2/tests/sanity.sh
Kamal Heib acf4d49914 Update to upstream release 2.3.7-1
Update package and add gating tests
Resolves: rhbz#2212462

Signed-off-by: Kamal Heib <kheib@redhat.com>
2023-06-05 13:01:46 -04: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