aboutsummaryrefslogtreecommitdiff
path: root/tests/common/git/init
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-02-15 17:13:47 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-02-15 19:20:56 +0300
commit3540731c987437dec05976b690f9971a9ff4ac08 (patch)
treeb3cf2b8afb1e2e48b68c029bec087afed623e582 /tests/common/git/init
parent70bf3a57714b813ee226ed20ef749ac9a85ea853 (diff)
Shorten tag names for git repository tests (too long filenames on Windows)
Diffstat (limited to 'tests/common/git/init')
-rwxr-xr-xtests/common/git/init8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/common/git/init b/tests/common/git/init
index c999347..691799e 100755
--- a/tests/common/git/init
+++ b/tests/common/git/init
@@ -104,8 +104,8 @@ git -C libfoo.git commit -am 'Create'
# Add tags for libfoo.git.
#
-git -C libfoo.git tag 'lightweight_tag'
-git -C libfoo.git tag -a 'annotated_tag' -m 'annotated_tag'
+git -C libfoo.git tag 'ltag'
+git -C libfoo.git tag -a 'atag' -m 'Create annotated tag'
# Advance the master branch to make tags not to mark a branch tip.
#
@@ -163,8 +163,8 @@ git -C libfoo.git submodule add ../libbaz.git libbaz
git -C libfoo.git submodule update --init libbaz
git -C libfoo.git commit -am 'Add libbaz'
-git -C libfoo.git tag -f 'lightweight_tag'
-git -C libfoo.git tag -f -a 'annotated_tag' -m 'annotated_tag'
+git -C libfoo.git tag -f 'ltag'
+git -C libfoo.git tag -f -a 'atag' -m 'Move annotated tag'
touch libfoo.git/INSTALL
git -C libfoo.git add INSTALL