about summary refs log tree commit diff
path: root/third_party/git/t/t6008-rev-list-submodule.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t6008-rev-list-submodule.sh')
-rwxr-xr-xthird_party/git/t/t6008-rev-list-submodule.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/third_party/git/t/t6008-rev-list-submodule.sh b/third_party/git/t/t6008-rev-list-submodule.sh
deleted file mode 100755
index c4af9ca0a7..0000000000
--- a/third_party/git/t/t6008-rev-list-submodule.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2007 Johannes E. Schindelin
-#
-
-test_description='git rev-list involving submodules that this repo has'
-
-. ./test-lib.sh
-
-test_expect_success 'setup' '
-	: > file &&
-	git add file &&
-	test_tick &&
-	git commit -m initial &&
-	echo 1 > file &&
-	test_tick &&
-	git commit -m second file &&
-	echo 2 > file &&
-	test_tick &&
-	git commit -m third file &&
-
-	rm .git/index &&
-
-	: > super-file &&
-	git add super-file &&
-	git submodule add "$(pwd)" sub &&
-	git symbolic-ref HEAD refs/heads/super &&
-	test_tick &&
-	git commit -m super-initial &&
-	echo 1 > super-file &&
-	test_tick &&
-	git commit -m super-first super-file &&
-	echo 2 > super-file &&
-	test_tick &&
-	git commit -m super-second super-file
-'
-
-test_expect_success "Ilari's test" '
-	git rev-list --objects super master ^super^
-'
-
-test_done