Code

archive: implement configurable tar filters
[git.git] / t / t4038-diff-combined.sh
index 2cf7e01ac2c42216dc935d2d2d9dd23b7ae62c4f..40277c77aad5f2d9533e6822da3380bb49621e59 100755 (executable)
@@ -76,9 +76,17 @@ test_expect_success 'check combined output (1)' '
        verify_helper sidewithone
 '
 
-test_expect_failure 'check combined output (2)' '
+test_expect_success 'check combined output (2)' '
        git show sidesansone -- >sidesansone &&
        verify_helper sidesansone
 '
 
+test_expect_success 'diagnose truncated file' '
+       >file &&
+       git add file &&
+       git commit --amend -C HEAD &&
+       git show >out &&
+       grep "diff --cc file" out
+'
+
 test_done