Skip to content

Commit 786bd1e

Browse files
committed
⬆️ Update various dependencies
- Catch2: 3.6.0 -> 3.7.1 - CPM: 0.38.2 -> 0.40.2 - fuzztest: a4f6ad5 -> 7b10721 - GoogleTest: 1.14.0 -> 1.15.2 - rapidcheck: 1c91f40 -> ff6af6f - Snitch: 1.2.5 -> 1.3.1
1 parent b244559 commit 786bd1e

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ Where `abc123` is the version of this repository you want to depend on.
3131
This repository depends on:
3232

3333
- [Boost-ext.DI](https://github.com/boost-ext/di) at version 1.3.0
34-
- [Catch2](https://github.com/catchorg/Catch2) at version 3.6.0
35-
- [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) at version 0.38.2
36-
- [GoogleTest](https://github.com/google/googletest) at version 1.14.0
34+
- [Catch2](https://github.com/catchorg/Catch2) at version 3.7.1
35+
- [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) at version 0.40.2
36+
- [fuzztest](https://github.com/google/fuzztest) at git hash 7b10721
37+
- [GoogleTest](https://github.com/google/googletest) at version 1.15.2
3738
- [GUnit](https://github.com/cpp-testing/GUnit) at version 1.14.0
38-
- [RapidCheck](https://github.com/emil-e/rapidcheck) at git hash 1c91f40
39-
- [Snitch](https://github.com/snitch-org/snitch) at version 1.2.5
39+
- [metabench](https://github.com/ldionne/metabench) at git hash 3322ce7
40+
- [RapidCheck](https://github.com/emil-e/rapidcheck) at git hash ff6af6f
41+
- [Snitch](https://github.com/snitch-org/snitch) at version 1.3.1
4042

cmake/test.cmake

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ target_compile_options(sanitizer-exceptions INTERFACE -fno-sanitize=vptr)
2525

2626
macro(get_catch2)
2727
if(NOT TARGET Catch2::Catch2WithMain)
28-
add_versioned_package("gh:catchorg/Catch2@3.6.0")
28+
add_versioned_package("gh:catchorg/Catch2@3.7.1")
2929
list(APPEND CMAKE_MODULE_PATH ${Catch2_SOURCE_DIR}/extras)
3030
include(Catch)
3131
endif()
3232
endmacro()
3333

3434
macro(get_gtest)
3535
if(NOT TARGET gtest)
36-
add_versioned_package("gh:google/googletest@1.14.0")
36+
add_versioned_package("gh:google/googletest@1.15.2")
3737
include(GoogleTest)
3838
endif()
3939
endmacro()
@@ -45,7 +45,7 @@ macro(get_gunit)
4545
NAME
4646
gunit
4747
GIT_TAG
48-
v1.14.0
48+
467b07d
4949
GITHUB_REPOSITORY
5050
cpp-testing/GUnit
5151
DOWNLOAD_ONLY
@@ -55,7 +55,7 @@ endmacro()
5555

5656
macro(get_snitch)
5757
if(NOT TARGET snitch::snitch)
58-
add_versioned_package("gh:snitch-org/snitch@1.2.5")
58+
add_versioned_package("gh:snitch-org/snitch@1.3.1")
5959
endif()
6060
endmacro()
6161

@@ -65,7 +65,7 @@ macro(get_fuzztest)
6565
NAME
6666
fuzztest
6767
GIT_TAG
68-
a4f6ad5
68+
7b10721
6969
GITHUB_REPOSITORY
7070
google/fuzztest
7171
OPTIONS
@@ -90,7 +90,7 @@ endmacro()
9090

9191
macro(add_rapidcheck)
9292
if(NOT TARGET rapidcheck)
93-
add_versioned_package(NAME rapidcheck GIT_TAG 1c91f40 GITHUB_REPOSITORY
93+
add_versioned_package(NAME rapidcheck GIT_TAG ff6af6f GITHUB_REPOSITORY
9494
emil-e/rapidcheck)
9595
add_subdirectory(
9696
${rapidcheck_SOURCE_DIR}/extras/catch
@@ -402,7 +402,8 @@ function(add_fuzz_test_target name)
402402
rapidcheck
403403
rapidcheck_gtest
404404
rapidcheck_gmock
405-
fuzztest::fuzztest_gtest_main)
405+
fuzztest::fuzztest_gtest_main
406+
re2::re2)
406407
if(FUZZ_NORANDOM)
407408
message(
408409
WARNING

0 commit comments

Comments
 (0)