]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/netbsd-tests/share/mk/t_test.sh
MFC r305358,r305449,r305451,r306367,r306397,r309474:
[FreeBSD/stable/10.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
38         if [ ! -e /usr/bin/gcc -a -e /usr/bin/clang ]; then
39                 export HAVE_LLVM=yes
40         fi
41         local lang="${1}"; shift
42         local name="${1}"; shift
43
44         cat >Makefile <<EOF
45 .include <bsd.own.mk>
46 TESTSDIR = \${TESTSBASE}/fake
47 TESTS_${lang} = ${name}
48 .include <bsd.test.mk>
49 EOF
50
51         atf_check -o ignore make
52         mkdir -p root/usr/tests/fake
53         create_make_conf mk.conf owngrp DESTDIR="$(pwd)/root"
54         atf_check -o ignore make install
55
56         atf_check -o match:'ident: one_tc' "./root/usr/tests/fake/${name}" -l
57 }
58
59 atf_test_case one_c
60 one_c_body() {
61         cat >t_fake.c <<EOF
62 #include <atf-c.h>
63 ATF_TC_WITHOUT_HEAD(one_tc);
64 ATF_TC_BODY(one_tc, tc)
65 {
66         atf_tc_fail("Failing explicitly");
67 }
68
69 ATF_TP_ADD_TCS(tp)
70 {
71         ATF_TP_ADD_TC(tp, one_tc);
72         return atf_no_error();
73 }
74 EOF
75         one_test C t_fake
76 }
77
78 atf_test_case one_cxx
79 one_cxx_body() {
80         cat >t_fake.cpp <<EOF
81 #include <atf-c++.hpp>
82 ATF_TEST_CASE_WITHOUT_HEAD(one_tc);
83 ATF_TEST_CASE_BODY(one_tc)
84 {
85         fail("Failing explicitly");
86 }
87
88 ATF_INIT_TEST_CASES(tcs)
89 {
90         ATF_ADD_TEST_CASE(tcs, one_tc);
91 }
92 EOF
93         one_test CXX t_fake
94 }
95
96 atf_test_case one_sh
97 one_sh_body() {
98         cat >t_fake.sh <<EOF
99 atf_test_case one_tc
100 one_tc_body() {
101         atf_fail "Failing explicitly"
102 }
103
104 atf_init_test_cases() {
105         atf_add_test_case one_tc
106 }
107 EOF
108         one_test SH t_fake
109 }
110
111 atf_init_test_cases() {
112         atf_add_test_case one_c
113         atf_add_test_case one_cxx
114         atf_add_test_case one_sh
115 }