summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2017-03-17 18:57:59 +0200
committeronqtam <vik.kirilov@gmail.com>2017-05-16 00:22:15 +0300
commit2d93e0488ce1c3a0bffe9213243f25bf60722494 (patch)
tree2915ef9b2875543cc312301f1e395513822d7f17 /README.md
parent68c47e5dfd97e7eecef62367066b5605318ff451 (diff)
- fixed builds with -fno-exceptions - relates #12
- added builds with -fno-exceptions to travis CI
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 534adb1..af67b41 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ The **key** differences between it and other testing libraries are:
- Offers a way to remove **everything** testing-related from the binary with the [**```DOCTEST_CONFIG_DISABLE```**](doc/markdown/configuration.md#doctest_config_disable) identifier
- Doesn't pollute the global namespace (everything is in the ```doctest``` namespace) and doesn't drag **any** headers with it
- Doesn't produce any warnings even on the [**most aggressive**](scripts/common.cmake#L71) warning levels for **MSVC**/**GCC**/**Clang**
-- Very [**portable and well tested**](doc/markdown/features.md#extremely-portable) C++98 - per commit tested on CI with over 246 different builds (valgrind, sanitizers...)
+- Very [**portable and well tested**](doc/markdown/features.md#extremely-portable) C++98 - per commit tested on CI with over 300 different builds (valgrind, sanitizers...)
- Just one header and no external dependencies apart from the C/C++ standard library
This allows the framework to be used in more ways than any other - tests can be written directly in the production code!