diff options
| author | Bill Peck <bpeck@redhat.com> | 2013-04-23 13:17:17 -0400 |
|---|---|---|
| committer | Bill Peck <bpeck@redhat.com> | 2013-04-23 13:17:17 -0400 |
| commit | bcfbeb2fc2df8b10b747fa3c165752aa31221858 (patch) | |
| tree | a0bc7d7ff55208ab11690e1e4dc5d2201253bf8b /kernel/include/Makefile | |
| parent | 44188568f1cd5d8f36fe3361acb9a6f3f7060b48 (diff) | |
| download | tests-bcfbeb2fc2df8b10b747fa3c165752aa31221858.tar.gz tests-bcfbeb2fc2df8b10b747fa3c165752aa31221858.tar.xz tests-bcfbeb2fc2df8b10b747fa3c165752aa31221858.zip | |
copy and update of /kernel/include
Diffstat (limited to 'kernel/include/Makefile')
| -rw-r--r-- | kernel/include/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/kernel/include/Makefile b/kernel/include/Makefile new file mode 100644 index 0000000..6b73226 --- /dev/null +++ b/kernel/include/Makefile @@ -0,0 +1,48 @@ +# Include Common Makefile +include /usr/share/rhts/lib/rhts-make.include + +# The version of the test rpm that gets created/submitted. +export TESTVERSION=1.0 + +# The toplevel namespace within which the test lives. +TOPLEVEL_NAMESPACE=/$(PACKAGE_NAME) + +# The toplevel namespace within which the test lives. +PACKAGE_NAME=kernel + +# The name of the package under test. +RELATIVE_PATH=include + +# The relative path name to the test +export TEST=$(TOPLEVEL_NAMESPACE)/$(RELATIVE_PATH) + +# All files you want bundled into your rpm: +# data files, scripts, and anything needed to either +# compile the test and/or run it. +FILES= $(METADATA) \ + runtest.sh + +build: + chmod a+x runtest.sh + +run: $(FILES) build + ./runtest.sh + +clean: + $(RM) $(METADATA) + $(RM) *~ kernel-kernel-include* + +# Generate the testinfo.desc here: +$(METADATA): + touch $(METADATA) + @echo "Name: $(TEST)" >$(METADATA) + @echo "Description: Common functions and/or variables for Kernel Testing Tasks." >>$(METADATA) + @echo "Path: $(TEST_DIR)" >>$(METADATA) + @echo "TestTime: 5m" >>$(METADATA) + @echo "TestVersion: $(TESTVERSION)" >>$(METADATA) + @echo "License: GPLv3" >>$(METADATA) + @echo "Owner: Paul Bunyan<pbunyan@redhat.com>" >>$(METADATA) + @echo "Provides: test(/kernel/include)" >>$(METADATA) + @cat $(METADATA) + +# EndFile |
