]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/share/mk/t_test.sh
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / share / mk / t_test.sh
1 # Copyright 2012 Google Inc.
2 # All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
7 #
8 # * Redistributions of source code must retain the above copyright
9 #   notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright
11 #   notice, this list of conditions and the following disclaimer in the
12 #   documentation and/or other materials provided with the distribution.
13 # * Neither the name of Google Inc. nor the names of its contributors
14 #   may be used to endorse or promote products derived from this software
15 #   without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 # Helper function for the various one_* test cases.
30 #
31 # The first argument must be one of C, CXX or SH, and this indicates the
32 # language of the test program.
33 #
34 # The second argument is the name of the test program, without an extension.
35 # The corresponding source file must exist in the current directory.
36 one_test() {
37         local lang="${1}"; shift
38         local name="${1}"; shift
39
40         cat >Makefile <<EOF
41 .include <bsd.own.mk>
42 TESTSDIR = \${TESTSBASE}/fake
43 TESTS_${lang} = ${name}
44 .include <bsd.test.mk>
45 EOF
46
47         atf_check -o ignore make
48         mkdir -p root/usr/tests/fake
49         create_make_conf mk.conf owngrp DESTDIR="$(pwd)/root"
50         atf_check -o ignore make install
51
52         atf_check -o match:'ident: one_tc' "./root/usr/tests/fake/${name}" -l
53 }
54
55 atf_test_case one_c
56 one_c_body() {
57         cat >t_fake.c <<EOF
58 #include <atf-c.h>
59 ATF_TC_WITHOUT_HEAD(one_tc);
60 ATF_TC_BODY(one_tc, tc)
61 {
62         atf_tc_fail("Failing explicitly");
63 }
64
65 ATF_TP_ADD_TCS(tp)
66 {
67         ATF_TP_ADD_TC(tp, one_tc);
68         return atf_no_error();
69 }
70 EOF
71         one_test C t_fake
72 }
73
74 atf_test_case one_cxx
75 one_cxx_body() {
76         cat >t_fake.cpp <<EOF
77 #include <atf-c++.hpp>
78 ATF_TEST_CASE_WITHOUT_HEAD(one_tc);
79 ATF_TEST_CASE_BODY(one_tc)
80 {
81         fail("Failing explicitly");
82 }
83
84 ATF_INIT_TEST_CASES(tcs)
85 {
86         ATF_ADD_TEST_CASE(tcs, one_tc);
87 }
88 EOF
89         one_test CXX t_fake
90 }
91
92 atf_test_case one_sh
93 one_sh_body() {
94         cat >t_fake.sh <<EOF
95 atf_test_case one_tc
96 one_tc_body() {
97         atf_fail "Failing explicitly"
98 }
99
100 atf_init_test_cases() {
101         atf_add_test_case one_tc
102 }
103 EOF
104         one_test SH t_fake
105 }
106
107 atf_init_test_cases() {
108         atf_add_test_case one_c
109         atf_add_test_case one_cxx
110         atf_add_test_case one_sh
111 }