2013-03-19 20:00:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
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-01 14:09:05 +00:00
|
|
|
test_expect_success 'test Git version matches Makefile' '
|
|
|
|
( cat ../../git/GIT-VERSION-FILE || echo "No GIT-VERSION-FILE" ) |
|
|
|
|
sed -e "s/GIT_VERSION[ ]*=[ ]*//" >git_version &&
|
|
|
|
test_cmp git_version makefile_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 ../.. &&
|
2013-03-19 20:00:29 +00: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 14:09:05 +00:00
|
|
|
) | sed -e "s/^v//" >sm_version &&
|
|
|
|
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
|