# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Makefile of /CoreOS/tzdata/sanity # Description: Basic sanity test # Author: John Poelstra # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # Copyright (c) 2006 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/. # # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # The toplevel namespace within which the test lives. TOPLEVEL_NAMESPACE=/CoreOS # The name of the package under test: PACKAGE_NAME=tzdata # The path of the test below the package: RELATIVE_PATH=sanity # Version of the Test. Used with make tag. export TESTVERSION=1.4 # The combined namespace of the test. #export TEST=$(TOPLEVEL_NAMESPACE)/$(PACKAGE_NAME)/$(RELATIVE_PATH) export TEST=/CoreOS/tzdata/sanity .PHONY: all install download clean BUILT_FILES= FILES=$(METADATA) tzdata-test.sh runtest.sh PURPOSE timezones.txt expected.results dates.txt run: $(FILES) build ./runtest.sh build: $(BUILT_FILES) chmod a+x ./runtest.sh chmod a+x ./tzdata-test.sh clean: rm -f *~ *.rpm $(BUILT_FILES) # Include Common Makefile include /usr/share/rhts/lib/rhts-make.include # Generate the testinfo.desc here: $(METADATA): Makefile @touch $(METADATA) @echo "Owner: Karel Volny " > $(METADATA) @echo "Name: $(TEST)" >> $(METADATA) @echo "Path: $(TEST_DIR)" >> $(METADATA) @echo "License: GPLv2+" >> $(METADATA) @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) @echo "Description: Basic sanity test for the tzdata package">> $(METADATA) @echo "TestTime: 1m" >> $(METADATA) @echo "RunFor: $(PACKAGE_NAME)" >> $(METADATA) @echo "Requires: $(PACKAGE_NAME)" >> $(METADATA) @echo "Type: Regression" >> $(METADATA) # You may need other fields here; see the documentation rhts-lint $(METADATA)