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. 36one_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> 46TESTSDIR = \${TESTSBASE}/fake 47TESTS_${lang} = ${name} 48.include <bsd.test.mk> 49EOF 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 59atf_test_case one_c 60one_c_body() { 61 cat >t_fake.c <<EOF 62#include <atf-c.h> 63ATF_TC_WITHOUT_HEAD(one_tc); 64ATF_TC_BODY(one_tc, tc) 65{ 66 atf_tc_fail("Failing explicitly"); 67} 68 69ATF_TP_ADD_TCS(tp) 70{ 71 ATF_TP_ADD_TC(tp, one_tc); 72 return atf_no_error(); 73} 74EOF 75 one_test C t_fake 76} 77 78atf_test_case one_cxx 79one_cxx_body() { 80 cat >t_fake.cpp <<EOF 81#include <atf-c++.hpp> 82ATF_TEST_CASE_WITHOUT_HEAD(one_tc); 83ATF_TEST_CASE_BODY(one_tc) 84{ 85 fail("Failing explicitly"); 86} 87 88ATF_INIT_TEST_CASES(tcs) 89{ 90 ATF_ADD_TEST_CASE(tcs, one_tc); 91} 92EOF 93 one_test CXX t_fake 94} 95 96atf_test_case one_sh 97one_sh_body() { 98 cat >t_fake.sh <<EOF 99atf_test_case one_tc 100one_tc_body() { 101 atf_fail "Failing explicitly" 102} 103 104atf_init_test_cases() { 105 atf_add_test_case one_tc 106} 107EOF 108 one_test SH t_fake 109} 110 111atf_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} 116