1240116Smarcel#
2240116Smarcel# Automated Testing Framework (atf)
3240116Smarcel#
4240116Smarcel# Copyright (c) 2007 The NetBSD Foundation, Inc.
5240116Smarcel# All rights reserved.
6240116Smarcel#
7240116Smarcel# Redistribution and use in source and binary forms, with or without
8240116Smarcel# modification, are permitted provided that the following conditions
9240116Smarcel# are met:
10240116Smarcel# 1. Redistributions of source code must retain the above copyright
11240116Smarcel#    notice, this list of conditions and the following disclaimer.
12240116Smarcel# 2. Redistributions in binary form must reproduce the above copyright
13240116Smarcel#    notice, this list of conditions and the following disclaimer in the
14240116Smarcel#    documentation and/or other materials provided with the distribution.
15240116Smarcel#
16240116Smarcel# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17240116Smarcel# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18240116Smarcel# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19240116Smarcel# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20240116Smarcel# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21240116Smarcel# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22240116Smarcel# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23240116Smarcel# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24240116Smarcel# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25240116Smarcel# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26240116Smarcel# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27240116Smarcel# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28240116Smarcel#
29240116Smarcel
30240116Smarcellibatf_c_la_SOURCES += atf-c/detail/dynstr.c \
31240116Smarcel                       atf-c/detail/dynstr.h \
32240116Smarcel                       atf-c/detail/env.c \
33240116Smarcel                       atf-c/detail/env.h \
34240116Smarcel                       atf-c/detail/fs.c \
35240116Smarcel                       atf-c/detail/fs.h \
36240116Smarcel                       atf-c/detail/list.c \
37240116Smarcel                       atf-c/detail/list.h \
38240116Smarcel                       atf-c/detail/map.c \
39240116Smarcel                       atf-c/detail/map.h \
40240116Smarcel                       atf-c/detail/process.c \
41240116Smarcel                       atf-c/detail/process.h \
42240116Smarcel                       atf-c/detail/sanity.c \
43240116Smarcel                       atf-c/detail/sanity.h \
44240116Smarcel                       atf-c/detail/text.c \
45240116Smarcel                       atf-c/detail/text.h \
46240116Smarcel                       atf-c/detail/tp_main.c \
47240116Smarcel                       atf-c/detail/user.c \
48240116Smarcel                       atf-c/detail/user.h
49240116Smarcel
50240116Smarceltests_atf_c_detail_DATA = atf-c/detail/Atffile \
51240116Smarcel                          atf-c/detail/Kyuafile
52240116Smarceltests_atf_c_detaildir = $(pkgtestsdir)/atf-c/detail
53240116SmarcelEXTRA_DIST += $(tests_atf_c_detail_DATA)
54240116Smarcel
55240116Smarcelnoinst_LTLIBRARIES += atf-c/detail/libtest_helpers.la
56240116Smarcelatf_c_detail_libtest_helpers_la_SOURCES = atf-c/detail/test_helpers.c \
57240116Smarcel                                          atf-c/detail/test_helpers.h
58240116Smarcelatf_c_detail_libtest_helpers_la_CPPFLAGS = -I$(srcdir)/atf-c
59240116Smarcel
60240116Smarceltests_atf_c_detail_PROGRAMS = atf-c/detail/dynstr_test
61240116Smarcelatf_c_detail_dynstr_test_SOURCES = atf-c/detail/dynstr_test.c
62240116Smarcelatf_c_detail_dynstr_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
63240116Smarcel
64240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/env_test
65240116Smarcelatf_c_detail_env_test_SOURCES = atf-c/detail/env_test.c
66240116Smarcelatf_c_detail_env_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
67240116Smarcel
68240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/fs_test
69240116Smarcelatf_c_detail_fs_test_SOURCES = atf-c/detail/fs_test.c
70240116Smarcelatf_c_detail_fs_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
71240116Smarcel
72240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/test_helpers_test
73240116Smarcelatf_c_detail_test_helpers_test_SOURCES = atf-c/detail/test_helpers_test.c
74240116Smarcelatf_c_detail_test_helpers_test_LDADD = atf-c/detail/libtest_helpers.la \
75240116Smarcel                                       libatf-c.la
76240116Smarcel
77240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/list_test
78240116Smarcelatf_c_detail_list_test_SOURCES = atf-c/detail/list_test.c
79240116Smarcelatf_c_detail_list_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
80240116Smarcel
81240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/map_test
82240116Smarcelatf_c_detail_map_test_SOURCES = atf-c/detail/map_test.c
83240116Smarcelatf_c_detail_map_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
84240116Smarcel
85240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/process_helpers
86240116Smarcelatf_c_detail_process_helpers_SOURCES = atf-c/detail/process_helpers.c
87240116Smarcel
88240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/process_test
89240116Smarcelatf_c_detail_process_test_SOURCES = atf-c/detail/process_test.c
90240116Smarcelatf_c_detail_process_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
91240116Smarcel
92240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/sanity_test
93240116Smarcelatf_c_detail_sanity_test_SOURCES = atf-c/detail/sanity_test.c
94240116Smarcelatf_c_detail_sanity_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
95240116Smarcel
96240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/text_test
97240116Smarcelatf_c_detail_text_test_SOURCES = atf-c/detail/text_test.c
98240116Smarcelatf_c_detail_text_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
99240116Smarcel
100240116Smarceltests_atf_c_detail_PROGRAMS += atf-c/detail/user_test
101240116Smarcelatf_c_detail_user_test_SOURCES = atf-c/detail/user_test.c
102240116Smarcelatf_c_detail_user_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
103240116Smarcel
104240116Smarcel# vim: syntax=make:noexpandtab:shiftwidth=8:softtabstop=8
105