sync the gating test (rhel-8.8.0 -> c8s)
Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
This commit is contained in:
parent
b376c2449e
commit
be819c5906
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
||||
SOURCES/mpich-3.4.2.tar.gz
|
||||
/mpich-3.4.2.tar.gz
|
||||
|
10
tests/run_tests.sh
Executable file
10
tests/run_tests.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
# when running this in 1minutetip the PATH must be specified to execute
|
||||
# in the local directory.
|
||||
echo "Setting path to local directory"
|
||||
PATH=$PATH:$(pwd)
|
||||
|
||||
# simple sanity test
|
||||
sanity.sh
|
||||
exit $?
|
17
tests/sanity.sh
Executable file
17
tests/sanity.sh
Executable file
@ -0,0 +1,17 @@
|
||||
#!/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/mpich-x86_64
|
||||
|
||||
mpichversion
|
||||
let ret=$ret+$?
|
||||
|
||||
mpirun hostname
|
||||
let ret=$ret+$?
|
||||
|
||||
exit $ret
|
12
tests/tests.yml
Normal file
12
tests/tests.yml
Normal file
@ -0,0 +1,12 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
tests:
|
||||
- simple:
|
||||
dir: . # switch to subfolder. This parameter is REQUIRED, use `dir: .` for current folder
|
||||
run: ./run_tests.sh # this is your test command, its exit code is the outcome of the test
|
||||
required_packages:
|
||||
- environment-modules
|
||||
- mpich
|
Loading…
Reference in New Issue
Block a user