Commit 9ede925
File tree
3 files changed
+8
-1
lines changed- external
- src/realm/object-store
3 files changed
+8
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
- .clang-tidy-81
- .conan/test_package/CMakeLists.txt+10-5
- .conan/test_package/conanfile.py+6-19
- .github/workflows/linux-meson-builds.yml+1
- .github/workflows/linux-other-builds.yml+2-50
- .github/workflows/linux-simple-builds.yml+8-1
- .github/workflows/package-manager-builds.yaml-31
- .gitignore-1
- CMakeLists.txt+1-1
- appveyor.yml+2-13
- conanfile.py+24-51
- docs/cmake-integration.md+1-19
- docs/command-line.md+2-2
- docs/generators.md+6-20
- docs/limitations.md-16
- docs/release-notes.md+1-27
- docs/reporters.md+1-1
- docs/tutorial.md+1-1
- examples/210-Evt-EventListeners.cpp+2-1
- examples/231-Cfg-OutputStreams.cpp+1-1
- examples/232-Cfg-CustomMain.cpp+1-1
- examples/300-Gen-OwnGenerator.cpp+1-1
- examples/301-Gen-MapTypeConversion.cpp+8-9
- extras/catch_amalgamated.cpp+37-56
- extras/catch_amalgamated.hpp+59-173
- meson.build+1-1
- src/CMakeLists.txt+1-1
- src/catch2/benchmark/detail/catch_analyse.cpp+2-2
- src/catch2/catch_approx.cpp+1-1
- src/catch2/catch_message.cpp-1
- src/catch2/catch_registry_hub.cpp+1
- src/catch2/catch_test_case_info.cpp+1-3
- src/catch2/catch_test_case_info.hpp+1-1
- src/catch2/catch_tostring.cpp+5-5
- src/catch2/catch_tostring.hpp+2-2
- src/catch2/catch_version.cpp+1-1
- src/catch2/catch_version_macros.hpp+1-1
- src/catch2/internal/catch_commandline.cpp+1-1
- src/catch2/internal/catch_compiler_capabilities.hpp+4-4
- src/catch2/internal/catch_console_colour.cpp+6-6
- src/catch2/internal/catch_decomposer.cpp+1-6
- src/catch2/internal/catch_decomposer.hpp+29-141
- src/catch2/internal/catch_enum_values_registry.hpp+1-1
- src/catch2/internal/catch_jsonwriter.cpp+2-2
- src/catch2/internal/catch_jsonwriter.hpp+2-2
- src/catch2/internal/catch_random_integer_helpers.hpp+3-2
- src/catch2/internal/catch_reporter_spec_parser.cpp+1-1
- src/catch2/internal/catch_section.hpp+3-7
- src/catch2/internal/catch_string_manip.cpp+7-20
- src/catch2/internal/catch_stringref.hpp+2-2
- src/catch2/internal/catch_test_macro_impl.hpp+1-1
- src/catch2/internal/catch_test_registry.hpp+4-4
- src/catch2/reporters/catch_reporter_console.cpp+2-2
- src/catch2/reporters/catch_reporter_cumulative_base.cpp+2-1
- src/catch2/reporters/catch_reporter_json.cpp+2-2
- 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+1-1
- src/catch2/reporters/catch_reporter_teamcity.hpp+2-2
- tests/ExtraTests/X22-BenchmarksInCumulativeReporter.cpp+1-1
- tests/ExtraTests/X29-CustomArgumentsForReporters.cpp-1
- tests/ExtraTests/X91-AmalgamatedCatch.cpp+2-2
- tests/SelfTest/Baselines/compact.sw.approved.txt+21-21
- tests/SelfTest/Baselines/compact.sw.multi.approved.txt+21-21
- tests/SelfTest/Baselines/console.sw.approved.txt+54-70
- tests/SelfTest/Baselines/console.sw.multi.approved.txt+54-70
- tests/SelfTest/Baselines/junit.sw.approved.txt-2
- tests/SelfTest/Baselines/junit.sw.multi.approved.txt-2
- tests/SelfTest/Baselines/sonarqube.sw.approved.txt-2
- tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt-2
- tests/SelfTest/Baselines/tap.sw.approved.txt+25-25
- tests/SelfTest/Baselines/tap.sw.multi.approved.txt+25-25
- tests/SelfTest/Baselines/xml.sw.approved.txt+72-84
- tests/SelfTest/Baselines/xml.sw.multi.approved.txt+72-84
- tests/SelfTest/IntrospectiveTests/Details.tests.cpp+2-2
- tests/SelfTest/IntrospectiveTests/GeneratorsImpl.tests.cpp+1
- tests/SelfTest/IntrospectiveTests/RandomNumberGeneration.tests.cpp+1-16
- tests/SelfTest/IntrospectiveTests/Reporters.tests.cpp+1-1
- tests/SelfTest/IntrospectiveTests/StringManip.tests.cpp-11
- tests/SelfTest/IntrospectiveTests/TestSpec.tests.cpp+1-1
- tests/SelfTest/IntrospectiveTests/TextFlow.tests.cpp+1-1
- tests/SelfTest/UsageTests/Benchmark.tests.cpp+7-7
- tests/SelfTest/UsageTests/Class.tests.cpp+1-1
- tests/SelfTest/UsageTests/Compilation.tests.cpp+2-69
- tests/SelfTest/UsageTests/Exception.tests.cpp+2-2
- tests/SelfTest/UsageTests/Matchers.tests.cpp+7-7
- tests/SelfTest/UsageTests/Message.tests.cpp+5-5
- tests/SelfTest/UsageTests/Misc.tests.cpp+6-6
- tests/SelfTest/UsageTests/ToStringGeneral.tests.cpp+21-10
- tests/SelfTest/UsageTests/Tricky.tests.cpp+2-2
- tests/SelfTest/helpers/type_with_lit_0_comparisons.hpp+9-14
- tools/scripts/releaseCommon.py+1-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
385 | 387 | | |
386 | 388 | | |
387 | 389 | | |
| 390 | + | |
| 391 | + | |
| 392 | + | |
| 393 | + | |
388 | 394 | | |
389 | 395 | | |
390 | 396 | | |
| |||
0 commit comments