# Copyright (c) 2008 The NetBSD Foundation, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND # CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN # IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # The following tests assume that the atf-c.pc file is installed in a # directory that is known by pkg-config. Otherwise they will fail, # and you will be required to adjust PKG_CONFIG_PATH accordingly. # # It would be possible to bypass this requirement by setting the path # explicitly during the tests, but then this would not do a real check # to ensure that the installation is working. proc require_pc { pkg-config ${1} || atf_fail "pkg-config could not locate ${1}.pc;" \ "maybe need to set PKG_CONFIG_PATH?" } proc check_version { setvar ver1 = $($(atf_get_srcdir)/detail/version_helper) echo "Version reported by builtin PACKAGE_VERSION: ${ver1}" atf_check -s eq:0 -o save:stdout -e empty pkg-config --modversion ${1} setvar ver2 = $(cat stdout) echo "Version reported by pkg-config: ${ver2}" atf_check_equal ${ver1} ${ver2} } atf_test_case version proc version_head { atf_set "descr" "Checks that the version in atf-c is correct" atf_set "require.progs" "pkg-config" } proc version_body { require_pc "atf-c" check_version "atf-c" } atf_test_case build proc build_head { atf_set "descr" "Checks that a test program can be built against" \ "the C library based on the pkg-config information" atf_set "require.progs" "pkg-config" } proc build_body { require_pc "atf-c" atf_check -s eq:0 -o save:stdout -e empty pkg-config --variable=cc atf-c setvar cc = $(cat stdout) echo "Compiler is: ${cxx}" atf_require_prog ${cxx} cat >tp.c <<< """ #include #include ATF_TC(tc); ATF_TC_HEAD(tc, tc) { atf_tc_set_md_var(tc, "descr", "A test case"); } ATF_TC_BODY(tc, tc) { printf("Running\n"); } ATF_TP_ADD_TCS(tp) { ATF_TP_ADD_TC(tp, tc); return atf_no_error(); } """ atf_check -s eq:0 -o save:stdout -e empty pkg-config --cflags atf-c setvar cflags = $(cat stdout) echo "CFLAGS are: ${cflags}" atf_check -s eq:0 -o save:stdout -e empty \ pkg-config --libs-only-L --libs-only-other atf-c setvar ldflags = $(cat stdout) atf_check -s eq:0 -o save:stdout -e empty pkg-config --libs-only-l atf-c setvar libs = $(cat stdout) echo "LDFLAGS are: ${ldflags}" echo "LIBS are: ${libs}" atf_check -s eq:0 -o empty -e empty ${cc} ${cflags} -o tp.o -c tp.c atf_check -s eq:0 -o empty -e empty ${cc} ${ldflags} -o tp tp.o ${libs} setvar libpath = '' for f in ${ldflags} { case{ -L* { setvar dir = $(echo ${f} | sed -e 's,^-L,,') if test -z ${libpath} { setvar libpath = "${dir}" } else { setvar libpath = ""${libpath}:${dir}"" } } * { } } } atf_check -s eq:0 -o empty -e empty test -x tp atf_check -s eq:0 -o match:'Running' -e empty -x \ "LD_LIBRARY_PATH=${libpath} ./tp tc" } proc atf_init_test_cases { atf_add_test_case version atf_add_test_case build } # vim: syntax=sh:expandtab:shiftwidth=4:softtabstop=4