#5 This is a test of how a future test might look like. This is not supposed to be a true PR.
Closed 3 years ago by mcermak. Opened 3 years ago by mcermak.
Unknown source rawhide  into  rawhide

file added
+1
@@ -0,0 +1,1 @@

+ 1

file added
+20
@@ -0,0 +1,20 @@

+ --- !Policy

+ product_versions:

+   - fedora-*

+ decision_context: bodhi_update_push_stable

+ subject_type: koji_build

+ rules:

+   - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}

+   - !PassingTestCaseRule {test_case_name: baseos-qe.koji-build.scratch-build.validation}

+ --- !Policy

+ product_versions:

+   - rhel-8

+ decision_context: osci_compose_gate

+ rules:

+   - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}

+ --- !Policy

+ product_versions:

+   - rhel-9

+ decision_context: osci_compose_gate

+ rules:

+   - !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}

file added
+6
@@ -0,0 +1,6 @@

+ summary: CI Gating Plan

+ discover:

+     how: fmf

+     directory: tests

+ execute:

+     how: beakerlib

@@ -0,0 +1,15 @@

+ summary: Quick test that systemtap generally works

+ description: ''

+ contact:

+ - Petr Muller <pmuller@redhat.com>

+ component:

+ - systemtap

+ test: ./runtest.sh

+ framework: beakerlib

+ recommend:

+ - koji

+ - systemtap

+ - kernel-devel

+ duration: 1h

+ extra-summary: /tools/systemtap/Sanity/quick-smoke-test

+ extra-task: /tools/systemtap/Sanity/quick-smoke-test

@@ -0,0 +1,34 @@

+ #!/bin/bash

+ 

+ # runtest.sh of /tools/systemtap/Sanity/quick-smoke-test

+ 

+ . /usr/share/beakerlib/beakerlib.sh || exit 1

+ 

+ export DEBUGINFOD_URLS="https://debuginfod.elfutils.org/ $DEBUGINFOD_URLS"

+ export DEBUGINFOD_PROGRESS=1

+ export DEBUGINFOD_TIMEOUT=300

+ 

+ 

+ # On Rawhide, the running kernel packages won't probably be avail in

+ # configured repos.  Debuginfo isn't a problem, we access that using

+ # the debuginfod.

+ __install_deps ()

+ {

+     TMPD=$(mktemp -d)

+     rlRun "pushd $TMPD"

+     rlRun "koji download-build --rpm kernel-devel-`uname -r` --arch `uname -i`"

+     rlRun "dnf -y install kernel-devel-`uname -r`.rpm"

+     rlRun "popd"

+     rlRun "rm -rf $TMPD"

+ }

+ 

+ rlJournalStart

+ rlPhaseStartTest

+     rlRun "stap-prep || (__install_deps; stap-prep)"

+     rlRun "stap -v -e 'probe kernel.function(\"vfs_read\"){ println(\$\$vars); exit() }'"

+     rlRun "stap -L 'process(\"stap\").mark(\"*\")' | grep pass"

+     rlRun "stap -v --example helloworld.stp"

+     rlRun "stap -v -T 10 -p4 -e 'probe kernel.function(\"do_exit\") {println(\$\$vars)}'"

+ rlPhaseEnd

+ rlJournalPrintText

+ rlJournalEnd

@@ -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 <fche@redhat.com>" > $(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)

@@ -1,3 +0,0 @@

- Test Name: dejagnu-smoketest

- Author: 

- Short Description: Run a minimal systemtap testsuite

@@ -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

file removed
-11
@@ -1,11 +0,0 @@

- ---

- - hosts: localhost

-   roles:

-   - role: standard-test-beakerlib

-     tags:

-     - classic

-     tests:

-     - dejagnu-smoketest

-     required_packages:

-     - systemtap-testsuite

-     - kernel-devel