Skip to content

Commit

Permalink
Bump external/Catch2 from 32d9ae2 to 3acb8b3 (microsoft#102)
Browse files Browse the repository at this point in the history
Bumps [external/Catch2](https://github.com/catchorg/Catch2) from `32d9ae2` to `3acb8b3`.
- [Release notes](https://github.com/catchorg/Catch2/releases)
- [Commits](catchorg/Catch2@32d9ae2...3acb8b3)

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

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anurag Saxena <[email protected]>
  • Loading branch information
dependabot[bot] and saxena-anurag authored Dec 27, 2023
1 parent 763295e commit 2cf7cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/Catch2
Submodule Catch2 updated 65 files
+3 −1 .github/workflows/linux-meson-builds.yml
+3 −1 .github/workflows/linux-other-builds.yml
+3 −1 .github/workflows/linux-simple-builds.yml
+1 −1 CMakeLists.txt
+2 −0 MODULE.bazel
+0 −11 appveyor.yml
+1 −1 docs/ci-and-misc.md
+1 −1 docs/cmake-integration.md
+8 −3 docs/faq.md
+25 −0 docs/generators.md
+0 −10 docs/limitations.md
+31 −13 docs/matchers.md
+37 −1 docs/release-notes.md
+1 −1 docs/skipping-passing-failing.md
+1 −1 docs/test-cases-and-sections.md
+1 −1 docs/tostring.md
+5 −4 docs/tutorial.md
+1 −1 docs/why-catch.md
+775 −86 extras/catch_amalgamated.cpp
+918 −313 extras/catch_amalgamated.hpp
+1 −1 meson.build
+4 −0 src/CMakeLists.txt
+11 −27 src/catch2/benchmark/detail/catch_stats.cpp
+4 −0 src/catch2/catch_all.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+30 −2 src/catch2/generators/catch_generators_random.cpp
+22 −12 src/catch2/generators/catch_generators_random.hpp
+3 −1 src/catch2/internal/catch_compiler_capabilities.hpp
+11 −0 src/catch2/internal/catch_floating_point_helpers.cpp
+5 −0 src/catch2/internal/catch_floating_point_helpers.hpp
+8 −0 src/catch2/internal/catch_polyfills.cpp
+5 −0 src/catch2/internal/catch_polyfills.hpp
+94 −0 src/catch2/internal/catch_random_floating_point_helpers.hpp
+202 −0 src/catch2/internal/catch_random_integer_helpers.hpp
+5 −4 src/catch2/internal/catch_random_seed_generation.cpp
+131 −0 src/catch2/internal/catch_uniform_floating_point_distribution.hpp
+126 −0 src/catch2/internal/catch_uniform_integer_distribution.hpp
+0 −15 src/catch2/matchers/catch_matchers_floating_point.cpp
+4 −0 src/catch2/meson.build
+1 −1 src/catch2/reporters/catch_reporter_json.cpp
+1 −0 tests/CMakeLists.txt
+2 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+8 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+8 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+2 −2 tests/SelfTest/Baselines/console.std.approved.txt
+62 −2 tests/SelfTest/Baselines/console.sw.approved.txt
+62 −2 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+3 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+3 −1 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
+13 −1 tests/SelfTest/Baselines/tap.sw.approved.txt
+13 −1 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+4 −0 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+4 −0 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+57 −3 tests/SelfTest/Baselines/xml.sw.approved.txt
+57 −3 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+59 −0 tests/SelfTest/IntrospectiveTests/FloatingPoint.tests.cpp
+150 −0 tests/SelfTest/IntrospectiveTests/Integer.tests.cpp
+528 −0 tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp
+11 −1 tests/SelfTest/UsageTests/Generators.tests.cpp
+1 −0 tests/meson.build
+2 −2 tools/scripts/releaseCommon.py

0 comments on commit 2cf7cf9

Please sign in to comment.