public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [tests/libidn2] main: disable repo
@ 2026-07-16 12:01 Ondrej Mejzlik
  0 siblings, 0 replies; only message in thread
From: Ondrej Mejzlik @ 2026-07-16 12:01 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : tests/libidn2
Branch : main
Commit : 90836ad42afaa287531c09f7ddfcc8e55ca9c3c7
Author : Ondrej Mejzlik <omejzlik@redhat.com>
Date   : 2026-07-16T11:41:26+02:00
Stats  : +1/-273 in 12 file(s)
URL    : https://src.fedoraproject.org/tests/libidn2/c/90836ad42afaa287531c09f7ddfcc8e55ca9c3c7?branch=main

Log:
disable repo

---
diff --git a/.fmf/version b/.fmf/version
deleted file mode 100644
index d00491f..0000000
--- a/.fmf/version
+++ /dev/null
@@ -1 +0,0 @@
-1

diff --git a/README.md b/README.md
index 6e5395b..bd55c47 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1 @@
-# libidn2
-
-Public libidn2 tests
\ No newline at end of file
+Public tests have been moved to: https://gitlab.com/redhat/centos-stream/tests/

diff --git a/Sanity/basic/Makefile b/Sanity/basic/Makefile
deleted file mode 100644
index b6f42bb..0000000
--- a/Sanity/basic/Makefile
+++ /dev/null
@@ -1,64 +0,0 @@
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-#
-#   Makefile of /CoreOS/libidn2/Sanity/basic
-#   Description: What the test does
-#   Author: Robin Hack <rhack@redhat.com>
-#
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-#
-#   Copyright (c) 2019 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/.
-#
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-export TEST=/CoreOS/libidn2/Sanity/basic
-export TESTVERSION=1.0
-
-BUILT_FILES=
-
-FILES=$(METADATA) runtest.sh Makefile PURPOSE zone
-
-.PHONY: all install download clean
-
-run: $(FILES) build
-	./runtest.sh
-
-build: $(BUILT_FILES)
-	test -x runtest.sh || chmod a+x runtest.sh
-
-clean:
-	rm -f *~ $(BUILT_FILES)
-
-
-include /usr/share/rhts/lib/rhts-make.include
-
-$(METADATA): Makefile
-	@echo "Owner:           Robin Hack <rhack@redhat.com>" > $(METADATA)
-	@echo "Name:            $(TEST)" >> $(METADATA)
-	@echo "TestVersion:     $(TESTVERSION)" >> $(METADATA)
-	@echo "Path:            $(TEST_DIR)" >> $(METADATA)
-	@echo "Description:     What the test does" >> $(METADATA)
-	@echo "Type:            Sanity" >> $(METADATA)
-	@echo "TestTime:        20m" >> $(METADATA)
-	@echo "RunFor:          libidn2" >> $(METADATA)
-	@echo "Requires:        libidn2 bind /usr/bin/host" >> $(METADATA)
-	@echo "Priority:        Normal" >> $(METADATA)
-	@echo "License:         GPLv2+" >> $(METADATA)
-	@echo "Confidential:    no" >> $(METADATA)
-	@echo "Destructive:     no" >> $(METADATA)
-	@echo "Bug:             1653112" >> $(METADATA)
-	@echo "Releases:        -RHEL4 -RHELClient5 -RHELServer5 -RHEL6 -RHEL7" >> $(METADATA)
-
-	rhts-lint $(METADATA)

diff --git a/Sanity/basic/PURPOSE b/Sanity/basic/PURPOSE
deleted file mode 100644
index ab50d4e..0000000
--- a/Sanity/basic/PURPOSE
+++ /dev/null
@@ -1,3 +0,0 @@
-PURPOSE of /CoreOS/libidn2/Sanity/basic
-Description: What the test does
-Author: Robin Hack <rhack@redhat.com>

