blob: 3153a0d891046421f53ea6543182c47ca750e07a [file] [log] [blame]
Linus Torvalds4d1012c2007-11-11 23:35:23 +00001#!/bin/sh
2#
3# Copyright (c) 2007 Johannes E. Schindelin
4#
5
6test_description='git rev-list involving submodules that this repo has'
7
Johannes Schindelin1550bb62020-11-18 23:44:36 +00008GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +00009export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
10
Linus Torvalds4d1012c2007-11-11 23:35:23 +000011. ./test-lib.sh
12
13test_expect_success 'setup' '
14 : > file &&
15 git add file &&
16 test_tick &&
17 git commit -m initial &&
18 echo 1 > file &&
19 test_tick &&
20 git commit -m second file &&
21 echo 2 > file &&
22 test_tick &&
23 git commit -m third file &&
24
25 rm .git/index &&
26
27 : > super-file &&
28 git add super-file &&
Mark Levedahlec05df32008-07-09 21:05:40 -040029 git submodule add "$(pwd)" sub &&
Linus Torvalds4d1012c2007-11-11 23:35:23 +000030 git symbolic-ref HEAD refs/heads/super &&
31 test_tick &&
32 git commit -m super-initial &&
33 echo 1 > super-file &&
34 test_tick &&
35 git commit -m super-first super-file &&
36 echo 2 > super-file &&
37 test_tick &&
38 git commit -m super-second super-file
39'
40
41test_expect_success "Ilari's test" '
Johannes Schindelin1550bb62020-11-18 23:44:36 +000042 git rev-list --objects super main ^super^
Linus Torvalds4d1012c2007-11-11 23:35:23 +000043'
44
45test_done