summaryrefslogtreecommitdiffstats
path: root/kernel/kernelinstall/Makefile
blob: 540c9d996b98ef3e77b24073fff71a81c9451050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# The toplevel namespace within which the test lives.
TOPLEVEL_NAMESPACE=/distribution

# The name of the package under test:
PACKAGE_NAME=kernel

# The path of the test below the package:
RELATIVE_PATH=$(PACKAGE_NAME)install

# The test version:
export TESTVERSION=1.1

# The test namespace as it will appear:
export TEST=$(TOPLEVEL_NAMESPACE)/$(RELATIVE_PATH)

# Built executables should be added here:
BUILT_FILES=$(METADATA)

# the list of files that will be added to the test rpm:
FILES=$(BUILT_FILES) runtest.sh Makefile

TEST_DIR=/mnt/tests$(TEST)

build: $(BUILT_FILES)

clean:
	rm -rf ./mnt
	rm -f *~ $(BUILT_FILES)
	rm -f *distribution-kernelinstall*.noarch.rpm

run: build
	chmod a+x ./runtest.sh
	./runtest.sh

# Include global Makefile targets
include /usr/share/rhts/lib/rhts-make.include

# Generate the testinfo.desc here:
$(METADATA):
	@touch $(METADATA)
	@echo "Owner:		Jeff Burke <jburke@redhat.com>" > $(METADATA)
	@echo "Name:		$(TEST)"		>> $(METADATA)
	@echo "Path:		$(TEST_DIR)"		>> $(METADATA)
	@echo "TestVersion:	$(TESTVERSION)"		>> $(METADATA)
	@echo "Description:	Reports back on the Kernel \
		installation that was done" >> $(METADATA)
	@echo "TestTime:	120m"			>> $(METADATA)
	@echo "Priority:	Manual"			>> $(METADATA)
	@echo "Requires:        iproute ethtool"        >> $(METADATA)
	@echo "RunFor:		kernel"			>> $(METADATA)
	@echo "RunFor:		kernel-headers"		>> $(METADATA)
	@echo "RepoRequires:	kernel/include"		>> $(METADATA)
	@echo "License:		GPL"			>> $(METADATA)