1 /* Copyright (c) 2008 The NetBSD Foundation, 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 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 13 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND 14 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 15 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 20 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 22 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 23 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 24 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 25 26 #if defined(ATF_C_DETAIL_TEST_HELPERS_H) 27 # error "Cannot include test_helpers.h more than once." 28 #else 29 # define ATF_C_DETAIL_TEST_HELPERS_H 30 #endif 31 32 #include <stdbool.h> 33 34 #include <atf-c.h> 35 36 #include <atf-c/detail/env.h> 37 #include <atf-c/error_fwd.h> 38 #include <atf-c/tc.h> 39 40 struct atf_dynstr; 41 struct atf_fs_path; 42 43 #define CE(stm) ATF_CHECK(!atf_is_error(stm)) 44 #define RE(stm) ATF_REQUIRE(!atf_is_error(stm)) 45 46 #define HEADER_TC(name, hdrname) \ 47 ATF_TC(name); \ 48 ATF_TC_HEAD(name, tc) \ 49 { \ 50 const char *cc; \ 51 atf_tc_set_md_var(tc, "descr", "Tests that the " hdrname " file can " \ 52 "be included on its own, without any prerequisites"); \ 53 cc = atf_env_get_with_default("ATF_BUILD_CC", ATF_BUILD_CC); \ 54 atf_tc_set_md_var(tc, "require.progs", cc); \ 55 } \ 56 ATF_TC_BODY(name, tc) \ 57 { \ 58 header_check(hdrname); \ 59 } 60 61 #define BUILD_TC(name, sfile, descr, failmsg) \ 62 ATF_TC(name); \ 63 ATF_TC_HEAD(name, tc) \ 64 { \ 65 const char *cc; \ 66 atf_tc_set_md_var(tc, "descr", descr); \ 67 cc = atf_env_get_with_default("ATF_BUILD_CC", ATF_BUILD_CC); \ 68 atf_tc_set_md_var(tc, "require.progs", cc); \ 69 } \ 70 ATF_TC_BODY(name, tc) \ 71 { \ 72 if (!build_check_c_o_srcdir(tc, sfile)) \ 73 atf_tc_fail("%s", failmsg); \ 74 } 75 76 bool build_check_c_o(const char *); 77 bool build_check_c_o_srcdir(const atf_tc_t *, const char *); 78 void header_check(const char *); 79 void get_process_helpers_path(const atf_tc_t *, const bool, 80 struct atf_fs_path *); 81 bool read_line(int, struct atf_dynstr *); 82 void run_h_tc(atf_tc_t *, const char *, const char *, const char *); 83