summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1f2362a)
raw | patch | inline | side by side (parent: 1f2362a)
author | Markus Heidelberg <markus.heidelberg@web.de> | |
Fri, 2 Apr 2010 12:27:20 +0000 (14:27 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 3 Apr 2010 04:25:47 +0000 (21:25 -0700) |
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7508-status.sh | patch | blob | history |
diff --git a/t/t7508-status.sh b/t/t7508-status.sh
index 556d0faa77e027c8a18e213088fa6bbc5d7e7af5..086ec3a7240db0092d160c6c7c380d85f6076fa9 100755 (executable)
--- a/t/t7508-status.sh
+++ b/t/t7508-status.sh
test_cmp expect output
'
+cat >expect <<EOF
+:100644 100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 0000000000000000000000000000000000000000 M dir1/modified
+EOF
+test_expect_failure 'status refreshes the index' '
+ touch dir2/added &&
+ git status &&
+ git diff-files >output &&
+ test_cmp expect output
+'
+
test_expect_success 'setup status submodule summary' '
test_create_repo sm && (
cd sm &&