From af98161c76f33bca0122702f4d84ef478a5d3d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Kadl=C4=8D=C3=ADk?= Date: Mon, 12 Aug 2024 15:03:36 +0200 Subject: [PATCH] Update the RHEL-10 gating plan - Replace the Beaker+TCMS jobs with Openstack jobs because TCMS has been declared obsoleted. - Remove the embedded tests because they haven't been used on RHEL anyway and were just partial and outdated copies of what already is in the Openstack jobs above/ This change aligns this component to what we already have in c10s GCC and annobin. --- gating.yaml | 3 +- tests/internal-testsuite/main.fmf | 19 ---------- tests/internal-testsuite/runtest.sh | 59 ----------------------------- 3 files changed, 2 insertions(+), 79 deletions(-) delete mode 100644 tests/internal-testsuite/main.fmf delete mode 100755 tests/internal-testsuite/runtest.sh diff --git a/gating.yaml b/gating.yaml index 312b660..9b5879c 100644 --- a/gating.yaml +++ b/gating.yaml @@ -22,4 +22,5 @@ product_versions: - rhel-10 decision_context: osci_compose_gate rules: - - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional} + - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.gate-build-fast-lane.functional} + - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.gate-build-slow-lane.functional} diff --git a/tests/internal-testsuite/main.fmf b/tests/internal-testsuite/main.fmf deleted file mode 100644 index d584728..0000000 --- a/tests/internal-testsuite/main.fmf +++ /dev/null @@ -1,19 +0,0 @@ ---- -summary: internal-testsuite -contact: Martin Coufal -component: - - libmpc -test: ./runtest.sh -framework: beakerlib -recommend: - - libmpc - - gmp-devel - - mpfr-devel - - texinfo - - rpm-build - - gcc - - gcc-c++ - - yum-utils -duration: 30m -extra-summary: /tools/libmpc/Regression/internal-testsuite -extra-task: /tools/libmpc/Regression/internal-testsuite diff --git a/tests/internal-testsuite/runtest.sh b/tests/internal-testsuite/runtest.sh deleted file mode 100755 index 690b7aa..0000000 --- a/tests/internal-testsuite/runtest.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/bash -# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# runtest.sh of /tools/libmpc/Regression/internal-testsuite -# Description: internal-testsuite -# Author: Martin Coufal -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Copyright (c) 2016 Red Hat, Inc. -# -# This program is free software: you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation, either version 2 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be -# useful, but WITHOUT ANY WARRANTY; without even the implied -# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -# PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see http://www.gnu.org/licenses/. -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -# Include Beaker environment -. /usr/share/beakerlib/beakerlib.sh || exit 1 - -PACKAGE="${PACKAGE:-$(rpm -qf --qf='%{name}\n' /usr/lib64/libmpc.so.3)}" -export PACKAGE - -rlJournalStart - rlPhaseStartSetup - rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory" - rlRun "pushd $TmpDir" - rlFetchSrcForInstalled $PACKAGE - rlAssertRpm $PACKAGE - rlRun "dnf builddep -y $PACKAGE" - rlRun "rpm --define='_topdir $TmpDir' -Uvh *src.rpm" - rlRun "rpmbuild --define='_topdir $TmpDir' -bc SPECS/libmpc.spec" - rlPhaseEnd - - rlPhaseStartTest - rlRun "pushd BUILD/mpc-*" - # test - rlRun "make RUNTESTFLAGS='--tool_exec=$BIN' check |& tee $TmpDir/check.log" - rlRun "popd" - # no unexpected results should appear - rlRun "grep '^# of unexpected' check.log" 1 - rlPhaseEnd - - rlPhaseStartCleanup - rlRun "popd" - rlRun "rm -r $TmpDir" 0 "Removing tmp directory" - rlPhaseEnd -rlJournalPrintText -rlJournalEnd