catch2/docs
Martin Hořeňovský e92b9c07c3 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:25:49 +02:00
..
Readme.md Updated some Catch references to Catch2 2017-11-03 13:05:09 +00:00
assertions.md Support for parenthesizing types with commas. 2018-04-20 15:11:09 +02:00
build-systems.md Update CTest autodiscovery documentation 2018-01-12 12:28:14 +01:00
command-line.md Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
commercial-users.md Let toplevel links to .md files link to .md#top 2017-08-24 19:40:36 +02:00
configuration.md Add an experimental new way of capturing stdout/stderr 2018-04-29 22:25:49 +02:00
contributing.md Let toplevel links to .md files link to .md#top 2017-08-24 19:40:36 +02:00
event-listeners.md Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
limitations.md Add another known bug to limitations.md 2018-02-10 13:51:33 +01:00
list-of-examples.md Add list of examples to documentation 2017-11-15 15:37:39 +01:00
logging.md Let toplevel links to .md files link to .md#top 2017-08-24 19:40:36 +02:00
matchers.md Add PredicateMatcher that takes an arbitrary predicate functions 2018-04-04 11:14:19 +02:00
opensource-users.md Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
own-main.md Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
release-notes.md v2.2.2 2018-04-06 12:11:22 +02:00
release-process.md Fixup various spelling errors (#1208) 2018-03-07 10:08:35 +01:00
reporters.md Let toplevel links to .md files link to .md#top 2017-08-24 19:40:36 +02:00
slow-compiles.md Change ToC script to use <br> instead of trailing spaces 2017-10-13 11:17:38 +02:00
test-cases-and-sections.md Update test-cases-and-sections.md 2017-10-31 14:28:30 +01:00
test-fixtures.md Add page titles 2017-08-24 22:56:27 +02:00
tostring.md Add Catch::is_range to documentation 2018-02-01 20:29:49 +01:00
tutorial.md Refer to example code from the Tutorial 2017-11-15 15:37:39 +01:00
why-catch.md Let toplevel links to .md files link to .md#top 2017-08-24 19:40:36 +02:00