From bc47ff64bdac7f2f9297b1fa7ba474923dc7874a Mon Sep 17 00:00:00 2001 From: cliffg-softwarelibre Date: Thu, 3 Oct 2024 19:24:26 -0600 Subject: [PATCH 1/2] Showing GDG group --- test/shared_buffer_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/shared_buffer_test.cpp b/test/shared_buffer_test.cpp index 4776df7..8b01c62 100644 --- a/test/shared_buffer_test.cpp +++ b/test/shared_buffer_test.cpp @@ -260,6 +260,8 @@ TEST_CASE ( "Mutable shared buffer append", REQUIRE (sb == ta); } + + SECTION ( "Append mutable shared buffer" ) { sb.append(ta); REQUIRE (sb == ta); From 09906da10f1269aa7aab520db692f8f2172c0371 Mon Sep 17 00:00:00 2001 From: cliffg-softwarelibre Date: Wed, 8 Jan 2025 12:59:34 -0700 Subject: [PATCH 2/2] Updating to latest Catch2 and macos-15 on GH action runner --- .github/workflows/build_run_unit_test_cmake.yml | 2 +- test/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_run_unit_test_cmake.yml b/.github/workflows/build_run_unit_test_cmake.yml index 311762a..2186356 100644 --- a/.github/workflows/build_run_unit_test_cmake.yml +++ b/.github/workflows/build_run_unit_test_cmake.yml @@ -12,7 +12,7 @@ jobs: build_matrix: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-15] # os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} defaults: diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5a72e14..c6300bb 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -15,8 +15,8 @@ target_compile_features ( shared_buffer_test PRIVATE cxx_std_20 ) # add dependencies include ( ../cmake/download_cpm.cmake ) -CPMAddPackage ( "gh:catchorg/Catch2@3.7.0" ) -CPMAddPackage ( "gh:connectivecpp/utility-rack@1.0.3" ) +CPMAddPackage ( "gh:catchorg/Catch2@3.8.0" ) +CPMAddPackage ( "gh:connectivecpp/utility-rack@1.0.4" ) # link dependencies target_link_libraries ( shared_buffer_test PRIVATE shared_buffer utility_rack Catch2::Catch2WithMain )