diff --git a/Sanity/basic/main.fmf b/Sanity/basic/main.fmf
deleted file mode 100644
index 70d5720..0000000
--- a/Sanity/basic/main.fmf
+++ /dev/null
@@ -1,32 +0,0 @@
-summary: What the test does
-description: ''
-contact: Petr Dancak <pdancak@redhat.com>
-component:
-  - libidn2
-test: ./runtest.sh
-framework: beakerlib
-recommend:
-  - libidn2
-  - bind
-  - /usr/bin/host
-duration: 20m
-enabled: true
-tag:
-  - NoRHEL4
-  - NoRHEL5
-  - NoRHEL6
-  - NoRHEL7
-  - TIPfail_infra
-  - TIPpass
-  - Tier1
-tier: '1'
-link:
-  - relates: https://bugzilla.redhat.com/show_bug.cgi?id=1653112
-adjust:
-  - enabled: false
-    when: distro == rhel-4, rhel-5, rhel-6, rhel-7
-    continue: false
-extra-nitrate: TC#0601288
-extra-summary: /CoreOS/libidn2/Sanity/basic
-extra-task: /CoreOS/libidn2/Sanity/basic
-id: 6093abbd-9142-4762-80e8-a4cb01601505

diff --git a/Sanity/basic/runtest.sh b/Sanity/basic/runtest.sh
deleted file mode 100755
index c3f2fb6..0000000
--- a/Sanity/basic/runtest.sh
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/bash
-# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-#
-#   runtest.sh of /CoreOS/libidn2/Sanity/basic
-#   Description: Just run some magic.
-#   Author: Robin Hack <rhack@redhat.com>
-#
-# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-#
-#   Copyright (c) 2019 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="libidn2"
-
-rlJournalStart
-    rlPhaseStartSetup
-        rlAssertRpm $PACKAGE
-        rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
-        rlRun "TESTDIR=$PWD"
-
-        rlRun "pushd $TmpDir"
-
-        rlServiceStop "named"
-        rlFileBackup "/etc/named.conf"
-
-        echo "include \"/etc/named/zone.conf\";" >> /etc/named.conf
-        rlRun "cp ${TESTDIR}/zone /etc/named"
-        cat << "EOF" > /etc/named/zone.conf
-zone "xn--rksmrgs-5wao1o.se" {
-    type master;
-    file "/etc/named/zone";
-};
-EOF
-        rlRun "restorecon -FvR /etc/named/"
-
-    rlPhaseEnd
-
-    rlPhaseStartTest "Read static zone"
-        rlFileBackup --clean /etc/resolv.conf "$(readlink -f /etc/resolv.conf)"
-
-        rlRun "echo \"nameserver 127.0.0.1\" > /etc/resolv.conf"
-
-        rlServiceStart "named"
-
-        # host command are linked with libidn2
-        rlRun "host räksmörgås.se | tee TEST_OUTPUT"
-
-        # cleanup
-        rlServiceStop "named"
-        rlFileRestore
-        rlServiceRestore "named"
-    rlPhaseEnd
-
-    rlPhaseStartCleanup
-        rlRun "popd"
-        rlRun "rm -rf $TmpDir" 0 "Removing tmp directory"
-
-        rlRun "rm -rf /etc/named/zone"
-        rlRun "rm -rf /etc/named/zone.conf"
-
-    rlPhaseEnd
-rlJournalPrintText
-rlJournalEnd

