c243e4902b
Provenance: http://code.google.com/p/kyua Discussed with: gibbs, gnn, keramida, mdf, mlaier, Discussed with: Garrett Cooper
103 lines
4.5 KiB
Makefile
103 lines
4.5 KiB
Makefile
#
|
|
# Automated Testing Framework (atf)
|
|
#
|
|
# Copyright (c) 2007 The NetBSD Foundation, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
|
|
# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
|
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
|
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
tests_test_programs_DATA = test-programs/Atffile \
|
|
test-programs/Kyuafile
|
|
tests_test_programsdir = $(pkgtestsdir)/test-programs
|
|
EXTRA_DIST += $(tests_test_programs_DATA)
|
|
|
|
tests_test_programs_PROGRAMS = test-programs/c_helpers
|
|
test_programs_c_helpers_SOURCES = test-programs/c_helpers.c
|
|
test_programs_c_helpers_LDADD = libatf-c.la
|
|
|
|
tests_test_programs_PROGRAMS += test-programs/cpp_helpers
|
|
test_programs_cpp_helpers_SOURCES = test-programs/cpp_helpers.cpp
|
|
test_programs_cpp_helpers_LDADD = $(ATF_CXX_LIBS)
|
|
|
|
common_sh = $(srcdir)/test-programs/common.sh
|
|
EXTRA_DIST += test-programs/common.sh
|
|
|
|
tests_test_programs_SCRIPTS = test-programs/sh_helpers
|
|
CLEANFILES += test-programs/sh_helpers
|
|
EXTRA_DIST += test-programs/sh_helpers.sh
|
|
test-programs/sh_helpers: $(srcdir)/test-programs/sh_helpers.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/sh_helpers.sh $(common_sh)"; \
|
|
dst="test-programs/sh_helpers"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/config_test
|
|
CLEANFILES += test-programs/config_test
|
|
EXTRA_DIST += test-programs/config_test.sh
|
|
test-programs/config_test: $(srcdir)/test-programs/config_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/config_test.sh $(common_sh)"; \
|
|
dst="test-programs/config_test"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/expect_test
|
|
CLEANFILES += test-programs/expect_test
|
|
EXTRA_DIST += test-programs/expect_test.sh
|
|
test-programs/expect_test: $(srcdir)/test-programs/expect_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/expect_test.sh $(common_sh)"; \
|
|
dst="test-programs/expect_test"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/fork_test
|
|
CLEANFILES += test-programs/fork_test
|
|
EXTRA_DIST += test-programs/fork_test.sh
|
|
test-programs/fork_test: $(srcdir)/test-programs/fork_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/fork_test.sh $(common_sh)"; \
|
|
dst="test-programs/fork_test"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/meta_data_test
|
|
CLEANFILES += test-programs/meta_data_test
|
|
EXTRA_DIST += test-programs/meta_data_test.sh
|
|
test-programs/meta_data_test: $(srcdir)/test-programs/meta_data_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/meta_data_test.sh $(common_sh)"; \
|
|
dst="test-programs/meta_data_test"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/result_test
|
|
CLEANFILES += test-programs/result_test
|
|
EXTRA_DIST += test-programs/result_test.sh
|
|
test-programs/result_test: $(srcdir)/test-programs/result_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/result_test.sh $(common_sh)"; \
|
|
dst="test-programs/result_test"; $(BUILD_SH_TP)
|
|
|
|
tests_test_programs_SCRIPTS += test-programs/srcdir_test
|
|
CLEANFILES += test-programs/srcdir_test
|
|
EXTRA_DIST += test-programs/srcdir_test.sh
|
|
test-programs/srcdir_test: $(srcdir)/test-programs/srcdir_test.sh
|
|
test -d test-programs || mkdir -p test-programs
|
|
@src="$(srcdir)/test-programs/srcdir_test.sh $(common_sh)"; \
|
|
dst="test-programs/srcdir_test"; $(BUILD_SH_TP)
|
|
|
|
# vim: syntax=make:noexpandtab:shiftwidth=8:softtabstop=8
|