|
Andrei Stepanov |
81473c |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# Makefile of netrw-plugin-delete-command-broken
|
|
Andrei Stepanov |
81473c |
# Description: Test for netrw plugin: delete command broken
|
|
Andrei Stepanov |
81473c |
# Author: Petr Splichal <psplicha@redhat.com>
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# Copyright (c) 2009 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/netrw-plugin-delete-command-broken
|
|
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
|
|
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: Petr Splichal <psplicha@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 netrw plugin: delete command broken" >> $(METADATA)
|
|
Andrei Stepanov |
81473c |
@echo "Type: Regression" >> $(METADATA)
|
|
Andrei Stepanov |
81473c |
@echo "TestTime: 5m" >> $(METADATA)
|
|
Andrei Stepanov |
81473c |
@echo "RunFor: vim" >> $(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 |
@echo "Requires: vim-enhanced" >> $(METADATA)
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
rhts-lint $(METADATA)
|