-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
100 lines (88 loc) · 3.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<title>Regression Test Reporting Tools</title>
</head>
<body>
<h1>Regression Test Reporting Tools</h1>
<p>This repository is the home of tools used to run Boost's automated
regression testing and reporting, and tools that may (optionally) be used by
Boost developers to perform local regression test reporting.</p>
<p>
Instructions for running Boost's automated regression testing and reporting,
and reporting<br /> the results back to the Boost community are <a
href="http://www.boost.org/development/running_regression_tests.html">
available on the Boost web site</a>.
</p>
<p>To build developers local test reporting tools, cd to the specific
tool's build directory, then invoke b2 like this:</p>
<blockquote>
<pre>b2 --boost-root=<b><i>path</i></b> install</pre>
</blockquote>
<p>For example:</p>
<blockquote>
<pre>cd regression/library_status/build
b2 --boost-root=c:/boost install</pre>
</blockquote>
<p>Options for building are:</p>
<dl>
<dt>
--boost-root=<i>path</i>
</dt>
<dd>Specify where to find the Boost tree to use to compile the tools.
Defaults to environment variable "BOOST_ROOT".</dd>
<dt>
--boost-build=<i>path</i>
</dt>
<dd>
Override the path to the Boost Build sources. The Boost Build sources
default to environment variable "BOOST_BUILD", or "<i>boost-root</i>/tools/build/src",
in that order.
</dd>
<dt>
--prefix=<i>path</i>
</dt>
<dd>
Root path where to install to. Installed files will be copied into
sub-directories of this location. Defaults to environment variable
"INSTALL_PREFIX", or to environment variable "PREFIX", or the option as
specified, or "<i>regression-root</i>/stage" in that order.
</dd>
<dt>
--exec-prefix=<i>path</i>
</dt>
<dd>
Path where to install programs. Defaults to environment variable
"INSTALL_PREFIX_EXEC", or to environment variable "EPREFIX", or to the
option as specified, or to "<i>install-prefix</i>/bin" in that order.
</dd>
</dl>
<p>There is one developers local test reporting tool.</p>
<ul>
<li><a href="library_status/doc/library_status.html">Library Status</a>
- Runs test programs for one or all boost libraries on your local
installation and generates complete tables to show which combinations of
libraries, compilers, compiler settings pass and fail at your local
installation.</li>
</ul>
<hr />
<p>
<font size="2">Revised: <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->01
April 2015<!--webbot bot="Timestamp" endspan i-checksum="28342" --></font>
</p>
<p>
<font size="2">Copyright Beman Dawes 2003.</font>
</p>
<p>
<font size="2">Copyright Rene Rivera 2007, 2015.</font>
</p>
<p>
<font size="2">Distributed under the Boost Software License, Version
1.0. (See copy at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)
</font>
</p>
</body>
</html>