Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

cmake: accommodate for UNIT_TEST_SOURCES#1947

Closed
dscho wants to merge 1 commit intogitgitgadget:mastergitgitgadget/git:masterfrom
dscho:reftable-vs-cmakedscho/git:reftable-vs-cmakeCopy head branch name to clipboard
Closed

cmake: accommodate for UNIT_TEST_SOURCES#1947
dscho wants to merge 1 commit intogitgitgadget:mastergitgitgadget/git:masterfrom
dscho:reftable-vs-cmakedscho/git:reftable-vs-cmakeCopy head branch name to clipboard

Conversation

@dscho
Copy link
Member

@dscho dscho commented Aug 3, 2025

This fix is needed to build Git using CMake in the wake of the recent migration of the reftable tests from being regression tests written in Unix shell script to being unit tests in pure C.

As part of 9bbc981 (t/unit-tests: finalize migration of
reftable-related tests, 2025-07-24), the explicit list of
`UNIT_TEST_PROGRAMS` was turned into a wildcard pattern-derived list.

Let's do the same in the CMake definition.

This fixes build errors with symptoms like this:

  CMake Error at CMakeLists.txt:132 (string):
    string sub-command REPLACE requires at least four arguments.
  Call Stack (most recent call first):
    CMakeLists.txt:1037 (parse_makefile_for_scripts)

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
@dscho dscho self-assigned this Aug 3, 2025
@dscho
Copy link
Member Author

dscho commented Aug 3, 2025

/submit

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 3, 2025

Submitted as pull.1947.git.1754256267117.gitgitgadget@gmail.com

To fetch this version into FETCH_HEAD:

git fetch https://github.com/gitgitgadget/git/ pr-1947/dscho/reftable-vs-cmake-v1

To fetch this version to local tag pr-1947/dscho/reftable-vs-cmake-v1:

git fetch --no-tags https://github.com/gitgitgadget/git/ tag pr-1947/dscho/reftable-vs-cmake-v1

@dscho
Copy link
Member Author

dscho commented Aug 16, 2025

/preview

@gitgitgadget

This comment was marked as outdated.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 16, 2025

On the Git mailing list, Johannes Schindelin wrote (reply to this):

Hi Junio,

this patch is still required; I sent this before -rc0 was released so that
it could be included in v2.51.0 final. Could you please still merge it?

Thanks,
Johannes

On Sun, 3 Aug 2025, Johannes Schindelin via GitGitGadget wrote:

> From: Johannes Schindelin <johannes.schindelin@gmx.de>
> 
> As part of 9bbc981c6f2 (t/unit-tests: finalize migration of
> reftable-related tests, 2025-07-24), the explicit list of
> `UNIT_TEST_PROGRAMS` was turned into a wildcard pattern-derived list.
> 
> Let's do the same in the CMake definition.
> 
> This fixes build errors with symptoms like this:
> 
>   CMake Error at CMakeLists.txt:132 (string):
>     string sub-command REPLACE requires at least four arguments.
>   Call Stack (most recent call first):
>     CMakeLists.txt:1037 (parse_makefile_for_scripts)
> 
> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
> ---
>     cmake: accommodate for UNIT_TEST_SOURCES
>     
>     This fix is needed to build Git using CMake in the wake of the recent
>     migration of the reftable tests from being regression tests written in
>     Unix shell script to being unit tests in pure C.
> 
> Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1947%2Fdscho%2Freftable-vs-cmake-v1
> Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1947/dscho/reftable-vs-cmake-v1
> Pull-Request: https://github.com/gitgitgadget/git/pull/1947
> 
>  contrib/buildsystems/CMakeLists.txt | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/contrib/buildsystems/CMakeLists.txt b/contrib/buildsystems/CMakeLists.txt
> index 25b495fa737..edb0fc04ad7 100644
> --- a/contrib/buildsystems/CMakeLists.txt
> +++ b/contrib/buildsystems/CMakeLists.txt
> @@ -1005,7 +1005,9 @@ parse_makefile_for_sources(clar-test_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "CLAR_
>  list(TRANSFORM clar-test_SOURCES REPLACE "\\$\\(UNIT_TEST_DIR\\)/" "${CMAKE_SOURCE_DIR}/t/unit-tests/")
>  add_library(clar-test-lib STATIC ${clar-test_SOURCES})
>  
> -parse_makefile_for_scripts(unit_test_PROGRAMS "UNIT_TEST_PROGRAMS" "")
> +file(GLOB unit_test_PROGRAMS "${CMAKE_SOURCE_DIR}/t/unit-tests/t-*.c")
> +list(TRANSFORM unit_test_PROGRAMS REPLACE "${CMAKE_SOURCE_DIR}/" "")
> +list(TRANSFORM unit_test_PROGRAMS REPLACE ".c" "")
>  foreach(unit_test ${unit_test_PROGRAMS})
>  	add_executable("${unit_test}" "${CMAKE_SOURCE_DIR}/t/unit-tests/${unit_test}.c")
>  	target_link_libraries("${unit_test}" unit-test-lib clar-test-lib common-main)
> 
> base-commit: 866e6a391f466baeeb98bc585845ea638322c04b
> -- 
> gitgitgadget
> 
> 

@gitgitgadget

This comment was marked as outdated.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 16, 2025

Preview email sent as pull.1947.v2.git.1755383210122.gitgitgadget@gmail.com

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 17, 2025

On the Git mailing list, Junio C Hamano wrote (reply to this):

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> Hi Junio,
>
> this patch is still required; I sent this before -rc0 was released so that
> it could be included in v2.51.0 final. Could you please still merge it?
>
> Thanks,
> Johannes

Thanks for pinging.  With so much traffic, a single patch without
any discussion thread went completely under the rader.

Will apply directly to 'master'.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 17, 2025

This patch series was integrated into seen via git@ba8bef4.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 17, 2025

This patch series was integrated into master via git@ba8bef4.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 17, 2025

This patch series was integrated into next via git@ba8bef4.

@gitgitgadget
Copy link

gitgitgadget bot commented Aug 17, 2025

Closed via ba8bef4.

@dscho dscho deleted the reftable-vs-cmake branch August 17, 2025 23:12
@gitgitgadget

This comment was marked as resolved.

webstech added a commit that referenced this pull request Nov 5, 2025
…lint-config-prettier-10.1.8

build(deps-dev): bump eslint-config-prettier from 10.1.5 to 10.1.8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Morty Proxy This is a proxified and sanitized view of the page, visit original site.