]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7403-submodule-sync.sh
perl: bump the required Perl version to 5.8 from 5.6.[21]
[thirdparty/git.git] / t / t7403-submodule-sync.sh
CommitLineData
52e8370b
DA
1#!/bin/sh
2#
3# Copyright (c) 2008 David Aguilar
4#
5
6test_description='git submodule sync
7
8These tests exercise the "git submodule sync" subcommand.
9'
10
11. ./test-lib.sh
12
13test_expect_success setup '
14 echo file > file &&
15 git add file &&
16 test_tick &&
0eb032d8 17 git commit -m upstream &&
52e8370b
DA
18 git clone . super &&
19 git clone super submodule &&
20 (cd super &&
21 git submodule add ../submodule submodule &&
22 test_tick &&
23 git commit -m "submodule"
24 ) &&
25 git clone super super-clone &&
26 (cd super-clone && git submodule update --init)
27'
28
29test_expect_success 'change submodule' '
30 (cd submodule &&
31 echo second line >> file &&
32 test_tick &&
33 git commit -a -m "change submodule"
34 )
35'
36
37test_expect_success 'change submodule url' '
38 (cd super &&
39 cd submodule &&
40 git checkout master &&
41 git pull
42 ) &&
43 mv submodule moved-submodule &&
44 (cd super &&
0eb032d8 45 git config -f .gitmodules submodule.submodule.url ../moved-submodule &&
52e8370b
DA
46 test_tick &&
47 git commit -a -m moved-submodule
48 )
49'
50
51test_expect_success '"git submodule sync" should update submodule URLs' '
52 (cd super-clone &&
53 git pull &&
54 git submodule sync
55 ) &&
56 test -d "$(git config -f super-clone/submodule/.git/config \
57 remote.origin.url)" &&
58 (cd super-clone/submodule &&
59 git checkout master &&
60 git pull
0b9dca43
DA
61 ) &&
62 (cd super-clone &&
63 test -d "$(git config submodule.submodule.url)"
52e8370b
DA
64 )
65'
66
67test_done