2008-08-29 21:18:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='--reverse combines with --parents'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
|
|
|
|
commit () {
|
|
|
|
test_tick &&
|
|
|
|
echo $1 > foo &&
|
|
|
|
git add foo &&
|
|
|
|
git commit -m "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'set up --reverse example' '
|
|
|
|
commit one &&
|
|
|
|
git tag root &&
|
|
|
|
commit two &&
|
|
|
|
git checkout -b side HEAD^ &&
|
|
|
|
commit three &&
|
|
|
|
git checkout master &&
|
|
|
|
git merge -s ours side &&
|
|
|
|
commit five
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--reverse --parents --full-history combines correctly' '
|
|
|
|
git rev-list --parents --full-history master -- foo |
|
2013-10-29 02:23:03 +01:00
|
|
|
perl -e "print reverse <>" > expected &&
|
2008-08-29 21:18:38 +02:00
|
|
|
git rev-list --reverse --parents --full-history master -- foo \
|
|
|
|
> actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expected actual
|
2008-08-29 21:18:38 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--boundary does too' '
|
|
|
|
git rev-list --boundary --parents --full-history master ^root -- foo |
|
2013-10-29 02:23:03 +01:00
|
|
|
perl -e "print reverse <>" > expected &&
|
2008-08-29 21:18:38 +02:00
|
|
|
git rev-list --boundary --reverse --parents --full-history \
|
|
|
|
master ^root -- foo > actual &&
|
2017-10-06 21:00:06 +02:00
|
|
|
test_cmp expected actual
|
2008-08-29 21:18:38 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|