]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6110-rev-list-sparse.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t6110-rev-list-sparse.sh
CommitLineData
6e7d0efa
JH
1#!/bin/sh
2
3test_description='operations that cull histories in unusual ways'
4. ./test-lib.sh
5
6e7d0efa
JH
6test_expect_success setup '
7 test_commit A &&
8 test_commit B &&
9 test_commit C &&
10 git checkout -b side HEAD^ &&
11 test_commit D &&
12 test_commit E &&
13 git merge master
14'
15
16test_expect_success 'rev-list --first-parent --boundary' '
17 git rev-list --first-parent --boundary HEAD^..
18'
19
20test_done