1 # Copyright 2012 Google Inc.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
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.
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.
29 # Helper function for the various one_* test cases.
31 # The first argument must be one of C, CXX or SH, and this indicates the
32 # language of the test program.
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.
37 local lang
="${1}"; shift
38 local name
="${1}"; shift
42 TESTSDIR = \${TESTSBASE}/fake
43 TESTS_${lang} = ${name}
44 .include <bsd.test.mk>
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
52 atf_check
-o match
:'ident: one_tc' "./root/usr/tests/fake/${name}" -l
59 ATF_TC_WITHOUT_HEAD(one_tc);
60 ATF_TC_BODY(one_tc, tc)
62 atf_tc_fail("Failing explicitly");
67 ATF_TP_ADD_TC(tp, one_tc);
68 return atf_no_error();
77 #include <atf-c++.hpp>
78 ATF_TEST_CASE_WITHOUT_HEAD(one_tc);
79 ATF_TEST_CASE_BODY(one_tc)
81 fail("Failing explicitly");
84 ATF_INIT_TEST_CASES(tcs)
86 ATF_ADD_TEST_CASE(tcs, one_tc);
97 atf_fail "Failing explicitly"
100 atf_init_test_cases() {
101 atf_add_test_case one_tc
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