bring back tests/ from RHEL dist-git after c8s import

Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
This commit is contained in:
Michal Schmidt 2023-04-20 09:48:33 +02:00
parent dab9028507
commit f156c7f85d
3 changed files with 47 additions and 0 deletions

10
tests/run_tests.sh Executable file
View 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 $?

25
tests/sanity.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
#
# This is a simple sanity test to satisfy the RHEL8.1 onboard gating
# requirement.
ret=0
qperf --help examples
let ret=$ret+$?
qperf --help tests
let ret=$ret+$?
# launch server
qperf &
qperf localhost tcp_bw tcp_lat
let ret=$ret+$?
qperf localhost udp_bw udp_lat
let ret=$ret+$?
# kill off server
killall qperf
exit $ret

12
tests/tests.yml Normal file
View 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:
- qperf
- psmisc