diff --git a/Sanity/basic/zone b/Sanity/basic/zone
deleted file mode 100644
index febdd2a..0000000
--- a/Sanity/basic/zone
+++ /dev/null
@@ -1,21 +0,0 @@
-$TTL    86400 ; 24 hours could have been written as 24h or 1d
-; $TTL used for all RRs without explicit TTL value
-$ORIGIN xn--rksmrgs-5wao1o.se.
-@ IN  SOA ns1.xn--rksmrgs-5wao1o.se. hostmaster.xn--rksmrgs-5wao1o.se. (
-    2019022401 ; serial
-    3H ; refresh
-    15 ; retry
-    1w ; expire
-    3h ; nxdomain ttl
-)
-
-@ IN  NS     ns1.xn--rksmrgs-5wao1o.se. ; in the domain
-@ IN  MX  10 mail.xn--rksmrgs-5wao1o.se. ; external mail provider
-
-; server host definitions
-ns1    IN  A      192.168.0.1  ;name server definition
-www    IN  A      192.168.0.2  ;web server definition
-ftp    IN  CNAME  www.example.com.  ;ftp server definition
-; non server domain hosts
-bill   IN  A      192.168.0.3
-fred   IN  A      192.168.0.4 

diff --git a/main.fmf b/main.fmf
deleted file mode 100644
index 168bf60..0000000
--- a/main.fmf
+++ /dev/null
@@ -1,2 +0,0 @@
-# QE owner
-contact: Petr Dancak <pdancak@redhat.com>

diff --git a/plans/all.fmf b/plans/all.fmf
deleted file mode 100644
index ce59e7d..0000000
--- a/plans/all.fmf
+++ /dev/null
@@ -1,6 +0,0 @@
-summary: Run all tests
-discover:
-  - name: fedora
-    how: fmf
-execute:
-    how: tmt

diff --git a/plans/others.fmf b/plans/others.fmf
deleted file mode 100644
index 4bc2a4d..0000000
--- a/plans/others.fmf
+++ /dev/null
@@ -1,20 +0,0 @@
-/public:
-  summary: Public other tests
-  discover:
-    how: fmf
-    filter: 'tier: -1 & tier: -2 & tier: -3 & tag: -multihost'
-    url: "https://src.fedoraproject.org/tests/libidn2.git"
-  execute:
-    how: tmt
-
-/internal:
-  summary: Internal other tests
-  discover:
-    how: fmf
-    filter: 'tier: -1 & tier: -2 & tier: -3 & tag: -multihost'
-    url: git://pkgs.devel.redhat.com/tests/libidn2
-  adjust:
-    enabled: false
-    when: distro == centos-stream or distro == fedora
-  execute:
-    how: tmt

diff --git a/plans/tier1.fmf b/plans/tier1.fmf
deleted file mode 100644
index 950d673..0000000
--- a/plans/tier1.fmf
+++ /dev/null
@@ -1,20 +0,0 @@
-/public:
-  summary: Public Tier1 tests
-  discover:
-    how: fmf
-    filter: 'tier: 1'
-    url: "https://src.fedoraproject.org/tests/libidn2.git"
-  execute:
-    how: tmt
-
-/internal:
-  summary: Internal Tier1 tests
-  discover:
-    how: fmf
-    filter: 'tier: 1'
-    url: git://pkgs.devel.redhat.com/tests/libidn2
-  adjust:
-    enabled: false
-    when: distro == centos-stream or distro == fedora
-  execute:
-    how: tmt

diff --git a/plans/tier2-tier3.fmf b/plans/tier2-tier3.fmf
deleted file mode 100644
index acf4e54..0000000
--- a/plans/tier2-tier3.fmf
+++ /dev/null
@@ -1,20 +0,0 @@
-/public:
-  summary: Public Tier2 and Tier3 tests
-  discover:
-    how: fmf
-    filter: 'tier: 2 | tier: 3'
-    url: "https://src.fedoraproject.org/tests/libidn2.git"
-  execute:
-    how: tmt
-
-/internal:
-  summary: Internal Tier2 and Tier3 tests
-  discover:
-    how: fmf
-    filter: 'tier: 2 | tier: 3'
-    url: git://pkgs.devel.redhat.com/tests/libidn2
-  adjust:
-    enabled: false
-    when: distro == centos-stream or distro == fedora
-  execute:
-    how: tmt

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-16 12:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-16 12:01 [tests/libidn2] main: disable repo Ondrej Mejzlik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox