From 23e661e4351e34e0ebb3e736005a24e0c3a0dc38 Mon Sep 17 00:00:00 2001 From: Iveta Cesalova Date: Fri, 19 Mar 2021 08:57:20 +0100 Subject: [PATCH] delete test --- integration/bz446180-lowercased/446180.php | 5 -- .../bz446180-lowercased/TC#0068511.fmf | 11 ---- integration/bz446180-lowercased/main.fmf | 21 ------- integration/bz446180-lowercased/runtest.sh | 57 ------------------- 4 files changed, 94 deletions(-) delete mode 100644 integration/bz446180-lowercased/446180.php delete mode 100644 integration/bz446180-lowercased/TC#0068511.fmf delete mode 100644 integration/bz446180-lowercased/main.fmf delete mode 100644 integration/bz446180-lowercased/runtest.sh diff --git a/integration/bz446180-lowercased/446180.php b/integration/bz446180-lowercased/446180.php deleted file mode 100644 index c99190d..0000000 --- a/integration/bz446180-lowercased/446180.php +++ /dev/null @@ -1,5 +0,0 @@ - - diff --git a/integration/bz446180-lowercased/TC#0068511.fmf b/integration/bz446180-lowercased/TC#0068511.fmf deleted file mode 100644 index f8a4573..0000000 --- a/integration/bz446180-lowercased/TC#0068511.fmf +++ /dev/null @@ -1,11 +0,0 @@ -contact: None -component: -- php -tag: -- NoModularTier -- TIPpass_Apps -- Tier2 -extra-nitrate: TC#0068511 -extra-summary: /CoreOS/php/Regression/bz446180-lowercased -extra-pepa: | - PACKAGES='php-cli' component/php diff --git a/integration/bz446180-lowercased/main.fmf b/integration/bz446180-lowercased/main.fmf deleted file mode 100644 index 56804f5..0000000 --- a/integration/bz446180-lowercased/main.fmf +++ /dev/null @@ -1,21 +0,0 @@ -summary: php Class name lowercased in error message -description: | - Test Name: bz446180-lowercased - Bugzilla(s) 446180 - Author: Martin Koci (koca) - Location: /CoreOS/php/Regression/bz446180-lowercased - Short Description: php Class name lowercased in error message - Long Description: - The class name in the "Cannot redeclare class ..." error message is lowercased and not the original one. -contact: -- Iveta Cesalova -component: -- php -test: ./runtest.sh -framework: beakerlib -recommend: -- php -duration: 5m -enabled: true -tier: '2' -extra-summary: /CoreOS/php/Regression/bz446180-lowercased -extra-task: /CoreOS/php/Regression/bz446180-lowercased diff --git a/integration/bz446180-lowercased/runtest.sh b/integration/bz446180-lowercased/runtest.sh deleted file mode 100644 index 2731f03..0000000 --- a/integration/bz446180-lowercased/runtest.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/bash - -# runtest.sh - bz446180-lowercased - Bugzilla(s) 446180 -# Author: Martin Koci (koca) -# Location: /CoreOS/php/Regression/bz446180-lowercased/runtest.sh - -# Description: php Class name lowercased in error message - -# Copyright (c) 2008 Red Hat, Inc. All rights reserved. This copyrighted material -# is made available to anyone wishing to use, modify, copy, or -# redistribute it subject to the terms and conditions of the GNU General -# Public License v.2. -# -# 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, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -PACKAGES="${PACKAGES:-php-cli}" -FILE="446180.php" -TEMPFILE=`mktemp` -CONF="/etc/php.ini" - -# Include rhts environment -. /usr/share/rhts-library/rhtslib.sh -. /usr/bin/rhts-environment.sh - -###################### -# Prepare environment -###################### -rlJournalStart -rlPhaseStartSetup Preparation - rlAssertRpm --all - rlAssertBinaryOrigin "php" - rlRun "php -v" -rlPhaseEnd - -###################### -# Begin Test-Case -###################### -rlPhaseStartTest Test - rlRun 'php $FILE 2> $TEMPFILE; grep Foo $TEMPFILE' 0 -rlPhaseEnd - -###################### -# Clean after the test -###################### -rlPhaseStartCleanup Clean-Up - rlRun 'rm -f $TEMPFILE' -rlPhaseEnd - -rlJournalPrintText -rlJournalEnd