submodule: Fix t7400, t7405, t7406 for msysGit
[git/dscho.git] / t / t5704-bundle.sh
blob728ccd88c3d69f06bff2c3593ddc325f9186402c
1 #!/bin/sh
3 test_description='some bundle related tests'
4 . ./test-lib.sh
6 test_expect_success 'setup' '
8 : > file &&
9 git add file &&
10 test_tick &&
11 git commit -m initial &&
12 test_tick &&
13 git tag -m tag tag &&
14 : > file2 &&
15 git add file2 &&
16 : > file3 &&
17 test_tick &&
18 git commit -m second &&
19 git add file3 &&
20 test_tick &&
21 git commit -m third
25 test_expect_success 'tags can be excluded by rev-list options' '
27 git bundle create bundle --all --since=7.Apr.2005.15:16:00.-0700 &&
28 git ls-remote bundle > output &&
29 ! grep tag output
33 test_expect_success 'die if bundle file cannot be created' '
35 mkdir adir &&
36 test_must_fail git bundle create adir --all
40 test_expect_failure 'bundle --stdin' '
42 echo master | git bundle create stdin-bundle.bdl --stdin &&
43 git ls-remote stdin-bundle.bdl >output &&
44 grep master output
48 test_expect_failure 'bundle --stdin <rev-list options>' '
50 echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
51 git ls-remote hybrid-bundle.bdl >output &&
52 grep master output
56 test_done