Skip to content

Commit

Permalink
Bump lib/Catch2 from 797c3e7 to 9934b7d (#35)
Browse files Browse the repository at this point in the history
Bumps [lib/Catch2](https://github.com/catchorg/Catch2) from `797c3e7` to `9934b7d`.
- [Release notes](https://github.com/catchorg/Catch2/releases)
- [Commits](catchorg/Catch2@797c3e7...9934b7d)

---
updated-dependencies:
- dependency-name: lib/Catch2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 14, 2022
1 parent bf06360 commit 1bd6216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Catch2
Submodule Catch2 updated 90 files
+4 −0 .bazelrc
+25 −11 BUILD.bazel
+1 −0 CMake/CatchConfigOptions.cmake
+7 −4 WORKSPACE
+37 −12 docs/command-line.md
+7 −0 docs/configuration.md
+5 −0 docs/release-notes.md
+26 −1 docs/reporters.md
+2 −0 src/CMakeLists.txt
+1 −0 src/catch2/catch_all.hpp
+29 −37 src/catch2/catch_config.cpp
+5 −16 src/catch2/catch_config.hpp
+21 −8 src/catch2/catch_session.cpp
+1 −1 src/catch2/catch_test_case_info.hpp
+1 −1 src/catch2/catch_test_spec.hpp
+1 −0 src/catch2/catch_user_config.hpp.in
+2 −1 src/catch2/generators/catch_generators.hpp
+4 −4 src/catch2/interfaces/catch_interfaces_capture.hpp
+3 −3 src/catch2/interfaces/catch_interfaces_config.hpp
+2 −1 src/catch2/interfaces/catch_interfaces_enum_values_registry.hpp
+5 −4 src/catch2/interfaces/catch_interfaces_exception.hpp
+2 −1 src/catch2/interfaces/catch_interfaces_generatortracker.hpp
+12 −10 src/catch2/interfaces/catch_interfaces_registry_hub.hpp
+16 −2 src/catch2/interfaces/catch_interfaces_reporter.cpp
+12 −3 src/catch2/interfaces/catch_interfaces_reporter.hpp
+6 −5 src/catch2/interfaces/catch_interfaces_reporter_factory.hpp
+6 −5 src/catch2/interfaces/catch_interfaces_reporter_registry.hpp
+2 −1 src/catch2/interfaces/catch_interfaces_tag_alias_registry.hpp
+5 −3 src/catch2/interfaces/catch_interfaces_testcase.hpp
+1 −1 src/catch2/internal/catch_assertion_handler.hpp
+38 −73 src/catch2/internal/catch_commandline.cpp
+1 −1 src/catch2/internal/catch_console_colour.hpp
+6 −6 src/catch2/internal/catch_context.hpp
+5 −3 src/catch2/internal/catch_decomposer.hpp
+1 −1 src/catch2/internal/catch_lazy_expr.hpp
+2 −0 src/catch2/internal/catch_optional.hpp
+1 −1 src/catch2/internal/catch_reporter_registry.cpp
+1 −1 src/catch2/internal/catch_reporter_registry.hpp
+174 −0 src/catch2/internal/catch_reporter_spec_parser.cpp
+85 −0 src/catch2/internal/catch_reporter_spec_parser.hpp
+1 −1 src/catch2/internal/catch_run_context.cpp
+5 −5 src/catch2/internal/catch_run_context.hpp
+11 −0 src/catch2/internal/catch_stream.hpp
+6 −5 src/catch2/internal/catch_string_manip.hpp
+1 −1 src/catch2/internal/catch_test_case_registry_impl.hpp
+1 −1 src/catch2/internal/catch_test_spec_parser.hpp
+2 −2 src/catch2/internal/catch_xmlwriter.hpp
+12 −13 src/catch2/matchers/catch_matchers.hpp
+10 −5 src/catch2/matchers/catch_matchers_floating_point.hpp
+5 −5 src/catch2/matchers/catch_matchers_string.cpp
+21 −14 src/catch2/matchers/catch_matchers_string.hpp
+20 −8 src/catch2/matchers/catch_matchers_templated.hpp
+17 −16 src/catch2/matchers/catch_matchers_vector.hpp
+1 −1 src/catch2/matchers/internal/catch_matchers_impl.hpp
+3 −5 src/catch2/reporters/catch_reporter_automake.hpp
+3 −1 src/catch2/reporters/catch_reporter_common_base.cpp
+6 −0 src/catch2/reporters/catch_reporter_common_base.hpp
+2 −2 src/catch2/reporters/catch_reporter_compact.hpp
+3 −3 src/catch2/reporters/catch_reporter_console.hpp
+1 −2 src/catch2/reporters/catch_reporter_cumulative_base.hpp
+1 −1 src/catch2/reporters/catch_reporter_helpers.hpp
+2 −2 src/catch2/reporters/catch_reporter_multi.cpp
+4 −6 src/catch2/reporters/catch_reporter_multi.hpp
+3 −3 src/catch2/reporters/catch_reporter_registrars.hpp
+2 −2 src/catch2/reporters/catch_reporter_sonarqube.hpp
+1 −4 src/catch2/reporters/catch_reporter_streaming_base.hpp
+2 −2 src/catch2/reporters/catch_reporter_tap.hpp
+2 −2 src/catch2/reporters/catch_reporter_teamcity.hpp
+40 −21 tests/CMakeLists.txt
+27 −5 tests/ExtraTests/CMakeLists.txt
+59 −0 tests/ExtraTests/X29-CustomArgumentsForReporters.cpp
+17 −0 tests/ExtraTests/X30-BazelReporter.cpp
+16 −34 tests/SelfTest/Baselines/compact.sw.approved.txt
+16 −34 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+1 −1 tests/SelfTest/Baselines/console.std.approved.txt
+25 −61 tests/SelfTest/Baselines/console.sw.approved.txt
+25 −61 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+1 −2 tests/SelfTest/Baselines/junit.sw.approved.txt
+1 −2 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+0 −1 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+0 −1 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+17 −21 tests/SelfTest/Baselines/tap.sw.approved.txt
+17 −21 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+25 −63 tests/SelfTest/Baselines/xml.sw.approved.txt
+25 −63 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+29 −26 tests/SelfTest/IntrospectiveTests/CmdLine.tests.cpp
+111 −0 tests/SelfTest/IntrospectiveTests/CmdLineHelpers.tests.cpp
+7 −4 tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp
+104 −0 tests/TestScripts/testBazelReporter.py
+1 −1 tools/scripts/approvalTests.py

0 comments on commit 1bd6216

Please sign in to comment.