diff options
| author | Dan Albert <danalbert@google.com> | 2015-01-06 15:06:45 -0800 |
|---|---|---|
| committer | Dan Albert <danalbert@google.com> | 2015-01-06 15:08:11 -0800 |
| commit | 06086258d3d8c48a916ec51c33e1ad8f46821b81 (patch) | |
| tree | 76eec05dd4f486c0aff58af92f9e216b3d6a32ef /www | |
| parent | 4385cd8d939d12530f7e533d2c0846bb5732f681 (diff) | |
| download | external_libcxx-06086258d3d8c48a916ec51c33e1ad8f46821b81.tar.gz external_libcxx-06086258d3d8c48a916ec51c33e1ad8f46821b81.tar.bz2 external_libcxx-06086258d3d8c48a916ec51c33e1ad8f46821b81.zip | |
Merge to upstream r225300.
Change-Id: I2b23715db9ac129ff80aa78ad5824db0a4d6fbb3
Diffstat (limited to 'www')
| -rw-r--r-- | www/cxx1z_status.html | 2 | ||||
| -rw-r--r-- | www/index.html | 22 | ||||
| -rw-r--r-- | www/lit_usage.html | 168 |
3 files changed, 178 insertions, 14 deletions
diff --git a/www/cxx1z_status.html b/www/cxx1z_status.html index caa750b58..16b16f77d 100644 --- a/www/cxx1z_status.html +++ b/www/cxx1z_status.html @@ -87,7 +87,7 @@ <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2106">2106</td><td><code>move_iterator</code> wrapping iterators returning prvalues</td><td>Urbana</td><td></td></tr> <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2129">2129</td><td>User specializations of <code>std::initializer_list</code></td><td>Urbana</td><td>Complete</td></tr> <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2212">2212</td><td><code>tuple_size</code> for <code>const pair</code> request <tuple> header</td><td>Urbana</td><td>Complete</td></tr> - <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2217">2217</td><td><code>operator==(sub_match, string)</code> slices on embedded '\0's</td><td>Urbana</td><td></td></tr> + <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2217">2217</td><td><code>operator==(sub_match, string)</code> slices on embedded '\0's</td><td>Urbana</td><td>Complete</td></tr> <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2230">2230</td><td>"see below" for <code>initializer_list</code> constructors of unordered containers</td><td>Urbana</td><td>Complete</td></tr> <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2233">2233</td><td><code>bad_function_call::what()</code> unhelpful</td><td>Urbana</td><td>Complete</td></tr> <tr><td><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#2266">2266</td><td><code>vector</code> and <code>deque</code> have incorrect insert requirements</td><td>Urbana</td><td></td></tr> diff --git a/www/index.html b/www/index.html index 2052ad64c..59c7f51c5 100644 --- a/www/index.html +++ b/www/index.html @@ -139,19 +139,13 @@ <!--======================================================================--> <h2 id="dir-structure">Build Bots</h2> <!--======================================================================--> - <p>These are the libc++ build bots</p> + <p>The latest libc++ build results can be found at the following locations.</p> <ul> - <li><a href="http://llvm-amd64.freebsd.your.org/b/builders/libcxx-amd64-freebsd"> - clang-libcxxrt-x86_64-freebsd10 + <li><a href="http://lab.llvm.org:8011/console"> + Buildbot libc++ builders </a></li> - <li><a href="http://llvm-amd64.freebsd.your.org/b/builders/libcxx-i386-freebsd"> - clang-libcxxrt-i386-freebsd10 - </a></li> - <li><a href="http://lab.llvm.org:8011/builders/libcxx-libcxxabi-x86_64-linux-debian"> - clang-libcxxabi-x86_64-linux-debian - </a></li> - <li><a href="http://lab.llvm.org:8011/builders/libcxx-libcxxabi-x86_64-linux-ubuntu"> - clang-libcxxabi-x86_64-linux-ubuntu + <li><a href="http://lab.llvm.org:8080/green/view/Libcxx/"> + Jenkins libc++ builders </a></li> </ul> @@ -222,8 +216,9 @@ <ul> <li><code>cd path/to/libcxx/libcxx</code></li> <li><code>alias lit='python path/to/llvm/utils/lit/lit.py'</code></li> - <li><code>ln -s path/to/build/dir/projects/libcxx/test/lit.site.cfg - test/lit.site.cfg</code></li> + <li><code>export + LIBCXX_SITE_CONFIG=path/to/build/dir/projects/libcxx/test/lit.site.cfg + </code></li> <li><code>lit -sv test/re/ # or whichever subset of tests you're interested in</code></li> </ul> @@ -475,6 +470,7 @@ End of search list. <li><a href="type_traits_design.html"><tt><type_traits></tt></a></li> <li><a href="http://cplusplusmusings.wordpress.com/2012/07/05/clang-and-standard-libraries-on-mac-os-x/">Excellent notes by Marshall Clow</a></li> <li><a href="debug_mode.html">Status of debug mode</a></li> +<li><a href="lit_usage.html">LIT usage guide</a></li> </ul> </div> diff --git a/www/lit_usage.html b/www/lit_usage.html new file mode 100644 index 000000000..91d753730 --- /dev/null +++ b/www/lit_usage.html @@ -0,0 +1,168 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ --> +<html> +<head> + <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>Testing libc++ using LIT</title> + <link type="text/css" rel="stylesheet" href="menu.css"> + <link type="text/css" rel="stylesheet" href="content.css"> + <style> + .lit-option { + padding-top: 0.5em; + margin-bottom: 0.0em; + font-size: medium; + color: #2d58b7 + } + .lit-option-desc { + display: block; + margin-top: 0em; + margin-bottom: 0em; + margin-left: 20px; + margin-right: 20px; + } + </style> +</head> + +<body> +<div id="menu"> + <div> + <a href="http://llvm.org/">LLVM Home</a> + </div> + + <div class="submenu"> + <label>libc++ Info</label> + <a href="/index.html">About</a> + </div> + + <div class="submenu"> + <label>Quick Links</label> + <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev</a> + <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits</a> + <a href="http://llvm.org/bugs/">Bug Reports</a> + <a href="http://llvm.org/svn/llvm-project/libcxx/trunk/">Browse SVN</a> + <a href="http://llvm.org/viewvc/llvm-project/libcxx/trunk/">Browse ViewVC</a> + </div> +</div> + +<div id="content"> +<!--*********************************************************************--> + <h1>Testing libc++ using LIT</h1> +<!--*********************************************************************--> +<p> +libc++ uses LIT to configure and run its tests. The primary way to run the +libc++ tests is by using <code>make check-libcxx</code>. However since libc++ +can be used in any number of possible configurations it is important to +customize the way LIT builds and runs the tests. This guide provides +information on how to use LIT directly to test libc++. +</p> +<p> +Documentation for LIT can be found +<a href="http://llvm.org/docs/CommandGuide/lit.html">here</a>. +</p> + +<!--*********************************************************************--> + <h2>Getting Started</h2> +<!--*********************************************************************--> +<p> +After building libc++ use the following commands before you start using LIT to +test. +</p> +<ul> + <li><code>alias lit='python path/to/llvm/utils/lit/lit.py'</code></li> + <li><code>export LIBCXX_SITE_CONFIG=path/to/build-libcxx/test/lit.site.cfg</code></li> +</ul> +<p> +You can now run the libc++ tests by running: +</p> +<ul> + <li><code>cd path/to/libcxx</code></li> + <li><code>lit -sv ./test</code></li> +</ul> +<p> +To only run a subsection of the tests use: +<ul> + <li><code>lit -sv test/std/numerics # Run only the numeric tests</code></li> +</ul> + +<!--*********************************************************************--> + <h2>Customization Options</h2> +<!--*********************************************************************--> +<p> +libc++'s testsuite provides multiple options to configure the way the tests +are build and run. To use these options you pass them on the LIT command line +as <code>--param NAME</code> or <code>--param NAME=VALUE</code>. Some options +have default values specified during CMake's configuration. Passing the option +on the command line will override the default. +</p> + + +<p> +<h3 class="lit-option">libcxx_site_config=<path/to/lit.site.cfg></h3> +<blockquote class="lit-option-desc"> +Specify the site configuration to use when running the tests. This option +overrides the enviroment variable <code>LIBCXX_SITE_CONFIG</code> +</blockquote> +</p> + +<p> +<h3 class="lit-option">libcxx_headers=<path/to/headers></h3> +<blockquote class="lit-option-desc"> +Specify the libc++ headers that are tested. By default the headers in the source +tree are used. +</blockquote> +</p> + +<p> +<h3 class="lit-option">libcxx_library=<path/to/libc++.so></h3> +<blockquote class="lit-option-desc"> +Specify the libc++ library that is tested. By default the library in the build +directory is used. This option cannot be used when <code>use_system_lib</code> +is provided. +</blockquote> +</p> + +<p> +<h3 class="lit-option">use_system_lib=<bool></h3> +<blockquote class="lit-option-desc"> +<b>Default: </b><code>False</code></br> +Enable or disable testing against the installed version of libc++ library. +Note: This does not use the installed headers. +</blockquote> +</p> + +<p> +<h3 class="lit-option">compile_flags="<list-of-args>"</h3> +<blockquote class="lit-option-desc"> +Specify additional compile flags as a space delimited string. +Note: This options should not be used to change the standard version used. +</blockquote> +</p> + +<p> +<h3 class="lit-option">link_flags="<list-of-args>"</h3> +<blockquote class="lit-option-desc"> +Specify additional link flags as a space delimited string. +</blockquote> +</p> + +<p> +<h3 class="lit-option">std=<standard version></h3> +<blockquote class="lit-option-desc"> +<b>Values: </b><code>c++98, c++03, c++11, c++14, c++1z</code></br> +Change the standard version used when building the tests. +</blockquote> +</p> + +<p> +<h3 class="lit-option">use_sanitizer=<sanitizer name></h3> +<blockquote class="lit-option-desc"> +<b>Values: </b><code>Memory, MemoryWithOrigins, Address, Undefined</code></br> +Run the tests using the given sanitizer. If <code>LLVM_USE_SANITIZER</code> +was given when building libc++ then that sanitizer will be used by default. +</blockquote> +</p> + +</div> +</body> +</html> |
