From 6405633026f4d7afadd96998ab489752cd1ae771 Mon Sep 17 00:00:00 2001 From: Martin Cermak Date: Wed, 19 Jan 2022 12:06:35 +0100 Subject: [PATCH] Drop the old STI tests. Currently OSCI doesn't allow for combining STI and FMF tests. Provided FMF tests are a superset of the STI test this commit drops. Related: rhbz2025054 --- tests/dejagnu-smoketest/Makefile | 38 ------------------------------ tests/dejagnu-smoketest/PURPOSE | 3 --- tests/dejagnu-smoketest/runtest.sh | 17 ------------- tests/tests.yml | 11 --------- 4 files changed, 69 deletions(-) delete mode 100644 tests/dejagnu-smoketest/Makefile delete mode 100644 tests/dejagnu-smoketest/PURPOSE delete mode 100755 tests/dejagnu-smoketest/runtest.sh delete mode 100644 tests/tests.yml diff --git a/tests/dejagnu-smoketest/Makefile b/tests/dejagnu-smoketest/Makefile deleted file mode 100644 index e212345..0000000 --- a/tests/dejagnu-smoketest/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -TOPLEVEL_NAMESPACE=fedora -PACKAGE_NAME=systemtap -RELATIVE_PATH=Sanity/dejagnu-smoketest -export TESTVERSION=1.0 -export TEST=/$(TOPLEVEL_NAMESPACE)/$(PACKAGE_NAME)/$(RELATIVE_PATH) - -.PHONY: all install download clean -BUILT_FILES= -FILES=$(METADATA) runtest.sh Makefile PURPOSE - -run: $(FILES) build - ./runtest.sh - -build: $(BUILT_FILES) - chmod a+x ./runtest.sh - -clean: - rm -f *~ *.rpm $(BUILT_FILES) - -include /usr/share/rhts/lib/rhts-make.include - -# Generate the testinfo.desc here: -$(METADATA): Makefile - @touch $(METADATA) -# Change to the test owner's name - @echo "Owner: Frank Ch. Eigler " > $(METADATA) - @echo "Name: $(TEST)" >> $(METADATA) - @echo "Path: $(TEST_DIR)" >> $(METADATA) - @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) - @echo "Type: Sanity" >> $(METADATA) - @echo "Description: smoke test" >> $(METADATA) - @echo "TestTime: 10m" >> $(METADATA) - @echo "RunFor: $(PACKAGE_NAME)" >> $(METADATA) - @echo "Requires: $(PACKAGE_NAME)" >> $(METADATA) - @echo "License: GPLv2" >> $(METADATA) - -# You may need other fields here; see the documentation - rhts-lint $(METADATA) diff --git a/tests/dejagnu-smoketest/PURPOSE b/tests/dejagnu-smoketest/PURPOSE deleted file mode 100644 index 5a6a058..0000000 --- a/tests/dejagnu-smoketest/PURPOSE +++ /dev/null @@ -1,3 +0,0 @@ -Test Name: dejagnu-smoketest -Author: -Short Description: Run a minimal systemtap testsuite diff --git a/tests/dejagnu-smoketest/runtest.sh b/tests/dejagnu-smoketest/runtest.sh deleted file mode 100755 index d988142..0000000 --- a/tests/dejagnu-smoketest/runtest.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -set -e -set -x - -dnf debuginfo-install -y kernel - -# on Fedora CI, can only assume about 1GB RAM to run these tests - -stap -L 'process("stap").mark("*")' | grep pass -# stap -L 'kernel.trace("sys_enter")' -stap -v --example helloworld.stp -stap -v -T 10 -p4 -e 'probe kernel.function("do_exit") {println($$vars)}' -# stap -v -T 10 -e 'probe syscall.* ? {println(argstr)}' - -echo -echo RESULT: PASS diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 5d88e66..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -- hosts: localhost - roles: - - role: standard-test-beakerlib - tags: - - classic - tests: - - dejagnu-smoketest - required_packages: - - systemtap-testsuite - - kernel-devel