2013-03-19 20:00:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-01-13 20:04:46 +00:00
|
|
|
if [ "${CGIT_TEST_NO_GIT_VERSION}" = "YesPlease" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_description='Check Git version is correct'
|
|
|
|
CGIT_TEST_NO_CREATE_REPOS=YesPlease
|
2013-03-19 20:00:29 +00:00
|
|
|
. ./setup.sh
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'extract Git version from Makefile' '
|
2013-03-19 20:00:29 +00:00
|
|
|
sed -n -e "/^GIT_VER[ ]*=/ {
|
|
|
|
s/^GIT_VER[ ]*=[ ]*//
|
|
|
|
p
|
2013-04-01 14:09:05 +00:00
|
|
|
}" ../../Makefile >makefile_version
|
2013-03-19 20:00:29 +00:00
|
|
|
'
|
|
|
|
|
2013-04-27 09:48:56 +00:00
|
|
|
# Note that Git's GIT-VERSION-GEN script applies "s/-/./g" to the version
|
|
|
|
# string to produce the internal version in the GIT-VERSION-FILE, so we
|
|
|
|
# must apply the same transformation to the version in the Makefile before
|
|
|
|
# comparing them.
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'test Git version matches Makefile' '
|
|
|
|
( cat ../../git/GIT-VERSION-FILE || echo "No GIT-VERSION-FILE" ) |
|
2013-04-14 18:15:43 +00:00
|
|
|
sed -e "s/GIT_VERSION[ ]*=[ ]*//" -e "s/\\.dirty$//" >git_version &&
|
2013-04-27 09:48:56 +00:00
|
|
|
sed -e "s/-/./g" makefile_version >makefile_git_version &&
|
|
|
|
test_cmp git_version makefile_git_version
|
2013-03-19 20:00:29 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'test submodule version matches Makefile' '
|
|
|
|
if ! test -e ../../git/.git
|
2013-03-19 20:00:29 +00:00
|
|
|
then
|
|
|
|
echo "git/ is not a Git repository" >&2
|
|
|
|
else
|
|
|
|
(
|
2013-04-01 14:09:05 +00:00
|
|
|
cd ../.. &&
|
2020-10-20 21:32:45 +00:00
|
|
|
sm_oid=$(git ls-files --stage -- git |
|
2013-03-19 20:00:29 +00:00
|
|
|
sed -e "s/^[0-9]* \\([0-9a-f]*\\) [0-9] .*$/\\1/") &&
|
|
|
|
cd git &&
|
2020-10-20 21:32:45 +00:00
|
|
|
git describe --match "v[0-9]*" $sm_oid
|
2019-06-04 11:49:36 +00:00
|
|
|
) | sed -e "s/^v//" -e "s/-/./" >sm_version &&
|
2013-04-01 14:09:05 +00:00
|
|
|
test_cmp sm_version makefile_version
|
2013-03-19 20:00:29 +00:00
|
|
|
fi
|
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_done
|