f0336503b3
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/systemtap#23a9cfdc9de8427546408fabf1c95f85091d7b2c
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
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)
|