2013-03-19 21:00:29 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_description='Check Git version is correct'
|
|
|
|
CGIT_TEST_NO_CREATE_REPOS=YesPlease
|
2013-03-19 21:00:29 +01:00
|
|
|
. ./setup.sh
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'extract Git version from Makefile' '
|
2013-03-19 21:00:29 +01:00
|
|
|
sed -n -e "/^GIT_VER[ ]*=/ {
|
|
|
|
s/^GIT_VER[ ]*=[ ]*//
|
|
|
|
p
|
2013-04-01 16:09:05 +02:00
|
|
|
}" ../../Makefile >makefile_version
|
2013-03-19 21:00:29 +01:00
|
|
|
'
|
|
|
|
|
2013-04-27 11:48:56 +02: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 16:09:05 +02:00
|
|
|
test_expect_success 'test Git version matches Makefile' '
|
|
|
|
( cat ../../git/GIT-VERSION-FILE || echo "No GIT-VERSION-FILE" ) |
|
2013-04-14 20:15:43 +02:00
|
|
|
sed -e "s/GIT_VERSION[ ]*=[ ]*//" -e "s/\\.dirty$//" >git_version &&
|
2013-04-27 11:48:56 +02:00
|
|
|
sed -e "s/-/./g" makefile_version >makefile_git_version &&
|
|
|
|
test_cmp git_version makefile_git_version
|
2013-03-19 21:00:29 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'test submodule version matches Makefile' '
|
|
|
|
if ! test -e ../../git/.git
|
2013-03-19 21:00:29 +01:00
|
|
|
then
|
|
|
|
echo "git/ is not a Git repository" >&2
|
|
|
|
else
|
|
|
|
(
|
2013-04-01 16:09:05 +02:00
|
|
|
cd ../.. &&
|
2013-03-19 21:00:29 +01:00
|
|
|
sm_sha1=$(git ls-files --stage -- git |
|
|
|
|
sed -e "s/^[0-9]* \\([0-9a-f]*\\) [0-9] .*$/\\1/") &&
|
|
|
|
cd git &&
|
|
|
|
git describe --match "v[0-9]*" $sm_sha1
|
2013-04-01 16:09:05 +02:00
|
|
|
) | sed -e "s/^v//" >sm_version &&
|
|
|
|
test_cmp sm_version makefile_version
|
2013-03-19 21:00:29 +01:00
|
|
|
fi
|
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_done
|