Skip to content
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

⬆️ Bump libs/Catch2 from 33e24b1 to 8898cc6 #204

Merged
merged 1 commit into from
Aug 12, 2024
Merged
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/Catch2
Submodule Catch2 updated 32 files
+1 −0 docs/cmake-integration.md
+13 −0 docs/deprecations.md
+1 −0 docs/list-of-examples.md
+0 −24 docs/other-macros.md
+133 −4 docs/test-fixtures.md
+74 −0 examples/111-Fix-PersistentFixture.cpp
+1 −0 examples/CMakeLists.txt
+8 −0 src/catch2/catch_test_case_info.hpp
+4 −0 src/catch2/catch_test_macros.hpp
+2 −0 src/catch2/interfaces/catch_interfaces_test_invoker.hpp
+2 −0 src/catch2/internal/catch_run_context.cpp
+2 −0 src/catch2/internal/catch_test_registry.cpp
+47 −0 src/catch2/internal/catch_test_registry.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
+13 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+13 −1 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+12 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+12 −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