Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidstone committed Mar 15, 2024
1 parent 5e2a373 commit c8b5620
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dependencies/Catch2
Submodule Catch2 updated 95 files
+81 −0 .clang-tidy
+6 −10 .conan/test_package/CMakeLists.txt
+26 −6 .conan/test_package/conanfile.py
+49 −0 .github/workflows/linux-other-builds.yml
+0 −6 .github/workflows/linux-simple-builds.yml
+31 −0 .github/workflows/package-manager-builds.yaml
+1 −0 .gitignore
+2 −2 CMakeLists.txt
+13 −2 appveyor.yml
+98 −31 conanfile.py
+19 −1 docs/cmake-integration.md
+2 −2 docs/command-line.md
+20 −6 docs/generators.md
+16 −0 docs/limitations.md
+26 −0 docs/release-notes.md
+1 −1 docs/reporters.md
+1 −1 docs/tutorial.md
+1 −2 examples/210-Evt-EventListeners.cpp
+1 −1 examples/231-Cfg-OutputStreams.cpp
+1 −1 examples/232-Cfg-CustomMain.cpp
+1 −1 examples/300-Gen-OwnGenerator.cpp
+9 −8 examples/301-Gen-MapTypeConversion.cpp
+1 −1 extras/ParseAndAddCatchTests.cmake
+56 −37 extras/catch_amalgamated.cpp
+173 −59 extras/catch_amalgamated.hpp
+1 −1 meson.build
+4 −42 src/CMakeLists.txt
+2 −2 src/catch2/benchmark/detail/catch_analyse.cpp
+1 −1 src/catch2/catch_approx.cpp
+1 −0 src/catch2/catch_message.cpp
+0 −1 src/catch2/catch_registry_hub.cpp
+3 −1 src/catch2/catch_test_case_info.cpp
+1 −1 src/catch2/catch_test_case_info.hpp
+5 −5 src/catch2/catch_tostring.cpp
+2 −2 src/catch2/catch_tostring.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+1 −1 src/catch2/internal/catch_commandline.cpp
+4 −4 src/catch2/internal/catch_compiler_capabilities.hpp
+6 −6 src/catch2/internal/catch_console_colour.cpp
+6 −1 src/catch2/internal/catch_decomposer.cpp
+143 −32 src/catch2/internal/catch_decomposer.hpp
+1 −1 src/catch2/internal/catch_enum_values_registry.hpp
+2 −2 src/catch2/internal/catch_jsonwriter.cpp
+2 −2 src/catch2/internal/catch_jsonwriter.hpp
+3 −0 src/catch2/internal/catch_platform.hpp
+2 −3 src/catch2/internal/catch_random_integer_helpers.hpp
+1 −1 src/catch2/internal/catch_reporter_spec_parser.cpp
+7 −3 src/catch2/internal/catch_section.hpp
+20 −7 src/catch2/internal/catch_string_manip.cpp
+2 −2 src/catch2/internal/catch_stringref.hpp
+4 −4 src/catch2/internal/catch_test_registry.hpp
+2 −2 src/catch2/reporters/catch_reporter_console.cpp
+1 −2 src/catch2/reporters/catch_reporter_cumulative_base.cpp
+2 −2 src/catch2/reporters/catch_reporter_json.cpp
+1 −1 src/catch2/reporters/catch_reporter_junit.cpp
+1 −1 src/catch2/reporters/catch_reporter_multi.hpp
+1 −1 src/catch2/reporters/catch_reporter_sonarqube.hpp
+2 −2 src/catch2/reporters/catch_reporter_teamcity.hpp
+2 −2 tests/CMakeLists.txt
+2 −1 tests/ExtraTests/CMakeLists.txt
+1 −1 tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp
+1 −0 tests/ExtraTests/X29-CustomArgumentsForReporters.cpp
+2 −2 tests/ExtraTests/X91-AmalgamatedCatch.cpp
+21 −21 tests/SelfTest/Baselines/compact.sw.approved.txt
+21 −21 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+70 −54 tests/SelfTest/Baselines/console.sw.approved.txt
+70 −54 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+2 −0 tests/SelfTest/Baselines/junit.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+2 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+25 −25 tests/SelfTest/Baselines/tap.sw.approved.txt
+25 −25 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+84 −72 tests/SelfTest/Baselines/xml.sw.approved.txt
+84 −72 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+2 −2 tests/SelfTest/IntrospectiveTests/Details.tests.cpp
+0 −1 tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp
+16 −1 tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp
+1 −1 tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp
+11 −0 tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp
+1 −1 tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp
+1 −1 tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp
+0 −1 tests/SelfTest/TestRegistrations.cpp
+7 −7 tests/SelfTest/UsageTests/Benchmark.tests.cpp
+1 −1 tests/SelfTest/UsageTests/Class.tests.cpp
+69 −2 tests/SelfTest/UsageTests/Compilation.tests.cpp
+2 −2 tests/SelfTest/UsageTests/Exception.tests.cpp
+7 −7 tests/SelfTest/UsageTests/Matchers.tests.cpp
+5 −5 tests/SelfTest/UsageTests/Message.tests.cpp
+6 −11 tests/SelfTest/UsageTests/Misc.tests.cpp
+10 −21 tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp
+2 −2 tests/SelfTest/UsageTests/Tricky.tests.cpp
+14 −9 tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp
+1 −1 tools/scripts/releaseCommon.py
2 changes: 1 addition & 1 deletion dependencies/cmake_strict_defaults
2 changes: 1 addition & 1 deletion dependencies/numeric-traits
2 changes: 1 addition & 1 deletion dependencies/operators
2 changes: 1 addition & 1 deletion dependencies/std_module

0 comments on commit c8b5620

Please sign in to comment.