rebase: use correct base for --keep-base when a branch is given
[alt-git.git] / t / t6017-rev-list-stdin.sh
blob05162512a09d422a9592a112a1d613d34be4f5ed
1 #!/bin/sh
3 # Copyright (c) 2009, Junio C Hamano
6 test_description='log family learns --stdin'
8 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
9 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
11 . ./test-lib.sh
13 check () {
14 for cmd in rev-list "log --stat"
16 for i in "$@"
18 printf "%s\n" $i
19 done >input &&
20 test_expect_success "check $cmd $*" '
21 git $cmd $(cat input) >expect &&
22 git $cmd --stdin <input >actual &&
23 sed -e "s/^/input /" input &&
24 sed -e "s/^/output /" expect &&
25 test_cmp expect actual
27 done
30 them='1 2 3 4 5 6 7'
32 test_expect_success setup '
34 for i in 0 $them
36 for j in $them
38 echo $i.$j >file-$j &&
39 git add file-$j || exit
40 done &&
41 test_tick &&
42 git commit -m $i || exit
43 done &&
44 for i in $them
46 git checkout -b side-$i main~$i &&
47 echo updated $i >file-$i &&
48 git add file-$i &&
49 test_tick &&
50 git commit -m side-$i || exit
51 done
55 check main
56 check side-1 ^side-4
57 check side-1 ^side-7 --
58 check side-1 ^side-7 -- file-1
59 check side-1 ^side-7 -- file-2
60 check side-3 ^side-4 -- file-3
61 check side-3 ^side-2
62 check side-3 ^side-2 -- file-1
64 test_expect_success 'not only --stdin' '
65 cat >expect <<-EOF &&
68 file-1
69 file-2
70 EOF
71 cat >input <<-EOF &&
72 ^main^
74 file-2
75 EOF
76 git log --pretty=tformat:%s --name-only --stdin main -- file-1 \
77 <input >actual &&
78 test_cmp expect actual
81 test_done