Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Dec 2, 2024
1 parent 479bfbd commit d7da804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/catch2
Submodule catch2 updated 96 files
+1 −8 .github/workflows/mac-builds.yml
+2 −1 .gitignore
+1 −1 CMakeLists.txt
+1 −1 MODULE.bazel
+3 −3 WORKSPACE.bazel
+1 −1 docs/assertions.md
+1 −0 docs/cmake-integration.md
+1 −2 docs/contributing.md
+13 −0 docs/deprecations.md
+1 −0 docs/list-of-examples.md
+27 −9 docs/matchers.md
+0 −24 docs/other-macros.md
+42 −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
+24 −7 extras/Catch.cmake
+22 −3 extras/CatchAddTests.cmake
+386 −213 extras/catch_amalgamated.cpp
+247 −198 extras/catch_amalgamated.hpp
+1 −1 meson.build
+2 −2 src/CMakeLists.txt
+2 −2 src/catch2/benchmark/catch_benchmark.hpp
+1 −1 src/catch2/benchmark/catch_outlier_classification.hpp
+6 −0 src/catch2/benchmark/detail/catch_benchmark_function.cpp
+3 −22 src/catch2/benchmark/detail/catch_benchmark_function.hpp
+7 −5 src/catch2/benchmark/detail/catch_estimate_clock.hpp
+1 −1 src/catch2/benchmark/detail/catch_measure.hpp
+1 −1 src/catch2/catch_all.hpp
+1 −1 src/catch2/catch_assertion_result.cpp
+0 −0 src/catch2/catch_case_sensitive.hpp
+1 −0 src/catch2/catch_message.cpp
+1 −1 src/catch2/catch_message.hpp
+20 −16 src/catch2/catch_session.cpp
+6 −10 src/catch2/catch_test_case_info.cpp
+12 −2 src/catch2/catch_test_case_info.hpp
+4 −0 src/catch2/catch_test_macros.hpp
+1 −1 src/catch2/catch_timer.cpp
+1 −1 src/catch2/catch_translate_exception.hpp
+1 −1 src/catch2/catch_version.cpp
+2 −2 src/catch2/catch_version_macros.hpp
+1 −2 src/catch2/interfaces/catch_interfaces_capture.hpp
+2 −0 src/catch2/interfaces/catch_interfaces_test_invoker.hpp
+2 −2 src/catch2/internal/catch_assertion_handler.cpp
+2 −2 src/catch2/internal/catch_assertion_handler.hpp
+1 −1 src/catch2/internal/catch_clara.cpp
+0 −6 src/catch2/internal/catch_context.cpp
+9 −4 src/catch2/internal/catch_context.hpp
+5 −6 src/catch2/internal/catch_decomposer.hpp
+15 −12 src/catch2/internal/catch_is_permutation.hpp
+3 −3 src/catch2/internal/catch_lazy_expr.hpp
+291 −98 src/catch2/internal/catch_output_redirect.cpp
+48 −89 src/catch2/internal/catch_output_redirect.hpp
+3 −1 src/catch2/internal/catch_random_integer_helpers.hpp
+0 −26 src/catch2/internal/catch_result_type.cpp
+16 −7 src/catch2/internal/catch_result_type.hpp
+49 −29 src/catch2/internal/catch_run_context.cpp
+4 −2 src/catch2/internal/catch_run_context.hpp
+5 −7 src/catch2/internal/catch_test_macro_impl.hpp
+3 −1 src/catch2/internal/catch_test_registry.cpp
+50 −1 src/catch2/internal/catch_test_registry.hpp
+8 −8 src/catch2/internal/catch_uniform_integer_distribution.hpp
+1 −1 src/catch2/internal/catch_wildcard_pattern.hpp
+2 −22 src/catch2/internal/catch_xmlwriter.cpp
+15 −4 src/catch2/internal/catch_xmlwriter.hpp
+8 −0 src/catch2/matchers/catch_matchers_range_equals.hpp
+2 −2 src/catch2/matchers/catch_matchers_string.hpp
+8 −4 src/catch2/matchers/internal/catch_matchers_impl.hpp
+2 −2 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
+3 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+3 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+12 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+12 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+14 −2 tests/SelfTest/Baselines/console.std.approved.txt
+86 −2 tests/SelfTest/Baselines/console.sw.approved.txt
+86 −2 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+176 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+176 −1 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+167 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+167 −0 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+21 −1 tests/SelfTest/Baselines/tap.sw.approved.txt
+21 −1 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+7 −0 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+7 −0 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+103 −2 tests/SelfTest/Baselines/xml.sw.approved.txt
+103 −2 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+15 −0 tests/SelfTest/IntrospectiveTests/Clara.tests.cpp
+26 −0 tests/SelfTest/UsageTests/Class.tests.cpp
+1 −1 tests/TestScripts/testBazelReporter.py
+1 −2 tools/scripts/buildAndTest.cmd
+1 −2 tools/scripts/buildAndTest.sh

0 comments on commit d7da804

Please sign in to comment.