1#
2# Automated Testing Framework (atf)
3#
4# Copyright (c) 2007 The NetBSD Foundation, Inc.
5# All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29
30libatf_c___la_SOURCES += atf-c++/detail/application.cpp \
31                         atf-c++/detail/application.hpp \
32                         atf-c++/detail/env.cpp \
33                         atf-c++/detail/env.hpp \
34                         atf-c++/detail/exceptions.cpp \
35                         atf-c++/detail/exceptions.hpp \
36                         atf-c++/detail/expand.cpp \
37                         atf-c++/detail/expand.hpp \
38                         atf-c++/detail/fs.cpp \
39                         atf-c++/detail/fs.hpp \
40                         atf-c++/detail/parser.cpp \
41                         atf-c++/detail/parser.hpp \
42                         atf-c++/detail/process.cpp \
43                         atf-c++/detail/process.hpp \
44                         atf-c++/detail/sanity.hpp \
45                         atf-c++/detail/text.cpp \
46                         atf-c++/detail/text.hpp \
47                         atf-c++/detail/ui.cpp \
48                         atf-c++/detail/ui.hpp
49
50tests_atf_c___detail_DATA = atf-c++/detail/Atffile \
51                            atf-c++/detail/Kyuafile
52tests_atf_c___detaildir = $(pkgtestsdir)/atf-c++/detail
53EXTRA_DIST += $(tests_atf_c___detail_DATA)
54
55noinst_LTLIBRARIES += atf-c++/detail/libtest_helpers.la
56atf_c___detail_libtest_helpers_la_SOURCES = atf-c++/detail/test_helpers.cpp \
57                                            atf-c++/detail/test_helpers.hpp
58
59tests_atf_c___detail_PROGRAMS = atf-c++/detail/application_test
60atf_c___detail_application_test_SOURCES = atf-c++/detail/application_test.cpp
61atf_c___detail_application_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
62
63tests_atf_c___detail_PROGRAMS += atf-c++/detail/env_test
64atf_c___detail_env_test_SOURCES = atf-c++/detail/env_test.cpp
65atf_c___detail_env_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
66
67tests_atf_c___detail_PROGRAMS += atf-c++/detail/exceptions_test
68atf_c___detail_exceptions_test_SOURCES = atf-c++/detail/exceptions_test.cpp
69atf_c___detail_exceptions_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
70
71tests_atf_c___detail_PROGRAMS += atf-c++/detail/expand_test
72atf_c___detail_expand_test_SOURCES = atf-c++/detail/expand_test.cpp
73atf_c___detail_expand_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
74
75tests_atf_c___detail_PROGRAMS += atf-c++/detail/fs_test
76atf_c___detail_fs_test_SOURCES = atf-c++/detail/fs_test.cpp
77atf_c___detail_fs_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
78
79tests_atf_c___detail_PROGRAMS += atf-c++/detail/parser_test
80atf_c___detail_parser_test_SOURCES = atf-c++/detail/parser_test.cpp
81atf_c___detail_parser_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
82
83tests_atf_c___detail_PROGRAMS += atf-c++/detail/process_test
84atf_c___detail_process_test_SOURCES = atf-c++/detail/process_test.cpp
85atf_c___detail_process_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
86
87tests_atf_c___detail_PROGRAMS += atf-c++/detail/sanity_test
88atf_c___detail_sanity_test_SOURCES = atf-c++/detail/sanity_test.cpp
89atf_c___detail_sanity_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
90
91tests_atf_c___detail_PROGRAMS += atf-c++/detail/text_test
92atf_c___detail_text_test_SOURCES = atf-c++/detail/text_test.cpp
93atf_c___detail_text_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
94
95tests_atf_c___detail_PROGRAMS += atf-c++/detail/ui_test
96atf_c___detail_ui_test_SOURCES = atf-c++/detail/ui_test.cpp
97atf_c___detail_ui_test_LDADD = atf-c++/detail/libtest_helpers.la $(ATF_CXX_LIBS)
98
99# vim: syntax=make:noexpandtab:shiftwidth=8:softtabstop=8
100