2 // Automated Testing Framework (atf)
4 // Copyright (c) 2009 The NetBSD Foundation, Inc.
5 // All rights reserved.
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
10 // 1. Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer.
12 // 2. Redistributions in binary form must reproduce the above copyright
13 // notice, this list of conditions and the following disclaimer in the
14 // documentation and/or other materials provided with the distribution.
16 // THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 // CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 // IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 // IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include "../check.hpp"
36 #include "../config.hpp"
37 #include "../macros.hpp"
40 #include "process.hpp"
41 #include "test_helpers.hpp"
44 build_check_cxx_o_aux(const atf::fs::path
& sfile
, const char* failmsg
,
45 const bool expect_pass
)
47 std::vector
< std::string
> optargs
;
48 optargs
.push_back("-I" + atf::config::get("atf_includedir"));
49 optargs
.push_back("-Wall");
50 optargs
.push_back("-Werror");
52 const bool result
= atf::check::build_cxx_o(
53 sfile
.str(), "test.o", atf::process::argv_array(optargs
));
54 if ((expect_pass
&& !result
) || (!expect_pass
&& result
))
59 build_check_cxx_o(const atf::tests::tc
& tc
, const char* sfile
,
60 const char* failmsg
, const bool expect_pass
)
62 const atf::fs::path sfilepath
=
63 atf::fs::path(tc
.get_config_var("srcdir")) / sfile
;
64 build_check_cxx_o_aux(sfilepath
, failmsg
, expect_pass
);
68 header_check(const char *hdrname
)
70 std::ofstream
srcfile("test.c");
72 srcfile
<< "#include <" << hdrname
<< ">\n";
75 const std::string failmsg
= std::string("Header check failed; ") +
76 hdrname
+ " is not self-contained";
77 build_check_cxx_o_aux(atf::fs::path("test.c"), failmsg
.c_str(), true);
81 get_process_helpers_path(const atf::tests::tc
& tc
)
83 return atf::fs::path(tc
.get_config_var("srcdir")) /
84 ".." / "atf-c" / "detail" / "process_helpers";
88 test_helpers_detail::check_equal(const char* expected
[],
89 const string_vector
& actual
)
91 const char** expected_iter
= expected
;
92 string_vector::const_iterator actual_iter
= actual
.begin();
95 while (equals
&& *expected_iter
!= NULL
&& actual_iter
!= actual
.end()) {
96 if (*expected_iter
!= *actual_iter
) {
103 if (equals
&& ((*expected_iter
== NULL
&& actual_iter
!= actual
.end()) ||
104 (*expected_iter
!= NULL
&& actual_iter
== actual
.end())))
108 std::cerr
<< "EXPECTED:\n";
109 for (expected_iter
= expected
; *expected_iter
!= NULL
; expected_iter
++)
110 std::cerr
<< *expected_iter
<< "\n";
112 std::cerr
<< "ACTUAL:\n";
113 for (actual_iter
= actual
.begin(); actual_iter
!= actual
.end();
115 std::cerr
<< *actual_iter
<< "\n";
117 ATF_FAIL("Expected results differ to actual values");