Skip to content

Commit d20a6f7

Browse files
dschoavar
authored andcommitted
cmake: avoid editing t/test-lib.sh
In 7f5397a (cmake: support for testing git when building out of the source tree, 2020-06-26), we implemented support for running Git's test scripts even after building Git in a different directory than the source directory. The way we did this was to edit the file `t/test-lib.sh` to override `GIT_BUILD_DIR` to point somewhere else than the parent of the `t/` directory. This is unideal because it always leaves a tracked file marked as modified, and it is all too easy to commit that change by mistake. Let's change the strategy by teaching `t/test-lib.sh` to detect the presence of a file called `GIT-BUILD-DIR` in the source directory. If it exists, the contents are interpreted as the location to the _actual_ build directory. We then write this file as part of the CTest definition. To support building Git via a regular `make` invocation after building it using CMake, we ensure that the `GIT-BUILD-DIR` file is deleted (for convenience, this is done as part of the Makefile rule that is already run with every `make` invocation to ensure that `GIT-BUILD-OPTIONS` is up to date). Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent bacabd6 commit d20a6f7

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/fuzz_corpora
2+
/GIT-BUILD-DIR
23
/GIT-BUILD-OPTIONS
34
/GIT-CFLAGS
45
/GIT-LDFLAGS

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3041,6 +3041,7 @@ else
30413041
@echo RUNTIME_PREFIX=\'false\' >>$@+
30423042
endif
30433043
@if cmp $@+ $@ >/dev/null 2>&1; then $(RM) $@+; else mv $@+ $@; fi
3044+
@if test -f GIT-BUILD-DIR; then rm GIT-BUILD-DIR; fi
30443045

30453046
### Detect Python interpreter path changes
30463047
ifndef NO_PYTHON

contrib/buildsystems/CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1074,14 +1074,9 @@ endif()
10741074
#Make the tests work when building out of the source tree
10751075
get_filename_component(CACHE_PATH ${CMAKE_CURRENT_LIST_DIR}/../../CMakeCache.txt ABSOLUTE)
10761076
if(NOT ${CMAKE_BINARY_DIR}/CMakeCache.txt STREQUAL ${CACHE_PATH})
1077-
file(RELATIVE_PATH BUILD_DIR_RELATIVE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR}/CMakeCache.txt)
1078-
string(REPLACE "/CMakeCache.txt" "" BUILD_DIR_RELATIVE ${BUILD_DIR_RELATIVE})
10791077
#Setting the build directory in test-lib.sh before running tests
10801078
file(WRITE ${CMAKE_BINARY_DIR}/CTestCustom.cmake
1081-
"file(STRINGS ${CMAKE_SOURCE_DIR}/t/test-lib.sh GIT_BUILD_DIR_REPL REGEX \"GIT_BUILD_DIR=(.*)\")\n"
1082-
"file(STRINGS ${CMAKE_SOURCE_DIR}/t/test-lib.sh content NEWLINE_CONSUME)\n"
1083-
"string(REPLACE \"\${GIT_BUILD_DIR_REPL}\" \"GIT_BUILD_DIR=\\\"$TEST_DIRECTORY/../${BUILD_DIR_RELATIVE}\\\"\" content \"\${content}\")\n"
1084-
"file(WRITE ${CMAKE_SOURCE_DIR}/t/test-lib.sh \${content})")
1079+
"file(WRITE ${CMAKE_SOURCE_DIR}/GIT-BUILD-DIR \"${CMAKE_BINARY_DIR}\")")
10851080
#misc copies
10861081
file(COPY ${CMAKE_SOURCE_DIR}/t/chainlint.pl DESTINATION ${CMAKE_BINARY_DIR}/t/)
10871082
file(COPY ${CMAKE_SOURCE_DIR}/po/is.po DESTINATION ${CMAKE_BINARY_DIR}/po/)

t/test-lib.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ then
4747
echo "PANIC: Running in a $TEST_DIRECTORY that doesn't end in '/t'?" >&2
4848
exit 1
4949
fi
50+
if test -f "$GIT_BUILD_DIR/GIT-BUILD-DIR"
51+
then
52+
GIT_BUILD_DIR="$(cat "$GIT_BUILD_DIR/GIT-BUILD-DIR")" || exit 1
53+
# On Windows, we must convert Windows paths lest they contain a colon
54+
case "$(uname -s)" in
55+
*MINGW*)
56+
GIT_BUILD_DIR="$(cygpath -au "$GIT_BUILD_DIR")"
57+
;;
58+
esac
59+
fi
5060

5161
# Prepend a string to a VAR using an arbitrary ":" delimiter, not
5262
# adding the delimiter if VAR or VALUE is empty. I.e. a generalized:

0 commit comments

Comments
 (0)