From c9fb499c2afbbdc49da4c62c016e603f1acb46e8 Mon Sep 17 00:00:00 2001 From: Adam Samalik Date: Thu, 20 Apr 2023 11:18:23 +0200 Subject: [PATCH] add missing gating tests --- gating.yaml | 6 ++++++ tests/smoke/runtest.sh | 3 +++ tests/tests.yml | 17 +++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 gating.yaml create mode 100644 tests/smoke/runtest.sh create mode 100644 tests/tests.yml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..6985029 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-8 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh new file mode 100644 index 0000000..57068e1 --- /dev/null +++ b/tests/smoke/runtest.sh @@ -0,0 +1,3 @@ +#!/bin/bash +cd ../source +./configure && LD_LIBRARY_PATH=$PWD/lib/.libs make check diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..e5b7a0b --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,17 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-source + +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-basic + tests: + - smoke + required_packages: + - make + - gcc-c++