aboutsummaryrefslogtreecommitdiff
path: root/contrib/atf/atf-c/build_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/atf/atf-c/build_test.c')
-rw-r--r--contrib/atf/atf-c/build_test.c33
1 files changed, 7 insertions, 26 deletions
diff --git a/contrib/atf/atf-c/build_test.c b/contrib/atf/atf-c/build_test.c
index b08c9a54913c..c24b5737022f 100644
--- a/contrib/atf/atf-c/build_test.c
+++ b/contrib/atf/atf-c/build_test.c
@@ -1,7 +1,4 @@
-/*
- * Automated Testing Framework (atf)
- *
- * Copyright (c) 2009 The NetBSD Foundation, Inc.
+/* Copyright (c) 2009 The NetBSD Foundation, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -24,8 +21,9 @@
* 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.
- */
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
+
+#include "atf-c/build.h"
#include <stdio.h>
#include <stdlib.h>
@@ -33,20 +31,15 @@
#include <atf-c.h>
-#include "atf-c/build.h"
-#include "atf-c/config.h"
+#include "atf-c/detail/env.h"
+#include "atf-c/detail/test_helpers.h"
+#include "atf-c/h_build.h"
#include "atf-c/utils.h"
-#include "detail/env.h"
-#include "detail/test_helpers.h"
-#include "h_build.h"
-
/* ---------------------------------------------------------------------
* Auxiliary functions.
* --------------------------------------------------------------------- */
-void __atf_config_reinit(void);
-
static
bool
equal_arrays(const char *const *exp_array, char **actual_array)
@@ -167,7 +160,6 @@ ATF_TC_BODY(c_o, tc)
verbose_set_env("ATF_BUILD_CC", test->cc);
verbose_set_env("ATF_BUILD_CFLAGS", test->cflags);
verbose_set_env("ATF_BUILD_CPPFLAGS", test->cppflags);
- __atf_config_reinit();
{
char **argv;
@@ -196,7 +188,6 @@ ATF_TC_BODY(cpp, tc)
verbose_set_env("ATF_BUILD_CPP", test->cpp);
verbose_set_env("ATF_BUILD_CPPFLAGS", test->cppflags);
- __atf_config_reinit();
{
char **argv;
@@ -226,7 +217,6 @@ ATF_TC_BODY(cxx_o, tc)
verbose_set_env("ATF_BUILD_CXX", test->cxx);
verbose_set_env("ATF_BUILD_CXXFLAGS", test->cxxflags);
verbose_set_env("ATF_BUILD_CPPFLAGS", test->cppflags);
- __atf_config_reinit();
{
char **argv;
@@ -242,12 +232,6 @@ ATF_TC_BODY(cxx_o, tc)
}
/* ---------------------------------------------------------------------
- * Tests cases for the header file.
- * --------------------------------------------------------------------- */
-
-HEADER_TC(include, "atf-c/build.h");
-
-/* ---------------------------------------------------------------------
* Main.
* --------------------------------------------------------------------- */
@@ -261,8 +245,5 @@ ATF_TP_ADD_TCS(tp)
ATF_TP_ADD_TC(tp, cpp);
ATF_TP_ADD_TC(tp, cxx_o);
- /* Add the test cases for the header file. */
- ATF_TP_ADD_TC(tp, include);
-
return atf_no_error();
}