Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/Catch2
Submodule Catch2 updated 99 files
+4 −0 BUILD.bazel
+2 −0 CMake/CatchConfigOptions.cmake
+5 −5 CMake/catch2-with-main.pc.in
+3 −3 CMake/catch2.pc.in
+42 −18 CMakeLists.txt
+1 −0 docs/Readme.md
+9 −3 docs/command-line.md
+33 −1 docs/configuration.md
+1 −1 docs/deprecations.md
+4 −3 docs/generators.md
+1 −35 docs/limitations.md
+17 −19 docs/logging.md
+54 −0 docs/release-notes.md
+6 −1 docs/reporters.md
+14 −0 docs/skipping-passing-failing.md
+1 −1 docs/test-fixtures.md
+130 −0 docs/thread-safety.md
+1 −1 examples/210-Evt-EventListeners.cpp
+2 −2 examples/CMakeLists.txt
+249 −109 extras/catch_amalgamated.cpp
+342 −168 extras/catch_amalgamated.hpp
+1 −1 meson.build
+5 −2 src/CMakeLists.txt
+1 −3 src/catch2/benchmark/catch_benchmark.hpp
+3 −0 src/catch2/catch_all.hpp
+1 −1 src/catch2/catch_config.hpp
+4 −7 src/catch2/catch_message.cpp
+1 −1 src/catch2/catch_tag_alias_autoregistrar.hpp
+17 −4 src/catch2/catch_test_macros.hpp
+8 −0 src/catch2/catch_tostring.cpp
+13 −5 src/catch2/catch_tostring.hpp
+1 −1 src/catch2/catch_translate_exception.hpp
+18 −0 src/catch2/catch_user_config.hpp.in
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+0 −2 src/catch2/interfaces/catch_interfaces_capture.hpp
+5 −0 src/catch2/interfaces/catch_interfaces_reporter.hpp
+8 −10 src/catch2/internal/catch_clara.hpp
+15 −4 src/catch2/internal/catch_debugger.hpp
+19 −9 src/catch2/internal/catch_decomposer.hpp
+19 −0 src/catch2/internal/catch_deprecation_macro.hpp
+2 −2 src/catch2/internal/catch_exception_translator_registry.cpp
+2 −2 src/catch2/internal/catch_fatal_condition_handler.cpp
+1 −1 src/catch2/internal/catch_main.cpp
+3 −0 src/catch2/internal/catch_message_info.hpp
+182 −70 src/catch2/internal/catch_run_context.cpp
+21 −9 src/catch2/internal/catch_run_context.hpp
+7 −7 src/catch2/internal/catch_template_test_registry.hpp
+49 −0 src/catch2/internal/catch_thread_support.hpp
+1 −1 src/catch2/internal/catch_unique_ptr.hpp
+56 −0 src/catch2/internal/catch_unreachable.hpp
+3 −0 src/catch2/meson.build
+5 −3 src/catch2/reporters/catch_reporter_automake.hpp
+2 −1 src/catch2/reporters/catch_reporter_compact.cpp
+4 −1 src/catch2/reporters/catch_reporter_compact.hpp
+6 −4 src/catch2/reporters/catch_reporter_console.cpp
+0 −2 src/catch2/reporters/catch_reporter_console.hpp
+2 −1 src/catch2/reporters/catch_reporter_json.cpp
+0 −1 src/catch2/reporters/catch_reporter_json.hpp
+1 −0 src/catch2/reporters/catch_reporter_junit.cpp
+2 −0 src/catch2/reporters/catch_reporter_multi.cpp
+5 −0 src/catch2/reporters/catch_reporter_multi.hpp
+16 −14 src/catch2/reporters/catch_reporter_registrars.hpp
+1 −0 src/catch2/reporters/catch_reporter_sonarqube.hpp
+2 −1 src/catch2/reporters/catch_reporter_tap.cpp
+1 −0 src/catch2/reporters/catch_reporter_tap.hpp
+1 −0 src/catch2/reporters/catch_reporter_teamcity.hpp
+1 −2 src/catch2/reporters/catch_reporter_xml.cpp
+0 −2 src/catch2/reporters/catch_reporter_xml.hpp
+2 −2 tests/CMakeLists.txt
+3 −3 tests/ExtraTests/CMakeLists.txt
+12 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+12 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+47 −17 tests/SelfTest/Baselines/compact.sw.approved.txt
+47 −17 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+113 −4 tests/SelfTest/Baselines/console.std.approved.txt
+235 −16 tests/SelfTest/Baselines/console.sw.approved.txt
+235 −16 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+21 −4 tests/SelfTest/Baselines/console.swa4.approved.txt
+105 −5 tests/SelfTest/Baselines/junit.sw.approved.txt
+105 −5 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+101 −4 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+101 −4 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+68 −16 tests/SelfTest/Baselines/tap.sw.approved.txt
+68 −16 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+39 −3 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+39 −3 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+317 −14 tests/SelfTest/Baselines/xml.sw.approved.txt
+317 −14 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+25 −0 tests/SelfTest/IntrospectiveTests/AssertionHandler.tests.cpp
+13 −13 tests/SelfTest/IntrospectiveTests/Clara.tests.cpp
+24 −3 tests/SelfTest/IntrospectiveTests/ToString.tests.cpp
+1 −0 tests/SelfTest/TestRegistrations.cpp
+17 −0 tests/SelfTest/UsageTests/Compilation.tests.cpp
+50 −0 tests/SelfTest/UsageTests/Message.tests.cpp
+13 −1 tests/SelfTest/UsageTests/Misc.tests.cpp
+6 −0 tests/SelfTest/UsageTests/ToStringChrono.tests.cpp
+6 −1 tests/TestScripts/testBazelSharding.py
+1 −1 tools/scripts/releaseCommon.py
Loading