Skip to content

Bump libs/EXTERNAL/libcatch2 from 33e24b1 to fa306fc #2708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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 libs/EXTERNAL/libcatch2
Submodule libcatch2 updated 55 files
+0 −1 .github/workflows/mac-builds.yml
+1 −1 CMakeLists.txt
+1 −1 docs/assertions.md
+1 −0 docs/cmake-integration.md
+13 −0 docs/deprecations.md
+1 −0 docs/list-of-examples.md
+0 −24 docs/other-macros.md
+21 −0 docs/release-notes.md
+1 −1 docs/test-cases-and-sections.md
+133 −4 docs/test-fixtures.md
+74 −0 examples/111-Fix-PersistentFixture.cpp
+1 −0 examples/CMakeLists.txt
+9 −4 extras/CatchAddTests.cmake
+348 −129 extras/catch_amalgamated.cpp
+137 −130 extras/catch_amalgamated.hpp
+1 −1 meson.build
+1 −1 src/CMakeLists.txt
+1 −1 src/catch2/catch_all.hpp
+0 −0 src/catch2/catch_case_sensitive.hpp
+8 −0 src/catch2/catch_test_case_info.hpp
+4 −0 src/catch2/catch_test_macros.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+2 −0 src/catch2/interfaces/catch_interfaces_test_invoker.hpp
+291 −98 src/catch2/internal/catch_output_redirect.cpp
+48 −89 src/catch2/internal/catch_output_redirect.hpp
+47 −27 src/catch2/internal/catch_run_context.cpp
+3 −1 src/catch2/internal/catch_run_context.hpp
+2 −0 src/catch2/internal/catch_test_registry.cpp
+47 −0 src/catch2/internal/catch_test_registry.hpp
+1 −1 src/catch2/internal/catch_wildcard_pattern.hpp
+2 −2 src/catch2/matchers/catch_matchers_string.hpp
+1 −1 src/catch2/meson.build
+2 −2 src/catch2/reporters/catch_reporter_junit.cpp
+2 −2 src/catch2/reporters/catch_reporter_sonarqube.cpp
+1 −1 src/catch2/reporters/catch_reporter_sonarqube.hpp
+30 −16 tests/ExtraTests/X02-DisabledMacros.cpp
+2 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+6 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+6 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+14 −2 tests/SelfTest/Baselines/console.std.approved.txt
+50 −2 tests/SelfTest/Baselines/console.sw.approved.txt
+50 −2 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+175 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+175 −1 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+166 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+166 −0 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+9 −1 tests/SelfTest/Baselines/tap.sw.approved.txt
+9 −1 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+5 −0 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+5 −0 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+52 −2 tests/SelfTest/Baselines/xml.sw.approved.txt
+52 −2 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+26 −0 tests/SelfTest/UsageTests/Class.tests.cpp
Loading