Blame tests/vim-in-ex-mode-incorrectly-gives-an-eol-error/Makefile

Andrei Stepanov 81473c
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
#   Makefile of /CoreOS/vim/Regression/vim-in-ex-mode-incorrectly-gives-an-eol-error
Andrei Stepanov 81473c
#   Description: Test for vim in ex mode incorrectly gives an eol error
Andrei Stepanov 81473c
#   Author: David Kutalek <dkutalek@redhat.com>
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
#   Copyright (c) 2010 Red Hat, Inc. All rights reserved.
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
#   This copyrighted material is made available to anyone wishing
Andrei Stepanov 81473c
#   to use, modify, copy, or redistribute it subject to the terms
Andrei Stepanov 81473c
#   and conditions of the GNU General Public License version 2.
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
#   This program is distributed in the hope that it will be
Andrei Stepanov 81473c
#   useful, but WITHOUT ANY WARRANTY; without even the implied
Andrei Stepanov 81473c
#   warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
Andrei Stepanov 81473c
#   PURPOSE. See the GNU General Public License for more details.
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
#   You should have received a copy of the GNU General Public
Andrei Stepanov 81473c
#   License along with this program; if not, write to the Free
Andrei Stepanov 81473c
#   Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Andrei Stepanov 81473c
#   Boston, MA 02110-1301, USA.
Andrei Stepanov 81473c
#
Andrei Stepanov 81473c
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Andrei Stepanov 81473c
Andrei Stepanov 81473c
export TEST=/CoreOS/vim/Regression/vim-in-ex-mode-incorrectly-gives-an-eol-error
Andrei Stepanov 81473c
export TESTVERSION=1.0
Andrei Stepanov 81473c
Andrei Stepanov 81473c
BUILT_FILES=
Andrei Stepanov 81473c
Andrei Stepanov 81473c
FILES=$(METADATA) runtest.sh Makefile PURPOSE exdoublequote expounddoublequote
Andrei Stepanov 81473c
Andrei Stepanov 81473c
.PHONY: all install download clean
Andrei Stepanov 81473c
Andrei Stepanov 81473c
run: $(FILES) build
Andrei Stepanov 81473c
	./runtest.sh
Andrei Stepanov 81473c
Andrei Stepanov 81473c
build: $(BUILT_FILES)
Andrei Stepanov 81473c
	chmod a+x runtest.sh
Andrei Stepanov 81473c
Andrei Stepanov 81473c
clean:
Andrei Stepanov 81473c
	rm -f *~ $(BUILT_FILES)
Andrei Stepanov 81473c
Andrei Stepanov 81473c
Andrei Stepanov 81473c
include /usr/share/rhts/lib/rhts-make.include
Andrei Stepanov 81473c
Andrei Stepanov 81473c
$(METADATA): Makefile
Andrei Stepanov 81473c
	@echo "Owner:           David Kutalek <dkutalek@redhat.com>" > $(METADATA)
Andrei Stepanov 81473c
	@echo "Name:            $(TEST)" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "TestVersion:     $(TESTVERSION)" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Path:            $(TEST_DIR)" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Description:     Test for vim in ex mode incorrectly gives an eol error" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Type:            Regression" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "TestTime:        5m" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "RunFor:          vim" >> $(METADATA)
Andrei Stepanov 9647e2
	@echo "Requires:        vim-minimal" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Priority:        Normal" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "License:         GPLv2" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Confidential:    no" >> $(METADATA)
Andrei Stepanov 81473c
	@echo "Destructive:     no" >> $(METADATA)
Andrei Stepanov 81473c
Andrei Stepanov 81473c
	rhts-lint $(METADATA)