• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4<title>Customizing the module's initialization function</title>
5<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7<link rel="home" href="../../../index.html" title="Boost.Test">
8<link rel="up" href="../shared_lib_customizations.html" title="Shared-library variant customizations">
9<link rel="prev" href="entry_point.html" title="Customizing the module's entry point">
10<link rel="next" href="../external_test_runner.html" title="The external test runner usage variant">
11</head>
12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13<table cellpadding="2" width="100%"><tr>
14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
15<td align="center"><a href="../../../../../../../index.html">Home</a></td>
16<td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
20</tr></table>
21<hr>
22<div class="spirit-nav">
23<a accesskey="p" href="entry_point.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../shared_lib_customizations.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../external_test_runner.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
24</div>
25<div class="section">
26<div class="titlepage"><div><div><h4 class="title">
27<a name="boost_test.adv_scenarios.shared_lib_customizations.init_func"></a><a class="link" href="init_func.html" title="Customizing the module's initialization function">Customizing
28        the module's initialization function</a>
29</h4></div></div></div>
30<p>
31          In the shared-library variant, it is impossible to customize the initialization
32          function without <a class="link" href="entry_point.html" title="Customizing the module's entry point">customizing
33          the entry point</a>. We have to customize both. In one of the source
34          files, you now have to define your custom entry point and <a class="link" href="../test_module_init_overview.html" title="Test module's initialization">initialization
35          function</a> <code class="computeroutput"><span class="identifier">init_unit_test</span></code>;
36          next invoke the default <a class="link" href="../test_module_runner_overview.html" title="Test module runner">test
37          runner</a> <code class="computeroutput"><span class="identifier">unit_test_main</span></code>
38          manually with <code class="computeroutput"><span class="identifier">init_unit_test</span></code>
39          as argument. You <span class="emphasis"><em>do not</em></span> define <a class="link" href="../../utf_reference/link_references/link_boost_test_module_macro.html" title="BOOST_TEST_MODULE"><code class="computeroutput"><span class="identifier">BOOST_TEST_MODULE</span></code></a> in the main
40          file:
41        </p>
42<div class="informaltable"><table class="table">
43<colgroup>
44<col>
45<col>
46</colgroup>
47<thead><tr>
48<th>
49                  <p>
50                    In <span class="bold"><strong>exactly one</strong></span> file
51                  </p>
52                </th>
53<th>
54                  <p>
55                    In all other files
56                  </p>
57                </th>
58</tr></thead>
59<tbody><tr>
60<td>
61<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="preprocessor">#define</span> <span class="identifier">BOOST_TEST_DYN_LINK</span>
62<span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">test</span><span class="special">/</span><span class="identifier">unit_test</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
63
64<span class="comment">// initialization function:</span>
65<span class="keyword">bool</span> <span class="identifier">init_unit_test</span><span class="special">()</span>
66<span class="special">{</span>
67  <span class="keyword">return</span> <span class="keyword">true</span><span class="special">;</span>
68<span class="special">}</span>
69
70<span class="comment">// entry point:</span>
71<span class="keyword">int</span> <span class="identifier">main</span><span class="special">(</span><span class="keyword">int</span> <span class="identifier">argc</span><span class="special">,</span> <span class="keyword">char</span><span class="special">*</span> <span class="identifier">argv</span><span class="special">[])</span>
72<span class="special">{</span>
73  <span class="keyword">return</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">unit_test</span><span class="special">::</span><span class="identifier">unit_test_main</span><span class="special">(</span> <span class="special">&amp;</span><span class="identifier">init_unit_test</span><span class="special">,</span> <span class="identifier">argc</span><span class="special">,</span> <span class="identifier">argv</span> <span class="special">);</span>
74<span class="special">}</span>
75</pre>
76                </td>
77<td>
78<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="preprocessor">#define</span> <span class="identifier">BOOST_TEST_DYN_LINK</span>
79<span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">test</span><span class="special">/</span><span class="identifier">unit_test</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
80
81<span class="comment">//</span>
82<span class="comment">// test cases</span>
83<span class="comment">//</span>
84
85<span class="comment">//</span>
86<span class="comment">// test cases</span>
87<span class="comment">//</span>
88
89<span class="comment">//</span>
90<span class="comment">// test cases</span>
91<span class="comment">//</span>
92</pre>
93                </td>
94</tr></tbody>
95</table></div>
96<p>
97          For reporting errors that may occur during the initialization,
98        </p>
99<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
100<li class="listitem">
101              either you return <code class="computeroutput"><span class="keyword">false</span></code>
102              (valid only for the new API only, see <a class="link" href="../../utf_reference/link_references/link_boost_test_alternative_init_macro.html" title="BOOST_TEST_ALTERNATIVE_INIT_API"><code class="computeroutput"><span class="identifier">BOOST_TEST_ALTERNATIVE_INIT_API</span></code></a>)
103            </li>
104<li class="listitem">
105              or you raise an exception such as <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">runtime_error</span></code>
106              or <code class="computeroutput"><a class="link" href="../../../boost/unit_test/framework/setup_error.html" title="Struct setup_error">boost::unit_test::framework::setup_error</a></code>
107            </li>
108</ul></div>
109<p>
110          An error reported in this function aborts the execution of the test module.
111        </p>
112</div>
113<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
114<td align="left"></td>
115<td align="right"><div class="copyright-footer">Copyright © 2001-2020 Boost.Test contributors<p>
116        Distributed under the Boost Software License, Version 1.0. (See accompanying
117        file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
118      </p>
119</div></td>
120</tr></table>
121<hr>
122<div class="spirit-nav">
123<a accesskey="p" href="entry_point.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../shared_lib_customizations.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../external_test_runner.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
124</div>
125</body>
126</html>
127