Skip to content

Commit 55121c8

Browse files
committed
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]>
1 parent 4d24a43 commit 55121c8

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/fuzz_corpora
33
/fuzz-pack-headers
44
/fuzz-pack-idx
5+
/GIT-BUILD-DIR
56
/GIT-BUILD-OPTIONS
67
/GIT-CFLAGS
78
/GIT-LDFLAGS

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3028,6 +3028,7 @@ else
30283028
@echo RUNTIME_PREFIX=\'false\' >>$@+
30293029
endif
30303030
@if cmp $@+ $@ >/dev/null 2>&1; then $(RM) $@+; else mv $@+ $@; fi
3031+
@if test GIT-BUILD-DIR; then rm GIT-BUILD-DIR; fi
30313032

30323033
### Detect Python interpreter path changes
30333034
ifndef NO_PYTHON

contrib/buildsystems/CMakeLists.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,14 +1067,9 @@ endif()
10671067
#Make the tests work when building out of the source tree
10681068
get_filename_component(CACHE_PATH ${CMAKE_CURRENT_LIST_DIR}/../../CMakeCache.txt ABSOLUTE)
10691069
if(NOT ${CMAKE_BINARY_DIR}/CMakeCache.txt STREQUAL ${CACHE_PATH})
1070-
file(RELATIVE_PATH BUILD_DIR_RELATIVE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR}/CMakeCache.txt)
1071-
string(REPLACE "/CMakeCache.txt" "" BUILD_DIR_RELATIVE ${BUILD_DIR_RELATIVE})
10721070
#Setting the build directory in test-lib.sh before running tests
10731071
file(WRITE ${CMAKE_BINARY_DIR}/CTestCustom.cmake
1074-
"file(STRINGS ${CMAKE_SOURCE_DIR}/t/test-lib.sh GIT_BUILD_DIR_REPL REGEX \"GIT_BUILD_DIR=(.*)\")\n"
1075-
"file(STRINGS ${CMAKE_SOURCE_DIR}/t/test-lib.sh content NEWLINE_CONSUME)\n"
1076-
"string(REPLACE \"\${GIT_BUILD_DIR_REPL}\" \"GIT_BUILD_DIR=\\\"$TEST_DIRECTORY/../${BUILD_DIR_RELATIVE}\\\"\" content \"\${content}\")\n"
1077-
"file(WRITE ${CMAKE_SOURCE_DIR}/t/test-lib.sh \${content})")
1072+
"file(WRITE ${CMAKE_SOURCE_DIR}/GIT-BUILD-DIR \"${CMAKE_BINARY_DIR}\")")
10781073
#misc copies
10791074
file(COPY ${CMAKE_SOURCE_DIR}/t/chainlint.sed DESTINATION ${CMAKE_BINARY_DIR}/t/)
10801075
file(COPY ${CMAKE_SOURCE_DIR}/po/is.po DESTINATION ${CMAKE_BINARY_DIR}/po/)

t/test-lib.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,16 @@ then
4242
TEST_OUTPUT_DIRECTORY=$TEST_DIRECTORY
4343
fi
4444
GIT_BUILD_DIR="${TEST_DIRECTORY%/t}"
45-
if test "$TEST_DIRECTORY" = "$GIT_BUILD_DIR"
45+
if test -f "$GIT_BUILD_DIR/GIT-BUILD-DIR"
46+
then
47+
GIT_BUILD_DIR="$(cat "$GIT_BUILD_DIR/GIT-BUILD-DIR")" || exit 1
48+
# On Windows, we must convert Windows paths lest they contain a colon
49+
case "$(uname -s)" in
50+
*MINGW*)
51+
GIT_BUILD_DIR="$(cygpath -au "$GIT_BUILD_DIR")"
52+
;;
53+
esac
54+
elif test "$TEST_DIRECTORY" = "$GIT_BUILD_DIR"
4655
then
4756
echo "PANIC: Running in a $TEST_DIRECTORY that doesn't end in '/t'?" >&2
4857
exit 1

0 commit comments

Comments
 (0)