Files
website-v2-docs/contributor-guide/modules/ROOT/pages/testing/boost-test-matrix.adoc
2024-02-19 13:37:46 -03:00

83 lines
3.8 KiB
Plaintext

////
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Official repository: https://github.com/boostorg/website-v2-docs
////
= Test Matrix
:navtitle: Test Matrix
The Boost Test Matrix is an automated testing system that runs tests on Boost libraries across a wide range of platforms, compiler versions, and configurations. Its primary purpose is to ensure that the libraries work correctly under various conditions and to identify any compatibility issues.
The Test Matrix includes tests run on different operating systems (Windows, Linux, macOS) and with various compilers (such as GCC, Clang, MSVC). This diversity helps in catching issues that might only appear in specific environments.
== Regression Dashboard
The results of library tests are published on the
http://www.boost.org/development/tests/master/developer/summary.html[Boost Regression Testing Dashboard].
This dashboard is publicly accessible and provides detailed information about the test results for most libraries.
== Handling Test Failures
If your contribution causes test failures, it's expected that you take responsibility for fixing them. This might involve making code adjustments or collaborating with others if the issue is complex, or affects multiple parts of Boost.
On the dashboard, you will find a matrix of test results. The columns represent different test runners (which correspond to different platforms, compiler versions, etc.), and the rows represent individual libraries.
When you click on the Dashboard URL, you will see the test **Summary**.
image::test-matrix-summary.png[]
The table is large, and you will need to scroll up and down and left and right to view all relevant results. Note that some entries are underlined (even **OK** entries) which indicates they are links to further information.
image::test-matrix-sample.png[]
=== Dashboard Legend
The dashboard uses different colors or labels to indicate the status of the tests (such as 'pass', 'fail', or 'unresolved'). Understanding these labels is key to interpreting the test results correctly. Note that some tests are _expected_ to fail.
image::test-matrix-legend.png[]
By clicking on specific cells in the matrix, you can view detailed results for a particular library and test runner. This includes information about which tests passed, which failed, and often detailed logs of the test runs.
image::test-matrix-sample-2.png[]
=== Example
For example, click on the boost:asio[] entry in the left-hand column, and you will bring up the test matrix for the **Asio/Master** library.
image::test-matrix-asio.png[]
Go deeper by clicking on the entries in the left-hand column, which are now individual tests, to bring up the test code. For example, click on **any_completion_handler** to view its source.
image::test-matrix-asio-completion-handler.png[]
Selecting the column headers will bring up the configuration information that is being specified before each test in the column is run.
image::test-matrix-teeks.png[]
=== Developer Report
If you select the **Report info** entry, top left on the left-hand column, you can see some metrics for the overall test process:
image::test-matrix-developer-report.png[]
== Boost Build
The Test Matrix uses https://www.bfgroup.xyz/b2/[B2] as its build system. Understanding how to write and modify Jamfiles (Boost.Build scripts) can be helpful for integrating your tests into the matrix.
== Test Process Feedback
If you encounter issues with the testing infrastructure or have suggestions for improvement, engage with the Boost community (refer to xref:getting-involved.adoc[]). The testing process is continually evolving, and contributions to the testing infrastructure itself are valuable.
== See Also
* xref:release-process.adoc[]