2020-05-13 13:58:37 +00:00
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
#
|
|
|
|
# Makefile of /CoreOS/setroubleshoot/Regression/Report-bugs-on-corresponding-components
|
|
|
|
# Description: Can sealert identify source RPM of AVC domain type?
|
|
|
|
# Author: Vit Mojzis <vmojzis@redhat.com>
|
|
|
|
#
|
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 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/setroubleshoot/Regression/Report-bugs-on-corresponding-components
|
|
|
|
export TESTVERSION=1.0
|
|
|
|
|
|
|
|
# Policy packages to be used in testing
|
|
|
|
# The followng export does not work properly in Fedora CI - relying on fallback in runtest.sh
|
|
|
|
# export TEST_PACKAGES ?= flatpak-selinux tpm2-abrmd-selinux container-selinux usbguard-selinux mysql-selinux
|
|
|
|
|
|
|
|
BUILT_FILES=
|
|
|
|
|
2020-08-03 16:30:54 +00:00
|
|
|
FILES=$(METADATA) runtest.sh Makefile avc_flatpak-selinux avc_tpm2-abrmd-selinux avc_container-selinux avc_usbguard-selinux avc_mysql-selinux avc_fapolicyd-selinux
|
2020-05-13 13:58:37 +00:00
|
|
|
|
|
|
|
.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: Vit Mojzis <vmojzis@redhat.com>" > $(METADATA)
|
|
|
|
@echo "Name: $(TEST)" >> $(METADATA)
|
|
|
|
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
|
|
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
|
|
@echo "Description: Test for BZ#1811644 (Let setroubleshoot to report bugs on components)" >> $(METADATA)
|
|
|
|
@echo "Type: Regression" >> $(METADATA)
|
|
|
|
@echo "TestTime: 5m" >> $(METADATA)
|
|
|
|
@echo "RunFor: setroubleshoot" >> $(METADATA)
|
2020-08-03 16:30:54 +00:00
|
|
|
@echo "Requires: setroubleshoot-server flatpak-selinux tpm2-abrmd-selinux container-selinux usbguard-selinux mysql-selinux fapolicyd-selinux" >> $(METADATA)
|
2020-05-13 13:58:37 +00:00
|
|
|
@echo "Requires: $(TEST_PACKAGES)" >> $(METADATA)
|
|
|
|
@echo "Priority: Normal" >> $(METADATA)
|
|
|
|
@echo "License: GPLv2+" >> $(METADATA)
|
|
|
|
@echo "Confidential: no" >> $(METADATA)
|
|
|
|
@echo "Destructive: no" >> $(METADATA)
|
|
|
|
@echo "Bug: 1811644" >> $(METADATA)
|
|
|
|
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5 -RHEL6 -RHEL7 -RHEL7" >> $(METADATA)
|
|
|
|
|
|
|
|
rhts-lint $(METADATA)
|