b84c798db6
Update package and add gating tests. Resolves: rhbz#2159630 Signed-off-by: Kamal Heib <kheib@redhat.com>
24 lines
347 B
Bash
Executable File
24 lines
347 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/openmpi-x86_64
|
|
|
|
ompi_info
|
|
let ret=$ret+$?
|
|
|
|
mpirun --version
|
|
let ret=$ret+$?
|
|
|
|
mpirun --allow-run-as-root hostname
|
|
let ret=$ret+$?
|
|
|
|
mpirun --allow-run-as-root uptime
|
|
let ret=$ret+$?
|
|
|
|
exit $ret
|