Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,18 @@ jobs:
name: Unit Tests
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install uuid-dev on Ubuntu
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y uuid-dev

- name: Run tests
run: ./run_test.sh
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "third-party/catch2"]
path = third-party/catch2
url = https://github.com/duckduckgo/Catch2.git
url = https://github.com/catchorg/Catch2.git
2 changes: 1 addition & 1 deletion third-party/catch2
Submodule catch2 updated 68 files
+9 −13 .travis.yml
+11 −4 BUILD.bazel
+3 −0 CMake/catch2.pc.in
+28 −3 CMakeLists.txt
+3 −3 README.md
+1 −1 codecov.yml
+1 −1 conanfile.py
+1 −0 contrib/Catch.cmake
+4 −1 contrib/CatchAddTests.cmake
+21 −7 contrib/ParseAndAddCatchTests.cmake
+11 −3 docs/cmake-integration.md
+3 −3 docs/contributing.md
+7 −0 docs/deprecations.md
+14 −0 docs/limitations.md
+3 −0 docs/opensource-users.md
+1 −1 docs/other-macros.md
+105 −2 docs/release-notes.md
+34 −0 docs/slow-compiles.md
+1 −1 docs/tutorial.md
+1 −1 examples/302-Gen-Table.cpp
+16 −16 include/catch.hpp
+1 −3 include/internal/benchmark/catch_constructor.hpp
+1 −0 include/internal/benchmark/catch_execution_plan.hpp
+3 −1 include/internal/benchmark/detail/catch_estimate_clock.hpp
+1 −1 include/internal/benchmark/detail/catch_run_for_at_least.hpp
+2 −2 include/internal/benchmark/detail/catch_stats.cpp
+2 −2 include/internal/benchmark/detail/catch_stats.hpp
+1 −1 include/internal/catch_approx.h
+10 −9 include/internal/catch_compiler_capabilities.h
+1 −1 include/internal/catch_debugger.h
+10 −2 include/internal/catch_default_main.hpp
+1 −1 include/internal/catch_enum_values_registry.cpp
+139 −71 include/internal/catch_fatal_condition.cpp
+42 −43 include/internal/catch_fatal_condition.h
+6 −1 include/internal/catch_generators_generic.hpp
+2 −0 include/internal/catch_interfaces_reporter.h
+2 −2 include/internal/catch_matchers_floating.cpp
+9 −6 include/internal/catch_platform.h
+48 −9 include/internal/catch_run_context.cpp
+1 −0 include/internal/catch_run_context.h
+5 −1 include/internal/catch_session.cpp
+18 −14 include/internal/catch_test_case_registry_impl.cpp
+8 −0 include/internal/catch_test_case_tracker.cpp
+4 −0 include/internal/catch_test_case_tracker.h
+28 −28 include/internal/catch_test_registry.h
+1 −1 include/internal/catch_version.cpp
+28 −9 include/reporters/catch_reporter_junit.cpp
+4 −3 include/reporters/catch_reporter_junit.h
+28 −1 projects/CMakeLists.txt
+1 −0 projects/ExtraTests/X01-PrefixedMacros.cpp
+4 −0 projects/ExtraTests/X02-DisabledMacros.cpp
+5 −0 projects/SelfTest/Baselines/compact.sw.approved.txt
+42 −2 projects/SelfTest/Baselines/console.std.approved.txt
+45 −2 projects/SelfTest/Baselines/console.sw.approved.txt
+34 −1 projects/SelfTest/Baselines/junit.sw.approved.txt
+24 −0 projects/SelfTest/Baselines/sonarqube.sw.approved.txt
+50 −5 projects/SelfTest/Baselines/xml.sw.approved.txt
+3 −0 projects/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp
+7 −0 projects/SelfTest/UsageTests/Approx.tests.cpp
+14 −1 projects/SelfTest/UsageTests/Condition.tests.cpp
+9 −11 projects/SelfTest/UsageTests/Generators.tests.cpp
+4 −2 projects/SelfTest/UsageTests/Matchers.tests.cpp
+16 −0 projects/SelfTest/UsageTests/Message.tests.cpp
+25 −0 projects/SelfTest/UsageTests/Tricky.tests.cpp
+5 −2 scripts/approvalTests.py
+11 −9 scripts/releaseCommon.py
+403 −252 single_include/catch2/catch.hpp
+2 −0 src/catch_with_main.cpp