2017-08-24 15:21:36 +02:00
<a id="top"></a>
2017-08-24 22:21:54 +02:00
# Compile-time configuration
2017-10-13 11:14:37 +02:00
**Contents**<br>
[Prefixing Catch macros ](#prefixing-catch-macros )<br>
[Terminal colour ](#terminal-colour )<br>
[Console width ](#console-width )<br>
[stdout ](#stdout )<br>
2018-02-11 16:31:12 +01:00
[Fallback stringifier ](#fallback-stringifier )<br>
2018-02-11 18:10:28 +01:00
[Default reporter ](#default-reporter )<br>
2022-04-08 17:01:59 +01:00
[Bazel support ](#bazel-support )<br>
2018-09-09 16:16:49 +02:00
[C++11 toggles ](#c11-toggles )<br>
[C++17 toggles ](#c17-toggles )<br>
2017-10-13 11:14:37 +02:00
[Other toggles ](#other-toggles )<br>
[Enabling stringification ](#enabling-stringification )<br>
2018-09-05 10:01:54 +02:00
[Disabling exceptions ](#disabling-exceptions )<br>
Add configuration option to make assertions thread-safe
All the previous refactoring to make the assertion fast paths
smaller and faster also allows us to implement the fast paths
just with thread-local and atomic variables, without full mutexes.
However, the performance overhead of thread-safe assertions is
still significant for single threaded usage:
| slowdown | Debug | Release |
|-----------|--------:|--------:|
| fast path | 1.04x | 1.43x |
| slow path | 1.16x | 1.22x |
Thus, we don't make the assertions thread-safe by default, and instead
provide a build-time configuration option that the users can set to get
thread-safe assertions.
This commit is functional, but it still needs some follow-up work:
* We do not need full seq_cst increments for the atomic counters,
and using weaker ones can be faster.
* We brute-force updating the reporter-friendly totals from internal
atomic counters by doing it everywhere. We should properly trace
where this is needed instead.
* Message macros (`INFO`, `UNSCOPED_INFO`, `CAPTURE`, etc) are not
made thread safe in this commit, but they can be made thread safe
in the future, by building on top of this work.
* Add more tests, including with thread-sanitizer, and compiled
examples to the repository. Right now, these changes have been
compiled with tsan manually, but these tests are not added to CI.
Closes #2948
2025-07-17 22:58:41 +02:00
[Disabling deprecation warnings ](#disabling-deprecation-warnings )<br>
2020-01-27 15:43:27 +01:00
[Overriding Catch's debug break (`-b`) ](#overriding-catchs-debug-break--b )<br>
2023-05-12 17:13:21 +02:00
[Static analysis support ](#static-analysis-support )<br>
Add configuration option to make assertions thread-safe
All the previous refactoring to make the assertion fast paths
smaller and faster also allows us to implement the fast paths
just with thread-local and atomic variables, without full mutexes.
However, the performance overhead of thread-safe assertions is
still significant for single threaded usage:
| slowdown | Debug | Release |
|-----------|--------:|--------:|
| fast path | 1.04x | 1.43x |
| slow path | 1.16x | 1.22x |
Thus, we don't make the assertions thread-safe by default, and instead
provide a build-time configuration option that the users can set to get
thread-safe assertions.
This commit is functional, but it still needs some follow-up work:
* We do not need full seq_cst increments for the atomic counters,
and using weaker ones can be faster.
* We brute-force updating the reporter-friendly totals from internal
atomic counters by doing it everywhere. We should properly trace
where this is needed instead.
* Message macros (`INFO`, `UNSCOPED_INFO`, `CAPTURE`, etc) are not
made thread safe in this commit, but they can be made thread safe
in the future, by building on top of this work.
* Add more tests, including with thread-sanitizer, and compiled
examples to the repository. Right now, these changes have been
compiled with tsan manually, but these tests are not added to CI.
Closes #2948
2025-07-17 22:58:41 +02:00
[Experimental thread safety ](#experimental-thread-safety )<br>
2017-08-28 22:42:26 +02:00
2022-02-05 14:55:01 +01:00
Catch2 is designed to "just work" as much as possible, and most of the
configuration options below are changed automatically during compilation,
according to the detected environment. However, this detection can also
2022-09-09 17:00:39 +03:00
be overridden by users, using macros documented below, and/or CMake options
2022-02-05 14:55:01 +01:00
with the same name.
2014-10-21 18:25:57 +01:00
2017-08-17 22:29:04 +02:00
2017-08-28 22:32:06 +02:00
## Prefixing Catch macros
2014-12-17 18:16:24 +00:00
2023-07-19 17:04:43 +02:00
CATCH_CONFIG_PREFIX_ALL // Prefix all macros with CATCH_
CATCH_CONFIG_PREFIX_MESSAGES // Prefix only INFO, UNSCOPED_INFO, WARN and CAPTURE
2014-12-17 18:16:24 +00:00
To keep test code clean and uncluttered Catch uses short macro names (e.g. ```TEST_CASE` `` and ` ``REQUIRE` ``). Occasionally these may conflict with identifiers from platform headers or the system under test. In this case the above identifier can be defined. This will cause all the Catch user macros to be prefixed with ` ``CATCH_` `` (e.g. ` ``CATCH_TEST_CASE` `` and ` ``CATCH_REQUIRE` ``).
2014-10-21 18:25:57 +01:00
2014-12-17 18:16:24 +00:00
2017-08-28 22:32:06 +02:00
## Terminal colour
2014-10-21 18:25:57 +01:00
2022-03-27 23:35:41 +02:00
CATCH_CONFIG_COLOUR_WIN32 // Force enables compiling colouring impl based on Win32 console API
CATCH_CONFIG_NO_COLOUR_WIN32 // Force disables ...
2014-10-21 18:25:57 +01:00
2022-03-27 23:35:41 +02:00
Yes, Catch2 uses the british spelling of colour.
2014-12-17 18:16:24 +00:00
2022-03-27 23:35:41 +02:00
Catch2 attempts to autodetect whether the Win32 console colouring API,
`SetConsoleTextAttribute` , is available, and if it is available it compiles
in a console colouring implementation that uses it.
2014-12-17 18:16:24 +00:00
2022-03-27 23:35:41 +02:00
This option can be used to override Catch2's autodetection and force the
compilation either ON or OFF.
2014-12-17 18:16:24 +00:00
2014-10-21 18:25:57 +01:00
2017-08-28 22:32:06 +02:00
## Console width
2014-12-17 18:16:24 +00:00
2018-08-28 16:17:37 +02:00
CATCH_CONFIG_CONSOLE_WIDTH = x // where x is a number
2014-12-17 18:16:24 +00:00
Catch formats output intended for the console to fit within a fixed number of characters. This is especially important as indentation is used extensively and uncontrolled line wraps break this.
By default a console width of 80 is assumed but this can be controlled by defining the above identifier to be a different value.
2017-08-28 22:32:06 +02:00
## stdout
2014-12-17 18:16:24 +00:00
2018-08-28 16:17:37 +02:00
CATCH_CONFIG_NOSTDOUT
2014-12-17 18:16:24 +00:00
2018-07-08 13:58:44 +02:00
To support platforms that do not provide `std::cout` , `std::cerr` and
2020-10-23 19:33:49 +01:00
`std::clog` , Catch does not use them directly, but rather calls
2018-07-08 13:58:44 +02:00
`Catch::cout` , `Catch::cerr` and `Catch::clog` . You can replace their
implementation by defining `CATCH_CONFIG_NOSTDOUT` and implementing
them yourself, their signatures are:
2014-12-17 18:16:24 +00:00
std::ostream& cout();
std::ostream& cerr();
2017-08-10 16:43:17 +02:00
std::ostream& clog();
2014-12-17 18:16:24 +00:00
2018-07-08 13:58:44 +02:00
[You can see an example of replacing these functions here.](
../examples/231-Cfg-OutputStreams.cpp)
2014-12-17 18:16:24 +00:00
2017-04-25 14:57:47 +01:00
2018-02-11 16:31:12 +01:00
## Fallback stringifier
2018-05-14 21:03:07 +02:00
By default, when Catch's stringification machinery has to stringify
a type that does not specialize `StringMaker` , does not overload `operator<<` ,
is not an enumeration and is not a range, it uses `"{?}"` . This can be
2019-04-08 16:30:28 -05:00
overridden by defining `CATCH_CONFIG_FALLBACK_STRINGIFIER` to name of a
2018-05-14 21:03:07 +02:00
function that should perform the stringification instead.
All types that do not provide `StringMaker` specialization or `operator<<`
overload will be sent to this function (this includes enums and ranges).
The provided function must return `std::string` and must accept any type,
e.g. via overloading.
2018-02-11 16:31:12 +01:00
_Note that if the provided function does not handle a type and this type
requires to be stringified, the compilation will fail._
2017-04-05 10:53:10 +03:00
2018-02-11 18:10:28 +01:00
## Default reporter
Catch's default reporter can be changed by defining macro
`CATCH_CONFIG_DEFAULT_REPORTER` to string literal naming the desired
default reporter.
This means that defining `CATCH_CONFIG_DEFAULT_REPORTER` to `"console"`
is equivalent with the out-of-the-box experience.
2022-04-08 17:01:59 +01:00
## Bazel support
2022-10-21 10:46:56 +02:00
Compiling Catch2 with `CATCH_CONFIG_BAZEL_SUPPORT` force-enables Catch2's
support for Bazel's environment variables (normally Catch2 looks for
`BAZEL_TEST=1` env var first).
This can be useful if you are using older versions of Bazel, that do not
yet have `BAZEL_TEST` env var support.
2022-04-08 17:01:59 +01:00
2022-05-17 22:13:36 +02:00
> `CATCH_CONFIG_BAZEL_SUPPORT` was [introduced](https://github.com/catchorg/Catch2/pull/2399) in Catch2 3.0.1.
2022-04-08 17:01:59 +01:00
2022-07-17 20:18:44 +02:00
> `CATCH_CONFIG_BAZEL_SUPPORT` was [deprecated](https://github.com/catchorg/Catch2/pull/2459) in Catch2 3.1.0.
2022-06-14 10:56:19 +01:00
2022-10-21 10:46:56 +02:00
2018-05-09 20:16:27 +02:00
## C++11 toggles
CATCH_CONFIG_CPP11_TO_STRING // Use `std::to_string`
Because we support platforms whose standard library does not contain
`std::to_string` , it is possible to force Catch to use a workaround
based on `std::stringstream` . On platforms other than Android,
the default is to use `std::to_string` . On Android, the default is to
use the `stringstream` workaround. As always, it is possible to override
Catch's selection, by defining either `CATCH_CONFIG_CPP11_TO_STRING` or
`CATCH_CONFIG_NO_CPP11_TO_STRING` .
2018-02-25 21:22:38 +01:00
## C++17 toggles
2020-05-01 20:26:40 +02:00
CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS // Override std::uncaught_exceptions (instead of std::uncaught_exception) support detection
CATCH_CONFIG_CPP17_STRING_VIEW // Override std::string_view support detection (Catch provides a StringMaker specialization by default)
2019-07-26 21:35:35 +02:00
CATCH_CONFIG_CPP17_VARIANT // Override std::variant support detection (checked by CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER)
CATCH_CONFIG_CPP17_OPTIONAL // Override std::optional support detection (checked by CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER)
2019-07-26 21:40:58 +02:00
CATCH_CONFIG_CPP17_BYTE // Override std::byte support detection (Catch provides a StringMaker specialization by default)
2018-02-25 21:22:38 +01:00
2021-03-12 10:22:56 +01:00
> `CATCH_CONFIG_CPP17_STRING_VIEW` was [introduced](https://github.com/catchorg/Catch2/issues/1376) in Catch2 2.4.1.
2019-07-22 13:02:01 +01:00
2018-02-25 21:22:38 +01:00
Catch contains basic compiler/standard detection and attempts to use
some C++17 features whenever appropriate. This automatic detection
can be manually overridden in both directions, that is, a feature
can be enabled by defining the macro in the table above, and disabled
by using `_NO_` in the macro, e.g. `CATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS` .
2017-08-28 22:32:06 +02:00
## Other toggles
2017-02-06 01:43:53 +01:00
CATCH_CONFIG_COUNTER // Use __COUNTER __ to generate unique names for test cases
CATCH_CONFIG_WINDOWS_SEH // Enable SEH handling on Windows
2017-03-17 17:02:39 +01:00
CATCH_CONFIG_FAST_COMPILE // Sacrifices some (rather minor) features for compilation speed
2017-02-15 17:57:22 +01:00
CATCH_CONFIG_POSIX_SIGNALS // Enable handling POSIX signals
2017-02-16 11:09:09 +01:00
CATCH_CONFIG_WINDOWS_CRTDBG // Enable leak checking using Windows's CRT Debug Heap
2017-08-26 15:14:27 +02:00
CATCH_CONFIG_DISABLE_STRINGIFICATION // Disable stringifying the original expression
2017-08-27 17:03:32 +02:00
CATCH_CONFIG_DISABLE // Disables assertions and test case registration
2018-03-01 18:41:17 +01:00
CATCH_CONFIG_WCHAR // Enables use of wchart_t
Add an experimental new way of capturing stdout/stderr
Unlike the relatively non-invasive old way of capturing stdout/stderr,
this new way is also able to capture output from C's stdlib functions
such as `printf`. This is done by redirecting stdout and stderr file
descriptors to a file, and then reading this file back.
This approach has two sizeable drawbacks:
1) Performance, obviously. Previously an installed capture made the
program run faster (as long as it was then discarded), because a call
to `std::cout` did not result in text output to the console. This new
capture method in fact forces disk IO. While it is likely that any
modern OS will keep this file in memory-cache and might never actually
issue the IO to the backing storage, it is still a possibility and
calls to the file system are not free.
2) Nonportability. While POSIX is usually assumed portable, and this
implementation relies only on a very common parts of it, it is no
longer standard C++ (or just plain C) and thus might not be available
on some obscure platforms. Different C libs might also implement the
relevant functions in a less-than-useful ways (e.g. MS's `tmpfile`
generates a temp file inside system folder, so it will not work
without elevated privileges and thus is useless).
These two drawbacks mean that, at least for now, the new capture is
opt-in. To opt-in, `CATCH_CONFIG_EXPERIMENTAL_REDIRECT` needs to be
defined in the implementation file.
Closes #1243
2018-04-29 22:14:41 +02:00
CATCH_CONFIG_EXPERIMENTAL_REDIRECT // Enables the new (experimental) way of capturing stdout/stderr
2019-06-15 12:50:36 +02:00
CATCH_CONFIG_USE_ASYNC // Force parallel statistical processing of samples during benchmarking
2019-09-06 12:41:42 +02:00
CATCH_CONFIG_ANDROID_LOGWRITE // Use android's logging system for debug output
2019-09-06 13:08:44 +02:00
CATCH_CONFIG_GLOBAL_NEXTAFTER // Use nextafter{,f,l} instead of std::nextafter
2022-11-09 22:47:55 +09:00
CATCH_CONFIG_GETENV // System has a working `getenv`
2024-10-27 17:08:47 +01:00
CATCH_CONFIG_USE_BUILTIN_CONSTANT_P // Use __builtin_constant_p to trigger warnings
2019-09-06 12:41:42 +02:00
2021-03-12 10:22:56 +01:00
> [`CATCH_CONFIG_ANDROID_LOGWRITE`](https://github.com/catchorg/Catch2/issues/1743) and [`CATCH_CONFIG_GLOBAL_NEXTAFTER`](https://github.com/catchorg/Catch2/pull/1739) were introduced in Catch2 2.10.0
2017-02-06 01:43:53 +01:00
2022-11-16 16:06:45 +01:00
> `CATCH_CONFIG_GETENV` was [introduced](https://github.com/catchorg/Catch2/pull/2562) in Catch2 3.2.0
2022-11-09 22:47:55 +09:00
2025-07-24 00:02:08 +02:00
> `CATCH_CONFIG_USE_BUILTIN_CONSTANT_P` was introduced in Catch2 3.8.0
2024-10-27 17:08:47 +01:00
2017-02-15 17:57:22 +01:00
Currently Catch enables `CATCH_CONFIG_WINDOWS_SEH` only when compiled with MSVC, because some versions of MinGW do not have the necessary Win32 API support.
2017-02-06 01:43:53 +01:00
2017-02-15 17:57:22 +01:00
`CATCH_CONFIG_POSIX_SIGNALS` is on by default, except when Catch is compiled under `Cygwin` , where it is disabled by default (but can be force-enabled by defining `CATCH_CONFIG_POSIX_SIGNALS` ).
2017-02-15 10:42:11 +01:00
2022-11-09 22:47:55 +09:00
`CATCH_CONFIG_GETENV` is on by default, except when Catch2 is compiled for
platforms that lacks working `std::getenv` (currently Windows UWP and
Playstation).
2020-05-06 18:17:51 +02:00
`CATCH_CONFIG_WINDOWS_CRTDBG` is off by default. If enabled, Windows's
CRT is used to check for memory leaks, and displays them after the tests
finish running. This option only works when linking against the default
main, and must be defined for the whole library build.
2017-02-16 11:09:09 +01:00
2018-03-01 18:41:17 +01:00
`CATCH_CONFIG_WCHAR` is on by default, but can be disabled. Currently
it is only used in support for DJGPP cross-compiler.
Add an experimental new way of capturing stdout/stderr
Unlike the relatively non-invasive old way of capturing stdout/stderr,
this new way is also able to capture output from C's stdlib functions
such as `printf`. This is done by redirecting stdout and stderr file
descriptors to a file, and then reading this file back.
This approach has two sizeable drawbacks:
1) Performance, obviously. Previously an installed capture made the
program run faster (as long as it was then discarded), because a call
to `std::cout` did not result in text output to the console. This new
capture method in fact forces disk IO. While it is likely that any
modern OS will keep this file in memory-cache and might never actually
issue the IO to the backing storage, it is still a possibility and
calls to the file system are not free.
2) Nonportability. While POSIX is usually assumed portable, and this
implementation relies only on a very common parts of it, it is no
longer standard C++ (or just plain C) and thus might not be available
on some obscure platforms. Different C libs might also implement the
relevant functions in a less-than-useful ways (e.g. MS's `tmpfile`
generates a temp file inside system folder, so it will not work
without elevated privileges and thus is useless).
These two drawbacks mean that, at least for now, the new capture is
opt-in. To opt-in, `CATCH_CONFIG_EXPERIMENTAL_REDIRECT` needs to be
defined in the implementation file.
Closes #1243
2018-04-29 22:14:41 +02:00
With the exception of `CATCH_CONFIG_EXPERIMENTAL_REDIRECT` ,
these toggles can be disabled by using `_NO_` form of the toggle,
e.g. `CATCH_CONFIG_NO_WINDOWS_SEH` .
2017-02-06 01:43:53 +01:00
2024-10-27 17:08:47 +01:00
`CATCH_CONFIG_USE_BUILTIN_CONSTANT_P` is ON by default for Clang and GCC
(but as far as possible, not for other compilers masquerading for these
two). However, it can cause bugs where the enclosed code is evaluated, even
though it should not be, e.g. in [#2925 ](https://github.com/catchorg/Catch2/issues/2925 ).
2017-08-28 22:32:06 +02:00
### `CATCH_CONFIG_FAST_COMPILE`
2018-06-30 12:31:46 +02:00
This compile-time flag speeds up compilation of assertion macros by ~20%,
by disabling the generation of assertion-local try-catch blocks for
non-exception family of assertion macros ({`REQUIRE` ,`CHECK` }{``,` _FALSE`, ` _THAT`}).
This disables translation of exceptions thrown under these assertions, but
should not lead to false negatives.
`CATCH_CONFIG_FAST_COMPILE` has to be either defined, or not defined,
in all translation units that are linked into single test binary.
2017-03-17 17:02:39 +01:00
2017-08-28 22:32:06 +02:00
### `CATCH_CONFIG_DISABLE_STRINGIFICATION`
2017-10-14 08:36:44 +02:00
This toggle enables a workaround for VS 2017 bug. For details see [known limitations ](limitations.md#visual-studio-2017----raw-string-literal-in-assert-fails-to-compile ).
2017-07-28 21:34:34 +02:00
2017-08-28 22:32:06 +02:00
### `CATCH_CONFIG_DISABLE`
2017-08-27 17:03:32 +02:00
This toggle removes most of Catch from given file. This means that `TEST_CASE` s are not registered and assertions are turned into no-ops. Useful for keeping tests within implementation files (ie for functions with internal linkage), instead of in external files.
This feature is considered experimental and might change at any point.
_Inspired by Doctest's `DOCTEST_CONFIG_DISABLE` _
2017-10-09 12:31:22 +02:00
## Enabling stringification
By default, Catch does not stringify some types from the standard library. This is done to avoid dragging in various standard library headers by default. However, Catch does contain these and can be configured to provide them, using these macros:
2019-01-31 15:36:48 +01:00
CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER // Provide StringMaker specialization for std::pair
CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER // Provide StringMaker specialization for std::tuple
CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER // Provide StringMaker specialization for std::variant, std::monostate (on C++17)
CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER // Provide StringMaker specialization for std::optional (on C++17)
CATCH_CONFIG_ENABLE_ALL_STRINGMAKERS // Defines all of the above
2017-10-09 12:31:22 +02:00
2021-03-12 10:22:56 +01:00
> `CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER` was [introduced](https://github.com/catchorg/Catch2/issues/1380) in Catch2 2.4.1.
2019-07-22 13:02:01 +01:00
2021-03-12 10:22:56 +01:00
> `CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER` was [introduced](https://github.com/catchorg/Catch2/issues/1510) in Catch2 2.6.0.
2017-10-09 12:31:22 +02:00
2018-09-03 18:41:20 +02:00
## Disabling exceptions
2021-03-12 10:22:56 +01:00
> Introduced in Catch2 2.4.0.
2019-07-22 13:20:25 +01:00
2018-09-03 18:41:20 +02:00
By default, Catch2 uses exceptions to signal errors and to abort tests
when an assertion from the `REQUIRE` family of assertions fails. We also
provide an experimental support for disabling exceptions. Catch2 should
automatically detect when it is compiled with exceptions disabled, but
it can be forced to compile without exceptions by defining
CATCH_CONFIG_DISABLE_EXCEPTIONS
Note that when using Catch2 without exceptions, there are 2 major
limitations:
1) If there is an error that would normally be signalled by an exception,
the exception's message will instead be written to `Catch::cerr` and
`std::terminate` will be called.
2) If an assertion from the `REQUIRE` family of macros fails,
`std::terminate` will be called after the active reporter returns.
There is also a customization point for the exact behaviour of what
happens instead of exception being thrown. To use it, define
CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER
and provide a definition for this function:
```cpp
namespace Catch {
[[noreturn]]
void throw_exception(std::exception const&);
}
```
2025-07-20 21:40:18 +02:00
## Disabling deprecation warnings
> Introduced in Catch2 X.Y.Z
Catch2 has started using the C++ macro `[[deprecated]]` to mark things
that are deprecated and should not be used any more. If you need to
temporarily disable these warnings, use
CATCH_CONFIG_NO_DEPRECATION_ANNOTATIONS
Catch2 currently does not support more fine-grained deprecation warning
control, nor do we plan to.
2020-01-27 15:43:27 +01:00
## Overriding Catch's debug break (`-b`)
2021-03-12 10:22:56 +01:00
> [Introduced](https://github.com/catchorg/Catch2/pull/1846) in Catch2 2.11.2.
2020-01-27 15:43:27 +01:00
You can override Catch2's break-into-debugger code by defining the
`CATCH_BREAK_INTO_DEBUGGER()` macro. This can be used if e.g. Catch2 does
not know your platform, or your platform is misdetected.
The macro will be used as is, that is, `CATCH_BREAK_INTO_DEBUGGER();`
must compile and must break into debugger.
2023-05-12 17:13:21 +02:00
## Static analysis support
2023-07-13 13:37:30 +02:00
> Introduced in Catch2 3.4.0.
2023-05-12 17:13:21 +02:00
Some parts of Catch2, e.g. `SECTION` s, can be hard for static analysis
tools to reason about. Catch2 can change its internals to help static
analysis tools reason about the tests.
Catch2 automatically detects some static analysis tools (initial
implementation checks for clang-tidy and Coverity), but you can override
its detection (in either direction) via
```
CATCH_CONFIG_EXPERIMENTAL_STATIC_ANALYSIS_SUPPORT // force enables static analysis help
CATCH_CONFIG_NO_EXPERIMENTAL_STATIC_ANALYSIS_SUPPORT // force disables static analysis help
```
_As the name suggests, this is currently experimental, and thus we provide
no backwards compatibility guarantees._
**DO NOT ENABLE THIS FOR BUILDS YOU INTEND TO RUN.** The changed internals
are not meant to be runnable, only "scannable".
Add configuration option to make assertions thread-safe
All the previous refactoring to make the assertion fast paths
smaller and faster also allows us to implement the fast paths
just with thread-local and atomic variables, without full mutexes.
However, the performance overhead of thread-safe assertions is
still significant for single threaded usage:
| slowdown | Debug | Release |
|-----------|--------:|--------:|
| fast path | 1.04x | 1.43x |
| slow path | 1.16x | 1.22x |
Thus, we don't make the assertions thread-safe by default, and instead
provide a build-time configuration option that the users can set to get
thread-safe assertions.
This commit is functional, but it still needs some follow-up work:
* We do not need full seq_cst increments for the atomic counters,
and using weaker ones can be faster.
* We brute-force updating the reporter-friendly totals from internal
atomic counters by doing it everywhere. We should properly trace
where this is needed instead.
* Message macros (`INFO`, `UNSCOPED_INFO`, `CAPTURE`, etc) are not
made thread safe in this commit, but they can be made thread safe
in the future, by building on top of this work.
* Add more tests, including with thread-sanitizer, and compiled
examples to the repository. Right now, these changes have been
compiled with tsan manually, but these tests are not added to CI.
Closes #2948
2025-07-17 22:58:41 +02:00
## Experimental thread safety
> Introduced in Catch2 X.Y.Z
Catch2 can optionally support thread-safe assertions, that means, multiple
user-spawned threads can use the assertion macros at the same time. Due
to the performance cost this imposes even on single-threaded usage, Catch2
defaults to non-thread-safe assertions.
CATCH_CONFIG_EXPERIMENTAL_THREAD_SAFE_ASSERTIONS // enables thread safe assertions
CATCH_CONFIG_NO_EXPERIMENTAL_THREAD_SAFE_ASSERTIONS // force-disables thread safe assertions
See [the documentation on thread safety in Catch2 ](thread-safety.md#top )
for details on which macros are safe and other notes.
2023-05-12 17:13:21 +02:00
2014-10-21 18:25:57 +01:00
---
2017-08-24 15:33:38 +02:00
[Home ](Readme.md#top )