Compare commits

...

No commits in common. "c8s" and "c8-beta" have entirely different histories.
c8s ... c8-beta

9 changed files with 1 additions and 60 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
SOURCES/v0.4.11.tar.gz
/v0.4.11.tar.gz

1
.qperf.metadata Normal file
View File

@ -0,0 +1 @@
6d6502a571dec4ef5754c36d3d6b53e58eed1c31 SOURCES/v0.4.11.tar.gz

View File

@ -1,11 +0,0 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

@ -1 +0,0 @@
SHA512 (v0.4.11.tar.gz) = 303f14267d0410b0b4703f1821043a0e06be2ce36ad182d694804c9c63ea2b5b15efcb9b35102f74320e45de5127c190fea786ce2b31bff227f973c01f1f8695

View File

@ -1,10 +0,0 @@
#!/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 $?

View File

@ -1,25 +0,0 @@
#!/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

View File

@ -1,12 +0,0 @@
- 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